@foxglove/schemas 1.7.2 → 1.8.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/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 +2 -2
- package/dist/internal/generatePyclass.d.ts.map +1 -1
- package/dist/internal/generatePyclass.js +114 -57
- package/dist/internal/generatePyclass.js.map +1 -1
- package/dist/internal/generatePyclass.test.js +13 -8
- 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.map +1 -1
- package/dist/internal/generateSdkCpp.js +26 -22
- package/dist/internal/generateSdkCpp.js.map +1 -1
- package/dist/internal/generateSdkRustCTypes.d.ts +5 -0
- package/dist/internal/generateSdkRustCTypes.d.ts.map +1 -1
- package/dist/internal/generateSdkRustCTypes.js +83 -21
- package/dist/internal/generateSdkRustCTypes.js.map +1 -1
- 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 +4 -0
- package/dist/internal/schemas.d.ts.map +1 -1
- package/dist/internal/schemas.js +209 -26
- 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 +323 -0
- package/dist/jsonschema/index.d.ts.map +1 -1
- package/dist/jsonschema/index.js +373 -8
- 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 +6 -1
- package/dist/types/Grid.d.ts.map +1 -1
- package/dist/types/LocationFix.d.ts +3 -0
- package/dist/types/LocationFix.d.ts.map +1 -1
- package/dist/types/LocationFixes.d.ts +7 -0
- package/dist/types/LocationFixes.d.ts.map +1 -0
- package/dist/types/LocationFixes.js +5 -0
- package/dist/types/LocationFixes.js.map +1 -0
- package/dist/types/RawImage.d.ts +58 -8
- package/dist/types/RawImage.d.ts.map +1 -1
- package/dist/types/VoxelGrid.d.ts +36 -0
- package/dist/types/VoxelGrid.d.ts.map +1 -0
- package/dist/types/VoxelGrid.js +5 -0
- package/dist/types/VoxelGrid.js.map +1 -0
- package/dist/types/index.d.ts +4 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +4 -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":"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"}
|
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;
|
|
@@ -879,6 +896,161 @@ export declare const Grid: {
|
|
|
879
896
|
};
|
|
880
897
|
};
|
|
881
898
|
};
|
|
899
|
+
export declare const VoxelGrid: {
|
|
900
|
+
title: string;
|
|
901
|
+
description: string;
|
|
902
|
+
$comment: string;
|
|
903
|
+
type: string;
|
|
904
|
+
properties: {
|
|
905
|
+
timestamp: {
|
|
906
|
+
type: string;
|
|
907
|
+
title: string;
|
|
908
|
+
properties: {
|
|
909
|
+
sec: {
|
|
910
|
+
type: string;
|
|
911
|
+
minimum: number;
|
|
912
|
+
};
|
|
913
|
+
nsec: {
|
|
914
|
+
type: string;
|
|
915
|
+
minimum: number;
|
|
916
|
+
maximum: number;
|
|
917
|
+
};
|
|
918
|
+
};
|
|
919
|
+
description: string;
|
|
920
|
+
};
|
|
921
|
+
frame_id: {
|
|
922
|
+
type: string;
|
|
923
|
+
description: string;
|
|
924
|
+
};
|
|
925
|
+
pose: {
|
|
926
|
+
title: string;
|
|
927
|
+
description: string;
|
|
928
|
+
type: string;
|
|
929
|
+
properties: {
|
|
930
|
+
position: {
|
|
931
|
+
title: string;
|
|
932
|
+
description: string;
|
|
933
|
+
type: string;
|
|
934
|
+
properties: {
|
|
935
|
+
x: {
|
|
936
|
+
type: string;
|
|
937
|
+
description: string;
|
|
938
|
+
};
|
|
939
|
+
y: {
|
|
940
|
+
type: string;
|
|
941
|
+
description: string;
|
|
942
|
+
};
|
|
943
|
+
z: {
|
|
944
|
+
type: string;
|
|
945
|
+
description: string;
|
|
946
|
+
};
|
|
947
|
+
};
|
|
948
|
+
};
|
|
949
|
+
orientation: {
|
|
950
|
+
title: string;
|
|
951
|
+
description: string;
|
|
952
|
+
type: string;
|
|
953
|
+
properties: {
|
|
954
|
+
x: {
|
|
955
|
+
type: string;
|
|
956
|
+
description: string;
|
|
957
|
+
};
|
|
958
|
+
y: {
|
|
959
|
+
type: string;
|
|
960
|
+
description: string;
|
|
961
|
+
};
|
|
962
|
+
z: {
|
|
963
|
+
type: string;
|
|
964
|
+
description: string;
|
|
965
|
+
};
|
|
966
|
+
w: {
|
|
967
|
+
type: string;
|
|
968
|
+
description: string;
|
|
969
|
+
};
|
|
970
|
+
};
|
|
971
|
+
};
|
|
972
|
+
};
|
|
973
|
+
};
|
|
974
|
+
row_count: {
|
|
975
|
+
type: string;
|
|
976
|
+
minimum: number;
|
|
977
|
+
description: string;
|
|
978
|
+
};
|
|
979
|
+
column_count: {
|
|
980
|
+
type: string;
|
|
981
|
+
minimum: number;
|
|
982
|
+
description: string;
|
|
983
|
+
};
|
|
984
|
+
cell_size: {
|
|
985
|
+
title: string;
|
|
986
|
+
description: string;
|
|
987
|
+
type: string;
|
|
988
|
+
properties: {
|
|
989
|
+
x: {
|
|
990
|
+
type: string;
|
|
991
|
+
description: string;
|
|
992
|
+
};
|
|
993
|
+
y: {
|
|
994
|
+
type: string;
|
|
995
|
+
description: string;
|
|
996
|
+
};
|
|
997
|
+
z: {
|
|
998
|
+
type: string;
|
|
999
|
+
description: string;
|
|
1000
|
+
};
|
|
1001
|
+
};
|
|
1002
|
+
};
|
|
1003
|
+
slice_stride: {
|
|
1004
|
+
type: string;
|
|
1005
|
+
minimum: number;
|
|
1006
|
+
description: string;
|
|
1007
|
+
};
|
|
1008
|
+
row_stride: {
|
|
1009
|
+
type: string;
|
|
1010
|
+
minimum: number;
|
|
1011
|
+
description: string;
|
|
1012
|
+
};
|
|
1013
|
+
cell_stride: {
|
|
1014
|
+
type: string;
|
|
1015
|
+
minimum: number;
|
|
1016
|
+
description: string;
|
|
1017
|
+
};
|
|
1018
|
+
fields: {
|
|
1019
|
+
type: string;
|
|
1020
|
+
items: {
|
|
1021
|
+
title: string;
|
|
1022
|
+
description: string;
|
|
1023
|
+
type: string;
|
|
1024
|
+
properties: {
|
|
1025
|
+
name: {
|
|
1026
|
+
type: string;
|
|
1027
|
+
description: string;
|
|
1028
|
+
};
|
|
1029
|
+
offset: {
|
|
1030
|
+
type: string;
|
|
1031
|
+
minimum: number;
|
|
1032
|
+
description: string;
|
|
1033
|
+
};
|
|
1034
|
+
type: {
|
|
1035
|
+
title: string;
|
|
1036
|
+
description: string;
|
|
1037
|
+
oneOf: {
|
|
1038
|
+
title: string;
|
|
1039
|
+
const: number;
|
|
1040
|
+
description: string;
|
|
1041
|
+
}[];
|
|
1042
|
+
};
|
|
1043
|
+
};
|
|
1044
|
+
};
|
|
1045
|
+
description: string;
|
|
1046
|
+
};
|
|
1047
|
+
data: {
|
|
1048
|
+
type: string;
|
|
1049
|
+
contentEncoding: string;
|
|
1050
|
+
description: string;
|
|
1051
|
+
};
|
|
1052
|
+
};
|
|
1053
|
+
};
|
|
882
1054
|
export declare const ImageAnnotations: {
|
|
883
1055
|
title: string;
|
|
884
1056
|
description: string;
|
|
@@ -1537,6 +1709,121 @@ export declare const LocationFix: {
|
|
|
1537
1709
|
description: string;
|
|
1538
1710
|
}[];
|
|
1539
1711
|
};
|
|
1712
|
+
color: {
|
|
1713
|
+
title: string;
|
|
1714
|
+
description: string;
|
|
1715
|
+
type: string;
|
|
1716
|
+
properties: {
|
|
1717
|
+
r: {
|
|
1718
|
+
type: string;
|
|
1719
|
+
description: string;
|
|
1720
|
+
};
|
|
1721
|
+
g: {
|
|
1722
|
+
type: string;
|
|
1723
|
+
description: string;
|
|
1724
|
+
};
|
|
1725
|
+
b: {
|
|
1726
|
+
type: string;
|
|
1727
|
+
description: string;
|
|
1728
|
+
};
|
|
1729
|
+
a: {
|
|
1730
|
+
type: string;
|
|
1731
|
+
description: string;
|
|
1732
|
+
};
|
|
1733
|
+
};
|
|
1734
|
+
};
|
|
1735
|
+
};
|
|
1736
|
+
};
|
|
1737
|
+
export declare const LocationFixes: {
|
|
1738
|
+
title: string;
|
|
1739
|
+
description: string;
|
|
1740
|
+
$comment: string;
|
|
1741
|
+
type: string;
|
|
1742
|
+
properties: {
|
|
1743
|
+
fixes: {
|
|
1744
|
+
type: string;
|
|
1745
|
+
items: {
|
|
1746
|
+
title: string;
|
|
1747
|
+
description: string;
|
|
1748
|
+
type: string;
|
|
1749
|
+
properties: {
|
|
1750
|
+
timestamp: {
|
|
1751
|
+
type: string;
|
|
1752
|
+
title: string;
|
|
1753
|
+
properties: {
|
|
1754
|
+
sec: {
|
|
1755
|
+
type: string;
|
|
1756
|
+
minimum: number;
|
|
1757
|
+
};
|
|
1758
|
+
nsec: {
|
|
1759
|
+
type: string;
|
|
1760
|
+
minimum: number;
|
|
1761
|
+
maximum: number;
|
|
1762
|
+
};
|
|
1763
|
+
};
|
|
1764
|
+
description: string;
|
|
1765
|
+
};
|
|
1766
|
+
frame_id: {
|
|
1767
|
+
type: string;
|
|
1768
|
+
description: string;
|
|
1769
|
+
};
|
|
1770
|
+
latitude: {
|
|
1771
|
+
type: string;
|
|
1772
|
+
description: string;
|
|
1773
|
+
};
|
|
1774
|
+
longitude: {
|
|
1775
|
+
type: string;
|
|
1776
|
+
description: string;
|
|
1777
|
+
};
|
|
1778
|
+
altitude: {
|
|
1779
|
+
type: string;
|
|
1780
|
+
description: string;
|
|
1781
|
+
};
|
|
1782
|
+
position_covariance: {
|
|
1783
|
+
type: string;
|
|
1784
|
+
items: {
|
|
1785
|
+
type: string;
|
|
1786
|
+
};
|
|
1787
|
+
minItems: number;
|
|
1788
|
+
maxItems: number;
|
|
1789
|
+
description: string;
|
|
1790
|
+
};
|
|
1791
|
+
position_covariance_type: {
|
|
1792
|
+
title: string;
|
|
1793
|
+
description: string;
|
|
1794
|
+
oneOf: {
|
|
1795
|
+
title: string;
|
|
1796
|
+
const: number;
|
|
1797
|
+
description: string;
|
|
1798
|
+
}[];
|
|
1799
|
+
};
|
|
1800
|
+
color: {
|
|
1801
|
+
title: string;
|
|
1802
|
+
description: string;
|
|
1803
|
+
type: string;
|
|
1804
|
+
properties: {
|
|
1805
|
+
r: {
|
|
1806
|
+
type: string;
|
|
1807
|
+
description: string;
|
|
1808
|
+
};
|
|
1809
|
+
g: {
|
|
1810
|
+
type: string;
|
|
1811
|
+
description: string;
|
|
1812
|
+
};
|
|
1813
|
+
b: {
|
|
1814
|
+
type: string;
|
|
1815
|
+
description: string;
|
|
1816
|
+
};
|
|
1817
|
+
a: {
|
|
1818
|
+
type: string;
|
|
1819
|
+
description: string;
|
|
1820
|
+
};
|
|
1821
|
+
};
|
|
1822
|
+
};
|
|
1823
|
+
};
|
|
1824
|
+
};
|
|
1825
|
+
description: string;
|
|
1826
|
+
};
|
|
1540
1827
|
};
|
|
1541
1828
|
};
|
|
1542
1829
|
export declare const Log: {
|
|
@@ -4715,6 +5002,24 @@ export declare const TextPrimitive: {
|
|
|
4715
5002
|
};
|
|
4716
5003
|
};
|
|
4717
5004
|
};
|
|
5005
|
+
export declare const Timestamp: {
|
|
5006
|
+
title: string;
|
|
5007
|
+
description: string;
|
|
5008
|
+
$comment: string;
|
|
5009
|
+
type: string;
|
|
5010
|
+
properties: {
|
|
5011
|
+
sec: {
|
|
5012
|
+
type: string;
|
|
5013
|
+
minimum: number;
|
|
5014
|
+
description: string;
|
|
5015
|
+
};
|
|
5016
|
+
nsec: {
|
|
5017
|
+
type: string;
|
|
5018
|
+
minimum: number;
|
|
5019
|
+
description: string;
|
|
5020
|
+
};
|
|
5021
|
+
};
|
|
5022
|
+
};
|
|
4718
5023
|
export declare const TriangleListPrimitive: {
|
|
4719
5024
|
title: string;
|
|
4720
5025
|
description: string;
|
|
@@ -4889,4 +5194,22 @@ export declare const Vector3: {
|
|
|
4889
5194
|
};
|
|
4890
5195
|
};
|
|
4891
5196
|
};
|
|
5197
|
+
export declare const Time: {
|
|
5198
|
+
title: string;
|
|
5199
|
+
description: string;
|
|
5200
|
+
$comment: string;
|
|
5201
|
+
type: string;
|
|
5202
|
+
properties: {
|
|
5203
|
+
sec: {
|
|
5204
|
+
type: string;
|
|
5205
|
+
minimum: number;
|
|
5206
|
+
description: string;
|
|
5207
|
+
};
|
|
5208
|
+
nsec: {
|
|
5209
|
+
type: string;
|
|
5210
|
+
minimum: number;
|
|
5211
|
+
description: string;
|
|
5212
|
+
};
|
|
5213
|
+
};
|
|
5214
|
+
};
|
|
4892
5215
|
//# 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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsLhB,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiW5B,CAAC;AAEF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;CAexB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkGrB,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsKzB,CAAC;AAEF,eAAO,MAAM,WAAW
|
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6iCvB,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmH1B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;CAmE9B,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;CAelB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;CAmBlB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6JtB,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsJ5B,CAAC;AAEF,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiDhB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4EvB,CAAC;AAEF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgFxB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;CAuBtB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0CpB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmDpB,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkG3B,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4F1B,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+FzB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;CAiBrB,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyIjC,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;CAenB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;CAmBnB,CAAC;AAEF,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;CAAY,CAAC"}
|