@foxglove/schemas 1.7.3 → 1.9.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/generateJsonSchema.d.ts.map +1 -1
- package/dist/internal/generateJsonSchema.js +1 -0
- package/dist/internal/generateJsonSchema.js.map +1 -1
- package/dist/internal/generateJsonSchema.test.js +325 -292
- package/dist/internal/generateJsonSchema.test.js.map +1 -1
- package/dist/internal/generatePyclass.d.ts.map +1 -1
- package/dist/internal/generatePyclass.js +68 -28
- package/dist/internal/generatePyclass.js.map +1 -1
- package/dist/internal/generatePyclass.test.js +38 -31
- package/dist/internal/generatePyclass.test.js.map +1 -1
- package/dist/internal/generateSdkCpp.d.ts.map +1 -1
- package/dist/internal/generateSdkCpp.js +98 -7
- package/dist/internal/generateSdkCpp.js.map +1 -1
- package/dist/internal/generateSdkRustCTypes.d.ts.map +1 -1
- package/dist/internal/generateSdkRustCTypes.js +77 -3
- package/dist/internal/generateSdkRustCTypes.js.map +1 -1
- package/dist/internal/schemas.d.ts +3 -0
- package/dist/internal/schemas.d.ts.map +1 -1
- package/dist/internal/schemas.js +124 -11
- package/dist/internal/schemas.js.map +1 -1
- package/dist/internal/types.d.ts +0 -1
- package/dist/internal/types.d.ts.map +1 -1
- package/dist/jsonschema/index.d.ts +559 -0
- package/dist/jsonschema/index.d.ts.map +1 -1
- package/dist/jsonschema/index.js +2012 -251
- package/dist/jsonschema/index.js.map +1 -1
- package/dist/types/CameraCalibration.d.ts +2 -2
- package/dist/types/Grid.d.ts +47 -2
- package/dist/types/Grid.d.ts.map +1 -1
- package/dist/types/LinePrimitive.d.ts +2 -2
- package/dist/types/LinePrimitive.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/ModelPrimitive.d.ts +2 -2
- package/dist/types/ModelPrimitive.d.ts.map +1 -1
- package/dist/types/Point3InFrame.d.ts +12 -0
- package/dist/types/Point3InFrame.d.ts.map +1 -0
- package/dist/types/Point3InFrame.js +5 -0
- package/dist/types/Point3InFrame.js.map +1 -0
- package/dist/types/RawImage.d.ts +2 -2
- package/dist/types/TriangleListPrimitive.d.ts +2 -2
- package/dist/types/TriangleListPrimitive.d.ts.map +1 -1
- package/dist/types/VoxelGrid.d.ts +37 -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 +3 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/index.js +3 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +4 -3
|
@@ -27,6 +27,7 @@ export declare const ArrowPrimitive: {
|
|
|
27
27
|
description: string;
|
|
28
28
|
};
|
|
29
29
|
};
|
|
30
|
+
required: string[];
|
|
30
31
|
};
|
|
31
32
|
orientation: {
|
|
32
33
|
title: string;
|
|
@@ -50,8 +51,10 @@ export declare const ArrowPrimitive: {
|
|
|
50
51
|
description: string;
|
|
51
52
|
};
|
|
52
53
|
};
|
|
54
|
+
required: string[];
|
|
53
55
|
};
|
|
54
56
|
};
|
|
57
|
+
required: string[];
|
|
55
58
|
};
|
|
56
59
|
shaft_length: {
|
|
57
60
|
type: string;
|
|
@@ -91,8 +94,10 @@ export declare const ArrowPrimitive: {
|
|
|
91
94
|
description: string;
|
|
92
95
|
};
|
|
93
96
|
};
|
|
97
|
+
required: string[];
|
|
94
98
|
};
|
|
95
99
|
};
|
|
100
|
+
required: string[];
|
|
96
101
|
};
|
|
97
102
|
export declare const CameraCalibration: {
|
|
98
103
|
title: string;
|
|
@@ -169,6 +174,7 @@ export declare const CameraCalibration: {
|
|
|
169
174
|
description: string;
|
|
170
175
|
};
|
|
171
176
|
};
|
|
177
|
+
required: string[];
|
|
172
178
|
};
|
|
173
179
|
export declare const CircleAnnotation: {
|
|
174
180
|
title: string;
|
|
@@ -206,6 +212,7 @@ export declare const CircleAnnotation: {
|
|
|
206
212
|
description: string;
|
|
207
213
|
};
|
|
208
214
|
};
|
|
215
|
+
required: string[];
|
|
209
216
|
};
|
|
210
217
|
diameter: {
|
|
211
218
|
type: string;
|
|
@@ -237,6 +244,7 @@ export declare const CircleAnnotation: {
|
|
|
237
244
|
description: string;
|
|
238
245
|
};
|
|
239
246
|
};
|
|
247
|
+
required: string[];
|
|
240
248
|
};
|
|
241
249
|
outline_color: {
|
|
242
250
|
title: string;
|
|
@@ -260,8 +268,10 @@ export declare const CircleAnnotation: {
|
|
|
260
268
|
description: string;
|
|
261
269
|
};
|
|
262
270
|
};
|
|
271
|
+
required: string[];
|
|
263
272
|
};
|
|
264
273
|
};
|
|
274
|
+
required: string[];
|
|
265
275
|
};
|
|
266
276
|
export declare const Color: {
|
|
267
277
|
title: string;
|
|
@@ -286,6 +296,7 @@ export declare const Color: {
|
|
|
286
296
|
description: string;
|
|
287
297
|
};
|
|
288
298
|
};
|
|
299
|
+
required: string[];
|
|
289
300
|
};
|
|
290
301
|
export declare const CompressedImage: {
|
|
291
302
|
title: string;
|
|
@@ -323,6 +334,7 @@ export declare const CompressedImage: {
|
|
|
323
334
|
description: string;
|
|
324
335
|
};
|
|
325
336
|
};
|
|
337
|
+
required: string[];
|
|
326
338
|
};
|
|
327
339
|
export declare const CompressedVideo: {
|
|
328
340
|
title: string;
|
|
@@ -360,6 +372,7 @@ export declare const CompressedVideo: {
|
|
|
360
372
|
description: string;
|
|
361
373
|
};
|
|
362
374
|
};
|
|
375
|
+
required: string[];
|
|
363
376
|
};
|
|
364
377
|
export declare const CylinderPrimitive: {
|
|
365
378
|
title: string;
|
|
@@ -390,6 +403,7 @@ export declare const CylinderPrimitive: {
|
|
|
390
403
|
description: string;
|
|
391
404
|
};
|
|
392
405
|
};
|
|
406
|
+
required: string[];
|
|
393
407
|
};
|
|
394
408
|
orientation: {
|
|
395
409
|
title: string;
|
|
@@ -413,8 +427,10 @@ export declare const CylinderPrimitive: {
|
|
|
413
427
|
description: string;
|
|
414
428
|
};
|
|
415
429
|
};
|
|
430
|
+
required: string[];
|
|
416
431
|
};
|
|
417
432
|
};
|
|
433
|
+
required: string[];
|
|
418
434
|
};
|
|
419
435
|
size: {
|
|
420
436
|
title: string;
|
|
@@ -434,6 +450,7 @@ export declare const CylinderPrimitive: {
|
|
|
434
450
|
description: string;
|
|
435
451
|
};
|
|
436
452
|
};
|
|
453
|
+
required: string[];
|
|
437
454
|
};
|
|
438
455
|
bottom_scale: {
|
|
439
456
|
type: string;
|
|
@@ -465,8 +482,10 @@ export declare const CylinderPrimitive: {
|
|
|
465
482
|
description: string;
|
|
466
483
|
};
|
|
467
484
|
};
|
|
485
|
+
required: string[];
|
|
468
486
|
};
|
|
469
487
|
};
|
|
488
|
+
required: string[];
|
|
470
489
|
};
|
|
471
490
|
export declare const CubePrimitive: {
|
|
472
491
|
title: string;
|
|
@@ -497,6 +516,7 @@ export declare const CubePrimitive: {
|
|
|
497
516
|
description: string;
|
|
498
517
|
};
|
|
499
518
|
};
|
|
519
|
+
required: string[];
|
|
500
520
|
};
|
|
501
521
|
orientation: {
|
|
502
522
|
title: string;
|
|
@@ -520,8 +540,10 @@ export declare const CubePrimitive: {
|
|
|
520
540
|
description: string;
|
|
521
541
|
};
|
|
522
542
|
};
|
|
543
|
+
required: string[];
|
|
523
544
|
};
|
|
524
545
|
};
|
|
546
|
+
required: string[];
|
|
525
547
|
};
|
|
526
548
|
size: {
|
|
527
549
|
title: string;
|
|
@@ -541,6 +563,7 @@ export declare const CubePrimitive: {
|
|
|
541
563
|
description: string;
|
|
542
564
|
};
|
|
543
565
|
};
|
|
566
|
+
required: string[];
|
|
544
567
|
};
|
|
545
568
|
color: {
|
|
546
569
|
title: string;
|
|
@@ -564,8 +587,10 @@ export declare const CubePrimitive: {
|
|
|
564
587
|
description: string;
|
|
565
588
|
};
|
|
566
589
|
};
|
|
590
|
+
required: string[];
|
|
567
591
|
};
|
|
568
592
|
};
|
|
593
|
+
required: string[];
|
|
569
594
|
};
|
|
570
595
|
export declare const Duration: {
|
|
571
596
|
title: string;
|
|
@@ -583,6 +608,7 @@ export declare const Duration: {
|
|
|
583
608
|
description: string;
|
|
584
609
|
};
|
|
585
610
|
};
|
|
611
|
+
required: string[];
|
|
586
612
|
};
|
|
587
613
|
export declare const FrameTransform: {
|
|
588
614
|
title: string;
|
|
@@ -632,6 +658,7 @@ export declare const FrameTransform: {
|
|
|
632
658
|
description: string;
|
|
633
659
|
};
|
|
634
660
|
};
|
|
661
|
+
required: string[];
|
|
635
662
|
};
|
|
636
663
|
rotation: {
|
|
637
664
|
title: string;
|
|
@@ -655,8 +682,10 @@ export declare const FrameTransform: {
|
|
|
655
682
|
description: string;
|
|
656
683
|
};
|
|
657
684
|
};
|
|
685
|
+
required: string[];
|
|
658
686
|
};
|
|
659
687
|
};
|
|
688
|
+
required: string[];
|
|
660
689
|
};
|
|
661
690
|
export declare const FrameTransforms: {
|
|
662
691
|
title: string;
|
|
@@ -713,6 +742,7 @@ export declare const FrameTransforms: {
|
|
|
713
742
|
description: string;
|
|
714
743
|
};
|
|
715
744
|
};
|
|
745
|
+
required: string[];
|
|
716
746
|
};
|
|
717
747
|
rotation: {
|
|
718
748
|
title: string;
|
|
@@ -736,12 +766,15 @@ export declare const FrameTransforms: {
|
|
|
736
766
|
description: string;
|
|
737
767
|
};
|
|
738
768
|
};
|
|
769
|
+
required: string[];
|
|
739
770
|
};
|
|
740
771
|
};
|
|
772
|
+
required: string[];
|
|
741
773
|
};
|
|
742
774
|
description: string;
|
|
743
775
|
};
|
|
744
776
|
};
|
|
777
|
+
required: string[];
|
|
745
778
|
};
|
|
746
779
|
export declare const GeoJSON: {
|
|
747
780
|
title: string;
|
|
@@ -754,6 +787,7 @@ export declare const GeoJSON: {
|
|
|
754
787
|
description: string;
|
|
755
788
|
};
|
|
756
789
|
};
|
|
790
|
+
required: string[];
|
|
757
791
|
};
|
|
758
792
|
export declare const Grid: {
|
|
759
793
|
title: string;
|
|
@@ -804,6 +838,7 @@ export declare const Grid: {
|
|
|
804
838
|
description: string;
|
|
805
839
|
};
|
|
806
840
|
};
|
|
841
|
+
required: string[];
|
|
807
842
|
};
|
|
808
843
|
orientation: {
|
|
809
844
|
title: string;
|
|
@@ -827,8 +862,10 @@ export declare const Grid: {
|
|
|
827
862
|
description: string;
|
|
828
863
|
};
|
|
829
864
|
};
|
|
865
|
+
required: string[];
|
|
830
866
|
};
|
|
831
867
|
};
|
|
868
|
+
required: string[];
|
|
832
869
|
};
|
|
833
870
|
column_count: {
|
|
834
871
|
type: string;
|
|
@@ -849,6 +886,7 @@ export declare const Grid: {
|
|
|
849
886
|
description: string;
|
|
850
887
|
};
|
|
851
888
|
};
|
|
889
|
+
required: string[];
|
|
852
890
|
};
|
|
853
891
|
row_stride: {
|
|
854
892
|
type: string;
|
|
@@ -886,6 +924,7 @@ export declare const Grid: {
|
|
|
886
924
|
}[];
|
|
887
925
|
};
|
|
888
926
|
};
|
|
927
|
+
required: string[];
|
|
889
928
|
};
|
|
890
929
|
description: string;
|
|
891
930
|
};
|
|
@@ -895,6 +934,168 @@ export declare const Grid: {
|
|
|
895
934
|
description: string;
|
|
896
935
|
};
|
|
897
936
|
};
|
|
937
|
+
required: string[];
|
|
938
|
+
};
|
|
939
|
+
export declare const VoxelGrid: {
|
|
940
|
+
title: string;
|
|
941
|
+
description: string;
|
|
942
|
+
$comment: string;
|
|
943
|
+
type: string;
|
|
944
|
+
properties: {
|
|
945
|
+
timestamp: {
|
|
946
|
+
type: string;
|
|
947
|
+
title: string;
|
|
948
|
+
properties: {
|
|
949
|
+
sec: {
|
|
950
|
+
type: string;
|
|
951
|
+
minimum: number;
|
|
952
|
+
};
|
|
953
|
+
nsec: {
|
|
954
|
+
type: string;
|
|
955
|
+
minimum: number;
|
|
956
|
+
maximum: number;
|
|
957
|
+
};
|
|
958
|
+
};
|
|
959
|
+
description: string;
|
|
960
|
+
};
|
|
961
|
+
frame_id: {
|
|
962
|
+
type: string;
|
|
963
|
+
description: string;
|
|
964
|
+
};
|
|
965
|
+
pose: {
|
|
966
|
+
title: string;
|
|
967
|
+
description: string;
|
|
968
|
+
type: string;
|
|
969
|
+
properties: {
|
|
970
|
+
position: {
|
|
971
|
+
title: string;
|
|
972
|
+
description: string;
|
|
973
|
+
type: string;
|
|
974
|
+
properties: {
|
|
975
|
+
x: {
|
|
976
|
+
type: string;
|
|
977
|
+
description: string;
|
|
978
|
+
};
|
|
979
|
+
y: {
|
|
980
|
+
type: string;
|
|
981
|
+
description: string;
|
|
982
|
+
};
|
|
983
|
+
z: {
|
|
984
|
+
type: string;
|
|
985
|
+
description: string;
|
|
986
|
+
};
|
|
987
|
+
};
|
|
988
|
+
required: string[];
|
|
989
|
+
};
|
|
990
|
+
orientation: {
|
|
991
|
+
title: string;
|
|
992
|
+
description: string;
|
|
993
|
+
type: string;
|
|
994
|
+
properties: {
|
|
995
|
+
x: {
|
|
996
|
+
type: string;
|
|
997
|
+
description: string;
|
|
998
|
+
};
|
|
999
|
+
y: {
|
|
1000
|
+
type: string;
|
|
1001
|
+
description: string;
|
|
1002
|
+
};
|
|
1003
|
+
z: {
|
|
1004
|
+
type: string;
|
|
1005
|
+
description: string;
|
|
1006
|
+
};
|
|
1007
|
+
w: {
|
|
1008
|
+
type: string;
|
|
1009
|
+
description: string;
|
|
1010
|
+
};
|
|
1011
|
+
};
|
|
1012
|
+
required: string[];
|
|
1013
|
+
};
|
|
1014
|
+
};
|
|
1015
|
+
required: string[];
|
|
1016
|
+
};
|
|
1017
|
+
row_count: {
|
|
1018
|
+
type: string;
|
|
1019
|
+
minimum: number;
|
|
1020
|
+
description: string;
|
|
1021
|
+
};
|
|
1022
|
+
column_count: {
|
|
1023
|
+
type: string;
|
|
1024
|
+
minimum: number;
|
|
1025
|
+
description: string;
|
|
1026
|
+
};
|
|
1027
|
+
cell_size: {
|
|
1028
|
+
title: string;
|
|
1029
|
+
description: string;
|
|
1030
|
+
type: string;
|
|
1031
|
+
properties: {
|
|
1032
|
+
x: {
|
|
1033
|
+
type: string;
|
|
1034
|
+
description: string;
|
|
1035
|
+
};
|
|
1036
|
+
y: {
|
|
1037
|
+
type: string;
|
|
1038
|
+
description: string;
|
|
1039
|
+
};
|
|
1040
|
+
z: {
|
|
1041
|
+
type: string;
|
|
1042
|
+
description: string;
|
|
1043
|
+
};
|
|
1044
|
+
};
|
|
1045
|
+
required: string[];
|
|
1046
|
+
};
|
|
1047
|
+
slice_stride: {
|
|
1048
|
+
type: string;
|
|
1049
|
+
minimum: number;
|
|
1050
|
+
description: string;
|
|
1051
|
+
};
|
|
1052
|
+
row_stride: {
|
|
1053
|
+
type: string;
|
|
1054
|
+
minimum: number;
|
|
1055
|
+
description: string;
|
|
1056
|
+
};
|
|
1057
|
+
cell_stride: {
|
|
1058
|
+
type: string;
|
|
1059
|
+
minimum: number;
|
|
1060
|
+
description: string;
|
|
1061
|
+
};
|
|
1062
|
+
fields: {
|
|
1063
|
+
type: string;
|
|
1064
|
+
items: {
|
|
1065
|
+
title: string;
|
|
1066
|
+
description: string;
|
|
1067
|
+
type: string;
|
|
1068
|
+
properties: {
|
|
1069
|
+
name: {
|
|
1070
|
+
type: string;
|
|
1071
|
+
description: string;
|
|
1072
|
+
};
|
|
1073
|
+
offset: {
|
|
1074
|
+
type: string;
|
|
1075
|
+
minimum: number;
|
|
1076
|
+
description: string;
|
|
1077
|
+
};
|
|
1078
|
+
type: {
|
|
1079
|
+
title: string;
|
|
1080
|
+
description: string;
|
|
1081
|
+
oneOf: {
|
|
1082
|
+
title: string;
|
|
1083
|
+
const: number;
|
|
1084
|
+
description: string;
|
|
1085
|
+
}[];
|
|
1086
|
+
};
|
|
1087
|
+
};
|
|
1088
|
+
required: string[];
|
|
1089
|
+
};
|
|
1090
|
+
description: string;
|
|
1091
|
+
};
|
|
1092
|
+
data: {
|
|
1093
|
+
type: string;
|
|
1094
|
+
contentEncoding: string;
|
|
1095
|
+
description: string;
|
|
1096
|
+
};
|
|
1097
|
+
};
|
|
1098
|
+
required: string[];
|
|
898
1099
|
};
|
|
899
1100
|
export declare const ImageAnnotations: {
|
|
900
1101
|
title: string;
|
|
@@ -939,6 +1140,7 @@ export declare const ImageAnnotations: {
|
|
|
939
1140
|
description: string;
|
|
940
1141
|
};
|
|
941
1142
|
};
|
|
1143
|
+
required: string[];
|
|
942
1144
|
};
|
|
943
1145
|
diameter: {
|
|
944
1146
|
type: string;
|
|
@@ -970,6 +1172,7 @@ export declare const ImageAnnotations: {
|
|
|
970
1172
|
description: string;
|
|
971
1173
|
};
|
|
972
1174
|
};
|
|
1175
|
+
required: string[];
|
|
973
1176
|
};
|
|
974
1177
|
outline_color: {
|
|
975
1178
|
title: string;
|
|
@@ -993,8 +1196,10 @@ export declare const ImageAnnotations: {
|
|
|
993
1196
|
description: string;
|
|
994
1197
|
};
|
|
995
1198
|
};
|
|
1199
|
+
required: string[];
|
|
996
1200
|
};
|
|
997
1201
|
};
|
|
1202
|
+
required: string[];
|
|
998
1203
|
};
|
|
999
1204
|
description: string;
|
|
1000
1205
|
};
|
|
@@ -1046,6 +1251,7 @@ export declare const ImageAnnotations: {
|
|
|
1046
1251
|
description: string;
|
|
1047
1252
|
};
|
|
1048
1253
|
};
|
|
1254
|
+
required: string[];
|
|
1049
1255
|
};
|
|
1050
1256
|
description: string;
|
|
1051
1257
|
};
|
|
@@ -1071,6 +1277,7 @@ export declare const ImageAnnotations: {
|
|
|
1071
1277
|
description: string;
|
|
1072
1278
|
};
|
|
1073
1279
|
};
|
|
1280
|
+
required: string[];
|
|
1074
1281
|
};
|
|
1075
1282
|
outline_colors: {
|
|
1076
1283
|
type: string;
|
|
@@ -1096,6 +1303,7 @@ export declare const ImageAnnotations: {
|
|
|
1096
1303
|
description: string;
|
|
1097
1304
|
};
|
|
1098
1305
|
};
|
|
1306
|
+
required: string[];
|
|
1099
1307
|
};
|
|
1100
1308
|
description: string;
|
|
1101
1309
|
};
|
|
@@ -1121,12 +1329,14 @@ export declare const ImageAnnotations: {
|
|
|
1121
1329
|
description: string;
|
|
1122
1330
|
};
|
|
1123
1331
|
};
|
|
1332
|
+
required: string[];
|
|
1124
1333
|
};
|
|
1125
1334
|
thickness: {
|
|
1126
1335
|
type: string;
|
|
1127
1336
|
description: string;
|
|
1128
1337
|
};
|
|
1129
1338
|
};
|
|
1339
|
+
required: string[];
|
|
1130
1340
|
};
|
|
1131
1341
|
description: string;
|
|
1132
1342
|
};
|
|
@@ -1167,6 +1377,7 @@ export declare const ImageAnnotations: {
|
|
|
1167
1377
|
description: string;
|
|
1168
1378
|
};
|
|
1169
1379
|
};
|
|
1380
|
+
required: string[];
|
|
1170
1381
|
};
|
|
1171
1382
|
text: {
|
|
1172
1383
|
type: string;
|
|
@@ -1198,6 +1409,7 @@ export declare const ImageAnnotations: {
|
|
|
1198
1409
|
description: string;
|
|
1199
1410
|
};
|
|
1200
1411
|
};
|
|
1412
|
+
required: string[];
|
|
1201
1413
|
};
|
|
1202
1414
|
background_color: {
|
|
1203
1415
|
title: string;
|
|
@@ -1221,12 +1433,15 @@ export declare const ImageAnnotations: {
|
|
|
1221
1433
|
description: string;
|
|
1222
1434
|
};
|
|
1223
1435
|
};
|
|
1436
|
+
required: string[];
|
|
1224
1437
|
};
|
|
1225
1438
|
};
|
|
1439
|
+
required: string[];
|
|
1226
1440
|
};
|
|
1227
1441
|
description: string;
|
|
1228
1442
|
};
|
|
1229
1443
|
};
|
|
1444
|
+
required: string[];
|
|
1230
1445
|
};
|
|
1231
1446
|
export declare const KeyValuePair: {
|
|
1232
1447
|
title: string;
|
|
@@ -1243,6 +1458,7 @@ export declare const KeyValuePair: {
|
|
|
1243
1458
|
description: string;
|
|
1244
1459
|
};
|
|
1245
1460
|
};
|
|
1461
|
+
required: string[];
|
|
1246
1462
|
};
|
|
1247
1463
|
export declare const LaserScan: {
|
|
1248
1464
|
title: string;
|
|
@@ -1293,6 +1509,7 @@ export declare const LaserScan: {
|
|
|
1293
1509
|
description: string;
|
|
1294
1510
|
};
|
|
1295
1511
|
};
|
|
1512
|
+
required: string[];
|
|
1296
1513
|
};
|
|
1297
1514
|
orientation: {
|
|
1298
1515
|
title: string;
|
|
@@ -1316,8 +1533,10 @@ export declare const LaserScan: {
|
|
|
1316
1533
|
description: string;
|
|
1317
1534
|
};
|
|
1318
1535
|
};
|
|
1536
|
+
required: string[];
|
|
1319
1537
|
};
|
|
1320
1538
|
};
|
|
1539
|
+
required: string[];
|
|
1321
1540
|
};
|
|
1322
1541
|
start_angle: {
|
|
1323
1542
|
type: string;
|
|
@@ -1342,6 +1561,7 @@ export declare const LaserScan: {
|
|
|
1342
1561
|
description: string;
|
|
1343
1562
|
};
|
|
1344
1563
|
};
|
|
1564
|
+
required: string[];
|
|
1345
1565
|
};
|
|
1346
1566
|
export declare const LinePrimitive: {
|
|
1347
1567
|
title: string;
|
|
@@ -1381,6 +1601,7 @@ export declare const LinePrimitive: {
|
|
|
1381
1601
|
description: string;
|
|
1382
1602
|
};
|
|
1383
1603
|
};
|
|
1604
|
+
required: string[];
|
|
1384
1605
|
};
|
|
1385
1606
|
orientation: {
|
|
1386
1607
|
title: string;
|
|
@@ -1404,8 +1625,10 @@ export declare const LinePrimitive: {
|
|
|
1404
1625
|
description: string;
|
|
1405
1626
|
};
|
|
1406
1627
|
};
|
|
1628
|
+
required: string[];
|
|
1407
1629
|
};
|
|
1408
1630
|
};
|
|
1631
|
+
required: string[];
|
|
1409
1632
|
};
|
|
1410
1633
|
thickness: {
|
|
1411
1634
|
type: string;
|
|
@@ -1435,6 +1658,7 @@ export declare const LinePrimitive: {
|
|
|
1435
1658
|
description: string;
|
|
1436
1659
|
};
|
|
1437
1660
|
};
|
|
1661
|
+
required: string[];
|
|
1438
1662
|
};
|
|
1439
1663
|
description: string;
|
|
1440
1664
|
};
|
|
@@ -1460,6 +1684,7 @@ export declare const LinePrimitive: {
|
|
|
1460
1684
|
description: string;
|
|
1461
1685
|
};
|
|
1462
1686
|
};
|
|
1687
|
+
required: string[];
|
|
1463
1688
|
};
|
|
1464
1689
|
colors: {
|
|
1465
1690
|
type: string;
|
|
@@ -1485,6 +1710,7 @@ export declare const LinePrimitive: {
|
|
|
1485
1710
|
description: string;
|
|
1486
1711
|
};
|
|
1487
1712
|
};
|
|
1713
|
+
required: string[];
|
|
1488
1714
|
};
|
|
1489
1715
|
description: string;
|
|
1490
1716
|
};
|
|
@@ -1497,6 +1723,7 @@ export declare const LinePrimitive: {
|
|
|
1497
1723
|
description: string;
|
|
1498
1724
|
};
|
|
1499
1725
|
};
|
|
1726
|
+
required: string[];
|
|
1500
1727
|
};
|
|
1501
1728
|
export declare const LocationFix: {
|
|
1502
1729
|
title: string;
|
|
@@ -1554,7 +1781,127 @@ export declare const LocationFix: {
|
|
|
1554
1781
|
description: string;
|
|
1555
1782
|
}[];
|
|
1556
1783
|
};
|
|
1784
|
+
color: {
|
|
1785
|
+
title: string;
|
|
1786
|
+
description: string;
|
|
1787
|
+
type: string;
|
|
1788
|
+
properties: {
|
|
1789
|
+
r: {
|
|
1790
|
+
type: string;
|
|
1791
|
+
description: string;
|
|
1792
|
+
};
|
|
1793
|
+
g: {
|
|
1794
|
+
type: string;
|
|
1795
|
+
description: string;
|
|
1796
|
+
};
|
|
1797
|
+
b: {
|
|
1798
|
+
type: string;
|
|
1799
|
+
description: string;
|
|
1800
|
+
};
|
|
1801
|
+
a: {
|
|
1802
|
+
type: string;
|
|
1803
|
+
description: string;
|
|
1804
|
+
};
|
|
1805
|
+
};
|
|
1806
|
+
required: string[];
|
|
1807
|
+
};
|
|
1557
1808
|
};
|
|
1809
|
+
required: string[];
|
|
1810
|
+
};
|
|
1811
|
+
export declare const LocationFixes: {
|
|
1812
|
+
title: string;
|
|
1813
|
+
description: string;
|
|
1814
|
+
$comment: string;
|
|
1815
|
+
type: string;
|
|
1816
|
+
properties: {
|
|
1817
|
+
fixes: {
|
|
1818
|
+
type: string;
|
|
1819
|
+
items: {
|
|
1820
|
+
title: string;
|
|
1821
|
+
description: string;
|
|
1822
|
+
type: string;
|
|
1823
|
+
properties: {
|
|
1824
|
+
timestamp: {
|
|
1825
|
+
type: string;
|
|
1826
|
+
title: string;
|
|
1827
|
+
properties: {
|
|
1828
|
+
sec: {
|
|
1829
|
+
type: string;
|
|
1830
|
+
minimum: number;
|
|
1831
|
+
};
|
|
1832
|
+
nsec: {
|
|
1833
|
+
type: string;
|
|
1834
|
+
minimum: number;
|
|
1835
|
+
maximum: number;
|
|
1836
|
+
};
|
|
1837
|
+
};
|
|
1838
|
+
description: string;
|
|
1839
|
+
};
|
|
1840
|
+
frame_id: {
|
|
1841
|
+
type: string;
|
|
1842
|
+
description: string;
|
|
1843
|
+
};
|
|
1844
|
+
latitude: {
|
|
1845
|
+
type: string;
|
|
1846
|
+
description: string;
|
|
1847
|
+
};
|
|
1848
|
+
longitude: {
|
|
1849
|
+
type: string;
|
|
1850
|
+
description: string;
|
|
1851
|
+
};
|
|
1852
|
+
altitude: {
|
|
1853
|
+
type: string;
|
|
1854
|
+
description: string;
|
|
1855
|
+
};
|
|
1856
|
+
position_covariance: {
|
|
1857
|
+
type: string;
|
|
1858
|
+
items: {
|
|
1859
|
+
type: string;
|
|
1860
|
+
};
|
|
1861
|
+
minItems: number;
|
|
1862
|
+
maxItems: number;
|
|
1863
|
+
description: string;
|
|
1864
|
+
};
|
|
1865
|
+
position_covariance_type: {
|
|
1866
|
+
title: string;
|
|
1867
|
+
description: string;
|
|
1868
|
+
oneOf: {
|
|
1869
|
+
title: string;
|
|
1870
|
+
const: number;
|
|
1871
|
+
description: string;
|
|
1872
|
+
}[];
|
|
1873
|
+
};
|
|
1874
|
+
color: {
|
|
1875
|
+
title: string;
|
|
1876
|
+
description: string;
|
|
1877
|
+
type: string;
|
|
1878
|
+
properties: {
|
|
1879
|
+
r: {
|
|
1880
|
+
type: string;
|
|
1881
|
+
description: string;
|
|
1882
|
+
};
|
|
1883
|
+
g: {
|
|
1884
|
+
type: string;
|
|
1885
|
+
description: string;
|
|
1886
|
+
};
|
|
1887
|
+
b: {
|
|
1888
|
+
type: string;
|
|
1889
|
+
description: string;
|
|
1890
|
+
};
|
|
1891
|
+
a: {
|
|
1892
|
+
type: string;
|
|
1893
|
+
description: string;
|
|
1894
|
+
};
|
|
1895
|
+
};
|
|
1896
|
+
required: string[];
|
|
1897
|
+
};
|
|
1898
|
+
};
|
|
1899
|
+
required: string[];
|
|
1900
|
+
};
|
|
1901
|
+
description: string;
|
|
1902
|
+
};
|
|
1903
|
+
};
|
|
1904
|
+
required: string[];
|
|
1558
1905
|
};
|
|
1559
1906
|
export declare const Log: {
|
|
1560
1907
|
title: string;
|
|
@@ -1605,6 +1952,7 @@ export declare const Log: {
|
|
|
1605
1952
|
description: string;
|
|
1606
1953
|
};
|
|
1607
1954
|
};
|
|
1955
|
+
required: string[];
|
|
1608
1956
|
};
|
|
1609
1957
|
export declare const SceneEntityDeletion: {
|
|
1610
1958
|
title: string;
|
|
@@ -1642,6 +1990,7 @@ export declare const SceneEntityDeletion: {
|
|
|
1642
1990
|
description: string;
|
|
1643
1991
|
};
|
|
1644
1992
|
};
|
|
1993
|
+
required: string[];
|
|
1645
1994
|
};
|
|
1646
1995
|
export declare const SceneEntity: {
|
|
1647
1996
|
title: string;
|
|
@@ -1708,6 +2057,7 @@ export declare const SceneEntity: {
|
|
|
1708
2057
|
description: string;
|
|
1709
2058
|
};
|
|
1710
2059
|
};
|
|
2060
|
+
required: string[];
|
|
1711
2061
|
};
|
|
1712
2062
|
description: string;
|
|
1713
2063
|
};
|
|
@@ -1741,6 +2091,7 @@ export declare const SceneEntity: {
|
|
|
1741
2091
|
description: string;
|
|
1742
2092
|
};
|
|
1743
2093
|
};
|
|
2094
|
+
required: string[];
|
|
1744
2095
|
};
|
|
1745
2096
|
orientation: {
|
|
1746
2097
|
title: string;
|
|
@@ -1764,8 +2115,10 @@ export declare const SceneEntity: {
|
|
|
1764
2115
|
description: string;
|
|
1765
2116
|
};
|
|
1766
2117
|
};
|
|
2118
|
+
required: string[];
|
|
1767
2119
|
};
|
|
1768
2120
|
};
|
|
2121
|
+
required: string[];
|
|
1769
2122
|
};
|
|
1770
2123
|
shaft_length: {
|
|
1771
2124
|
type: string;
|
|
@@ -1805,8 +2158,10 @@ export declare const SceneEntity: {
|
|
|
1805
2158
|
description: string;
|
|
1806
2159
|
};
|
|
1807
2160
|
};
|
|
2161
|
+
required: string[];
|
|
1808
2162
|
};
|
|
1809
2163
|
};
|
|
2164
|
+
required: string[];
|
|
1810
2165
|
};
|
|
1811
2166
|
description: string;
|
|
1812
2167
|
};
|
|
@@ -1840,6 +2195,7 @@ export declare const SceneEntity: {
|
|
|
1840
2195
|
description: string;
|
|
1841
2196
|
};
|
|
1842
2197
|
};
|
|
2198
|
+
required: string[];
|
|
1843
2199
|
};
|
|
1844
2200
|
orientation: {
|
|
1845
2201
|
title: string;
|
|
@@ -1863,8 +2219,10 @@ export declare const SceneEntity: {
|
|
|
1863
2219
|
description: string;
|
|
1864
2220
|
};
|
|
1865
2221
|
};
|
|
2222
|
+
required: string[];
|
|
1866
2223
|
};
|
|
1867
2224
|
};
|
|
2225
|
+
required: string[];
|
|
1868
2226
|
};
|
|
1869
2227
|
size: {
|
|
1870
2228
|
title: string;
|
|
@@ -1884,6 +2242,7 @@ export declare const SceneEntity: {
|
|
|
1884
2242
|
description: string;
|
|
1885
2243
|
};
|
|
1886
2244
|
};
|
|
2245
|
+
required: string[];
|
|
1887
2246
|
};
|
|
1888
2247
|
color: {
|
|
1889
2248
|
title: string;
|
|
@@ -1907,8 +2266,10 @@ export declare const SceneEntity: {
|
|
|
1907
2266
|
description: string;
|
|
1908
2267
|
};
|
|
1909
2268
|
};
|
|
2269
|
+
required: string[];
|
|
1910
2270
|
};
|
|
1911
2271
|
};
|
|
2272
|
+
required: string[];
|
|
1912
2273
|
};
|
|
1913
2274
|
description: string;
|
|
1914
2275
|
};
|
|
@@ -1942,6 +2303,7 @@ export declare const SceneEntity: {
|
|
|
1942
2303
|
description: string;
|
|
1943
2304
|
};
|
|
1944
2305
|
};
|
|
2306
|
+
required: string[];
|
|
1945
2307
|
};
|
|
1946
2308
|
orientation: {
|
|
1947
2309
|
title: string;
|
|
@@ -1965,8 +2327,10 @@ export declare const SceneEntity: {
|
|
|
1965
2327
|
description: string;
|
|
1966
2328
|
};
|
|
1967
2329
|
};
|
|
2330
|
+
required: string[];
|
|
1968
2331
|
};
|
|
1969
2332
|
};
|
|
2333
|
+
required: string[];
|
|
1970
2334
|
};
|
|
1971
2335
|
size: {
|
|
1972
2336
|
title: string;
|
|
@@ -1986,6 +2350,7 @@ export declare const SceneEntity: {
|
|
|
1986
2350
|
description: string;
|
|
1987
2351
|
};
|
|
1988
2352
|
};
|
|
2353
|
+
required: string[];
|
|
1989
2354
|
};
|
|
1990
2355
|
color: {
|
|
1991
2356
|
title: string;
|
|
@@ -2009,8 +2374,10 @@ export declare const SceneEntity: {
|
|
|
2009
2374
|
description: string;
|
|
2010
2375
|
};
|
|
2011
2376
|
};
|
|
2377
|
+
required: string[];
|
|
2012
2378
|
};
|
|
2013
2379
|
};
|
|
2380
|
+
required: string[];
|
|
2014
2381
|
};
|
|
2015
2382
|
description: string;
|
|
2016
2383
|
};
|
|
@@ -2044,6 +2411,7 @@ export declare const SceneEntity: {
|
|
|
2044
2411
|
description: string;
|
|
2045
2412
|
};
|
|
2046
2413
|
};
|
|
2414
|
+
required: string[];
|
|
2047
2415
|
};
|
|
2048
2416
|
orientation: {
|
|
2049
2417
|
title: string;
|
|
@@ -2067,8 +2435,10 @@ export declare const SceneEntity: {
|
|
|
2067
2435
|
description: string;
|
|
2068
2436
|
};
|
|
2069
2437
|
};
|
|
2438
|
+
required: string[];
|
|
2070
2439
|
};
|
|
2071
2440
|
};
|
|
2441
|
+
required: string[];
|
|
2072
2442
|
};
|
|
2073
2443
|
size: {
|
|
2074
2444
|
title: string;
|
|
@@ -2088,6 +2458,7 @@ export declare const SceneEntity: {
|
|
|
2088
2458
|
description: string;
|
|
2089
2459
|
};
|
|
2090
2460
|
};
|
|
2461
|
+
required: string[];
|
|
2091
2462
|
};
|
|
2092
2463
|
bottom_scale: {
|
|
2093
2464
|
type: string;
|
|
@@ -2119,8 +2490,10 @@ export declare const SceneEntity: {
|
|
|
2119
2490
|
description: string;
|
|
2120
2491
|
};
|
|
2121
2492
|
};
|
|
2493
|
+
required: string[];
|
|
2122
2494
|
};
|
|
2123
2495
|
};
|
|
2496
|
+
required: string[];
|
|
2124
2497
|
};
|
|
2125
2498
|
description: string;
|
|
2126
2499
|
};
|
|
@@ -2163,6 +2536,7 @@ export declare const SceneEntity: {
|
|
|
2163
2536
|
description: string;
|
|
2164
2537
|
};
|
|
2165
2538
|
};
|
|
2539
|
+
required: string[];
|
|
2166
2540
|
};
|
|
2167
2541
|
orientation: {
|
|
2168
2542
|
title: string;
|
|
@@ -2186,8 +2560,10 @@ export declare const SceneEntity: {
|
|
|
2186
2560
|
description: string;
|
|
2187
2561
|
};
|
|
2188
2562
|
};
|
|
2563
|
+
required: string[];
|
|
2189
2564
|
};
|
|
2190
2565
|
};
|
|
2566
|
+
required: string[];
|
|
2191
2567
|
};
|
|
2192
2568
|
thickness: {
|
|
2193
2569
|
type: string;
|
|
@@ -2217,6 +2593,7 @@ export declare const SceneEntity: {
|
|
|
2217
2593
|
description: string;
|
|
2218
2594
|
};
|
|
2219
2595
|
};
|
|
2596
|
+
required: string[];
|
|
2220
2597
|
};
|
|
2221
2598
|
description: string;
|
|
2222
2599
|
};
|
|
@@ -2242,6 +2619,7 @@ export declare const SceneEntity: {
|
|
|
2242
2619
|
description: string;
|
|
2243
2620
|
};
|
|
2244
2621
|
};
|
|
2622
|
+
required: string[];
|
|
2245
2623
|
};
|
|
2246
2624
|
colors: {
|
|
2247
2625
|
type: string;
|
|
@@ -2267,6 +2645,7 @@ export declare const SceneEntity: {
|
|
|
2267
2645
|
description: string;
|
|
2268
2646
|
};
|
|
2269
2647
|
};
|
|
2648
|
+
required: string[];
|
|
2270
2649
|
};
|
|
2271
2650
|
description: string;
|
|
2272
2651
|
};
|
|
@@ -2279,6 +2658,7 @@ export declare const SceneEntity: {
|
|
|
2279
2658
|
description: string;
|
|
2280
2659
|
};
|
|
2281
2660
|
};
|
|
2661
|
+
required: string[];
|
|
2282
2662
|
};
|
|
2283
2663
|
description: string;
|
|
2284
2664
|
};
|
|
@@ -2312,6 +2692,7 @@ export declare const SceneEntity: {
|
|
|
2312
2692
|
description: string;
|
|
2313
2693
|
};
|
|
2314
2694
|
};
|
|
2695
|
+
required: string[];
|
|
2315
2696
|
};
|
|
2316
2697
|
orientation: {
|
|
2317
2698
|
title: string;
|
|
@@ -2335,8 +2716,10 @@ export declare const SceneEntity: {
|
|
|
2335
2716
|
description: string;
|
|
2336
2717
|
};
|
|
2337
2718
|
};
|
|
2719
|
+
required: string[];
|
|
2338
2720
|
};
|
|
2339
2721
|
};
|
|
2722
|
+
required: string[];
|
|
2340
2723
|
};
|
|
2341
2724
|
points: {
|
|
2342
2725
|
type: string;
|
|
@@ -2358,6 +2741,7 @@ export declare const SceneEntity: {
|
|
|
2358
2741
|
description: string;
|
|
2359
2742
|
};
|
|
2360
2743
|
};
|
|
2744
|
+
required: string[];
|
|
2361
2745
|
};
|
|
2362
2746
|
description: string;
|
|
2363
2747
|
};
|
|
@@ -2383,6 +2767,7 @@ export declare const SceneEntity: {
|
|
|
2383
2767
|
description: string;
|
|
2384
2768
|
};
|
|
2385
2769
|
};
|
|
2770
|
+
required: string[];
|
|
2386
2771
|
};
|
|
2387
2772
|
colors: {
|
|
2388
2773
|
type: string;
|
|
@@ -2408,6 +2793,7 @@ export declare const SceneEntity: {
|
|
|
2408
2793
|
description: string;
|
|
2409
2794
|
};
|
|
2410
2795
|
};
|
|
2796
|
+
required: string[];
|
|
2411
2797
|
};
|
|
2412
2798
|
description: string;
|
|
2413
2799
|
};
|
|
@@ -2420,6 +2806,7 @@ export declare const SceneEntity: {
|
|
|
2420
2806
|
description: string;
|
|
2421
2807
|
};
|
|
2422
2808
|
};
|
|
2809
|
+
required: string[];
|
|
2423
2810
|
};
|
|
2424
2811
|
description: string;
|
|
2425
2812
|
};
|
|
@@ -2453,6 +2840,7 @@ export declare const SceneEntity: {
|
|
|
2453
2840
|
description: string;
|
|
2454
2841
|
};
|
|
2455
2842
|
};
|
|
2843
|
+
required: string[];
|
|
2456
2844
|
};
|
|
2457
2845
|
orientation: {
|
|
2458
2846
|
title: string;
|
|
@@ -2476,8 +2864,10 @@ export declare const SceneEntity: {
|
|
|
2476
2864
|
description: string;
|
|
2477
2865
|
};
|
|
2478
2866
|
};
|
|
2867
|
+
required: string[];
|
|
2479
2868
|
};
|
|
2480
2869
|
};
|
|
2870
|
+
required: string[];
|
|
2481
2871
|
};
|
|
2482
2872
|
billboard: {
|
|
2483
2873
|
type: string;
|
|
@@ -2513,12 +2903,14 @@ export declare const SceneEntity: {
|
|
|
2513
2903
|
description: string;
|
|
2514
2904
|
};
|
|
2515
2905
|
};
|
|
2906
|
+
required: string[];
|
|
2516
2907
|
};
|
|
2517
2908
|
text: {
|
|
2518
2909
|
type: string;
|
|
2519
2910
|
description: string;
|
|
2520
2911
|
};
|
|
2521
2912
|
};
|
|
2913
|
+
required: string[];
|
|
2522
2914
|
};
|
|
2523
2915
|
description: string;
|
|
2524
2916
|
};
|
|
@@ -2552,6 +2944,7 @@ export declare const SceneEntity: {
|
|
|
2552
2944
|
description: string;
|
|
2553
2945
|
};
|
|
2554
2946
|
};
|
|
2947
|
+
required: string[];
|
|
2555
2948
|
};
|
|
2556
2949
|
orientation: {
|
|
2557
2950
|
title: string;
|
|
@@ -2575,8 +2968,10 @@ export declare const SceneEntity: {
|
|
|
2575
2968
|
description: string;
|
|
2576
2969
|
};
|
|
2577
2970
|
};
|
|
2971
|
+
required: string[];
|
|
2578
2972
|
};
|
|
2579
2973
|
};
|
|
2974
|
+
required: string[];
|
|
2580
2975
|
};
|
|
2581
2976
|
scale: {
|
|
2582
2977
|
title: string;
|
|
@@ -2596,6 +2991,7 @@ export declare const SceneEntity: {
|
|
|
2596
2991
|
description: string;
|
|
2597
2992
|
};
|
|
2598
2993
|
};
|
|
2994
|
+
required: string[];
|
|
2599
2995
|
};
|
|
2600
2996
|
color: {
|
|
2601
2997
|
title: string;
|
|
@@ -2619,6 +3015,7 @@ export declare const SceneEntity: {
|
|
|
2619
3015
|
description: string;
|
|
2620
3016
|
};
|
|
2621
3017
|
};
|
|
3018
|
+
required: string[];
|
|
2622
3019
|
};
|
|
2623
3020
|
override_color: {
|
|
2624
3021
|
type: string;
|
|
@@ -2638,10 +3035,12 @@ export declare const SceneEntity: {
|
|
|
2638
3035
|
description: string;
|
|
2639
3036
|
};
|
|
2640
3037
|
};
|
|
3038
|
+
required: string[];
|
|
2641
3039
|
};
|
|
2642
3040
|
description: string;
|
|
2643
3041
|
};
|
|
2644
3042
|
};
|
|
3043
|
+
required: string[];
|
|
2645
3044
|
};
|
|
2646
3045
|
export declare const SceneUpdate: {
|
|
2647
3046
|
title: string;
|
|
@@ -2686,6 +3085,7 @@ export declare const SceneUpdate: {
|
|
|
2686
3085
|
description: string;
|
|
2687
3086
|
};
|
|
2688
3087
|
};
|
|
3088
|
+
required: string[];
|
|
2689
3089
|
};
|
|
2690
3090
|
description: string;
|
|
2691
3091
|
};
|
|
@@ -2755,6 +3155,7 @@ export declare const SceneUpdate: {
|
|
|
2755
3155
|
description: string;
|
|
2756
3156
|
};
|
|
2757
3157
|
};
|
|
3158
|
+
required: string[];
|
|
2758
3159
|
};
|
|
2759
3160
|
description: string;
|
|
2760
3161
|
};
|
|
@@ -2788,6 +3189,7 @@ export declare const SceneUpdate: {
|
|
|
2788
3189
|
description: string;
|
|
2789
3190
|
};
|
|
2790
3191
|
};
|
|
3192
|
+
required: string[];
|
|
2791
3193
|
};
|
|
2792
3194
|
orientation: {
|
|
2793
3195
|
title: string;
|
|
@@ -2811,8 +3213,10 @@ export declare const SceneUpdate: {
|
|
|
2811
3213
|
description: string;
|
|
2812
3214
|
};
|
|
2813
3215
|
};
|
|
3216
|
+
required: string[];
|
|
2814
3217
|
};
|
|
2815
3218
|
};
|
|
3219
|
+
required: string[];
|
|
2816
3220
|
};
|
|
2817
3221
|
shaft_length: {
|
|
2818
3222
|
type: string;
|
|
@@ -2852,8 +3256,10 @@ export declare const SceneUpdate: {
|
|
|
2852
3256
|
description: string;
|
|
2853
3257
|
};
|
|
2854
3258
|
};
|
|
3259
|
+
required: string[];
|
|
2855
3260
|
};
|
|
2856
3261
|
};
|
|
3262
|
+
required: string[];
|
|
2857
3263
|
};
|
|
2858
3264
|
description: string;
|
|
2859
3265
|
};
|
|
@@ -2887,6 +3293,7 @@ export declare const SceneUpdate: {
|
|
|
2887
3293
|
description: string;
|
|
2888
3294
|
};
|
|
2889
3295
|
};
|
|
3296
|
+
required: string[];
|
|
2890
3297
|
};
|
|
2891
3298
|
orientation: {
|
|
2892
3299
|
title: string;
|
|
@@ -2910,8 +3317,10 @@ export declare const SceneUpdate: {
|
|
|
2910
3317
|
description: string;
|
|
2911
3318
|
};
|
|
2912
3319
|
};
|
|
3320
|
+
required: string[];
|
|
2913
3321
|
};
|
|
2914
3322
|
};
|
|
3323
|
+
required: string[];
|
|
2915
3324
|
};
|
|
2916
3325
|
size: {
|
|
2917
3326
|
title: string;
|
|
@@ -2931,6 +3340,7 @@ export declare const SceneUpdate: {
|
|
|
2931
3340
|
description: string;
|
|
2932
3341
|
};
|
|
2933
3342
|
};
|
|
3343
|
+
required: string[];
|
|
2934
3344
|
};
|
|
2935
3345
|
color: {
|
|
2936
3346
|
title: string;
|
|
@@ -2954,8 +3364,10 @@ export declare const SceneUpdate: {
|
|
|
2954
3364
|
description: string;
|
|
2955
3365
|
};
|
|
2956
3366
|
};
|
|
3367
|
+
required: string[];
|
|
2957
3368
|
};
|
|
2958
3369
|
};
|
|
3370
|
+
required: string[];
|
|
2959
3371
|
};
|
|
2960
3372
|
description: string;
|
|
2961
3373
|
};
|
|
@@ -2989,6 +3401,7 @@ export declare const SceneUpdate: {
|
|
|
2989
3401
|
description: string;
|
|
2990
3402
|
};
|
|
2991
3403
|
};
|
|
3404
|
+
required: string[];
|
|
2992
3405
|
};
|
|
2993
3406
|
orientation: {
|
|
2994
3407
|
title: string;
|
|
@@ -3012,8 +3425,10 @@ export declare const SceneUpdate: {
|
|
|
3012
3425
|
description: string;
|
|
3013
3426
|
};
|
|
3014
3427
|
};
|
|
3428
|
+
required: string[];
|
|
3015
3429
|
};
|
|
3016
3430
|
};
|
|
3431
|
+
required: string[];
|
|
3017
3432
|
};
|
|
3018
3433
|
size: {
|
|
3019
3434
|
title: string;
|
|
@@ -3033,6 +3448,7 @@ export declare const SceneUpdate: {
|
|
|
3033
3448
|
description: string;
|
|
3034
3449
|
};
|
|
3035
3450
|
};
|
|
3451
|
+
required: string[];
|
|
3036
3452
|
};
|
|
3037
3453
|
color: {
|
|
3038
3454
|
title: string;
|
|
@@ -3056,8 +3472,10 @@ export declare const SceneUpdate: {
|
|
|
3056
3472
|
description: string;
|
|
3057
3473
|
};
|
|
3058
3474
|
};
|
|
3475
|
+
required: string[];
|
|
3059
3476
|
};
|
|
3060
3477
|
};
|
|
3478
|
+
required: string[];
|
|
3061
3479
|
};
|
|
3062
3480
|
description: string;
|
|
3063
3481
|
};
|
|
@@ -3091,6 +3509,7 @@ export declare const SceneUpdate: {
|
|
|
3091
3509
|
description: string;
|
|
3092
3510
|
};
|
|
3093
3511
|
};
|
|
3512
|
+
required: string[];
|
|
3094
3513
|
};
|
|
3095
3514
|
orientation: {
|
|
3096
3515
|
title: string;
|
|
@@ -3114,8 +3533,10 @@ export declare const SceneUpdate: {
|
|
|
3114
3533
|
description: string;
|
|
3115
3534
|
};
|
|
3116
3535
|
};
|
|
3536
|
+
required: string[];
|
|
3117
3537
|
};
|
|
3118
3538
|
};
|
|
3539
|
+
required: string[];
|
|
3119
3540
|
};
|
|
3120
3541
|
size: {
|
|
3121
3542
|
title: string;
|
|
@@ -3135,6 +3556,7 @@ export declare const SceneUpdate: {
|
|
|
3135
3556
|
description: string;
|
|
3136
3557
|
};
|
|
3137
3558
|
};
|
|
3559
|
+
required: string[];
|
|
3138
3560
|
};
|
|
3139
3561
|
bottom_scale: {
|
|
3140
3562
|
type: string;
|
|
@@ -3166,8 +3588,10 @@ export declare const SceneUpdate: {
|
|
|
3166
3588
|
description: string;
|
|
3167
3589
|
};
|
|
3168
3590
|
};
|
|
3591
|
+
required: string[];
|
|
3169
3592
|
};
|
|
3170
3593
|
};
|
|
3594
|
+
required: string[];
|
|
3171
3595
|
};
|
|
3172
3596
|
description: string;
|
|
3173
3597
|
};
|
|
@@ -3210,6 +3634,7 @@ export declare const SceneUpdate: {
|
|
|
3210
3634
|
description: string;
|
|
3211
3635
|
};
|
|
3212
3636
|
};
|
|
3637
|
+
required: string[];
|
|
3213
3638
|
};
|
|
3214
3639
|
orientation: {
|
|
3215
3640
|
title: string;
|
|
@@ -3233,8 +3658,10 @@ export declare const SceneUpdate: {
|
|
|
3233
3658
|
description: string;
|
|
3234
3659
|
};
|
|
3235
3660
|
};
|
|
3661
|
+
required: string[];
|
|
3236
3662
|
};
|
|
3237
3663
|
};
|
|
3664
|
+
required: string[];
|
|
3238
3665
|
};
|
|
3239
3666
|
thickness: {
|
|
3240
3667
|
type: string;
|
|
@@ -3264,6 +3691,7 @@ export declare const SceneUpdate: {
|
|
|
3264
3691
|
description: string;
|
|
3265
3692
|
};
|
|
3266
3693
|
};
|
|
3694
|
+
required: string[];
|
|
3267
3695
|
};
|
|
3268
3696
|
description: string;
|
|
3269
3697
|
};
|
|
@@ -3289,6 +3717,7 @@ export declare const SceneUpdate: {
|
|
|
3289
3717
|
description: string;
|
|
3290
3718
|
};
|
|
3291
3719
|
};
|
|
3720
|
+
required: string[];
|
|
3292
3721
|
};
|
|
3293
3722
|
colors: {
|
|
3294
3723
|
type: string;
|
|
@@ -3314,6 +3743,7 @@ export declare const SceneUpdate: {
|
|
|
3314
3743
|
description: string;
|
|
3315
3744
|
};
|
|
3316
3745
|
};
|
|
3746
|
+
required: string[];
|
|
3317
3747
|
};
|
|
3318
3748
|
description: string;
|
|
3319
3749
|
};
|
|
@@ -3326,6 +3756,7 @@ export declare const SceneUpdate: {
|
|
|
3326
3756
|
description: string;
|
|
3327
3757
|
};
|
|
3328
3758
|
};
|
|
3759
|
+
required: string[];
|
|
3329
3760
|
};
|
|
3330
3761
|
description: string;
|
|
3331
3762
|
};
|
|
@@ -3359,6 +3790,7 @@ export declare const SceneUpdate: {
|
|
|
3359
3790
|
description: string;
|
|
3360
3791
|
};
|
|
3361
3792
|
};
|
|
3793
|
+
required: string[];
|
|
3362
3794
|
};
|
|
3363
3795
|
orientation: {
|
|
3364
3796
|
title: string;
|
|
@@ -3382,8 +3814,10 @@ export declare const SceneUpdate: {
|
|
|
3382
3814
|
description: string;
|
|
3383
3815
|
};
|
|
3384
3816
|
};
|
|
3817
|
+
required: string[];
|
|
3385
3818
|
};
|
|
3386
3819
|
};
|
|
3820
|
+
required: string[];
|
|
3387
3821
|
};
|
|
3388
3822
|
points: {
|
|
3389
3823
|
type: string;
|
|
@@ -3405,6 +3839,7 @@ export declare const SceneUpdate: {
|
|
|
3405
3839
|
description: string;
|
|
3406
3840
|
};
|
|
3407
3841
|
};
|
|
3842
|
+
required: string[];
|
|
3408
3843
|
};
|
|
3409
3844
|
description: string;
|
|
3410
3845
|
};
|
|
@@ -3430,6 +3865,7 @@ export declare const SceneUpdate: {
|
|
|
3430
3865
|
description: string;
|
|
3431
3866
|
};
|
|
3432
3867
|
};
|
|
3868
|
+
required: string[];
|
|
3433
3869
|
};
|
|
3434
3870
|
colors: {
|
|
3435
3871
|
type: string;
|
|
@@ -3455,6 +3891,7 @@ export declare const SceneUpdate: {
|
|
|
3455
3891
|
description: string;
|
|
3456
3892
|
};
|
|
3457
3893
|
};
|
|
3894
|
+
required: string[];
|
|
3458
3895
|
};
|
|
3459
3896
|
description: string;
|
|
3460
3897
|
};
|
|
@@ -3467,6 +3904,7 @@ export declare const SceneUpdate: {
|
|
|
3467
3904
|
description: string;
|
|
3468
3905
|
};
|
|
3469
3906
|
};
|
|
3907
|
+
required: string[];
|
|
3470
3908
|
};
|
|
3471
3909
|
description: string;
|
|
3472
3910
|
};
|
|
@@ -3500,6 +3938,7 @@ export declare const SceneUpdate: {
|
|
|
3500
3938
|
description: string;
|
|
3501
3939
|
};
|
|
3502
3940
|
};
|
|
3941
|
+
required: string[];
|
|
3503
3942
|
};
|
|
3504
3943
|
orientation: {
|
|
3505
3944
|
title: string;
|
|
@@ -3523,8 +3962,10 @@ export declare const SceneUpdate: {
|
|
|
3523
3962
|
description: string;
|
|
3524
3963
|
};
|
|
3525
3964
|
};
|
|
3965
|
+
required: string[];
|
|
3526
3966
|
};
|
|
3527
3967
|
};
|
|
3968
|
+
required: string[];
|
|
3528
3969
|
};
|
|
3529
3970
|
billboard: {
|
|
3530
3971
|
type: string;
|
|
@@ -3560,12 +4001,14 @@ export declare const SceneUpdate: {
|
|
|
3560
4001
|
description: string;
|
|
3561
4002
|
};
|
|
3562
4003
|
};
|
|
4004
|
+
required: string[];
|
|
3563
4005
|
};
|
|
3564
4006
|
text: {
|
|
3565
4007
|
type: string;
|
|
3566
4008
|
description: string;
|
|
3567
4009
|
};
|
|
3568
4010
|
};
|
|
4011
|
+
required: string[];
|
|
3569
4012
|
};
|
|
3570
4013
|
description: string;
|
|
3571
4014
|
};
|
|
@@ -3599,6 +4042,7 @@ export declare const SceneUpdate: {
|
|
|
3599
4042
|
description: string;
|
|
3600
4043
|
};
|
|
3601
4044
|
};
|
|
4045
|
+
required: string[];
|
|
3602
4046
|
};
|
|
3603
4047
|
orientation: {
|
|
3604
4048
|
title: string;
|
|
@@ -3622,8 +4066,10 @@ export declare const SceneUpdate: {
|
|
|
3622
4066
|
description: string;
|
|
3623
4067
|
};
|
|
3624
4068
|
};
|
|
4069
|
+
required: string[];
|
|
3625
4070
|
};
|
|
3626
4071
|
};
|
|
4072
|
+
required: string[];
|
|
3627
4073
|
};
|
|
3628
4074
|
scale: {
|
|
3629
4075
|
title: string;
|
|
@@ -3643,6 +4089,7 @@ export declare const SceneUpdate: {
|
|
|
3643
4089
|
description: string;
|
|
3644
4090
|
};
|
|
3645
4091
|
};
|
|
4092
|
+
required: string[];
|
|
3646
4093
|
};
|
|
3647
4094
|
color: {
|
|
3648
4095
|
title: string;
|
|
@@ -3666,6 +4113,7 @@ export declare const SceneUpdate: {
|
|
|
3666
4113
|
description: string;
|
|
3667
4114
|
};
|
|
3668
4115
|
};
|
|
4116
|
+
required: string[];
|
|
3669
4117
|
};
|
|
3670
4118
|
override_color: {
|
|
3671
4119
|
type: string;
|
|
@@ -3685,14 +4133,17 @@ export declare const SceneUpdate: {
|
|
|
3685
4133
|
description: string;
|
|
3686
4134
|
};
|
|
3687
4135
|
};
|
|
4136
|
+
required: string[];
|
|
3688
4137
|
};
|
|
3689
4138
|
description: string;
|
|
3690
4139
|
};
|
|
3691
4140
|
};
|
|
4141
|
+
required: string[];
|
|
3692
4142
|
};
|
|
3693
4143
|
description: string;
|
|
3694
4144
|
};
|
|
3695
4145
|
};
|
|
4146
|
+
required: string[];
|
|
3696
4147
|
};
|
|
3697
4148
|
export declare const ModelPrimitive: {
|
|
3698
4149
|
title: string;
|
|
@@ -3723,6 +4174,7 @@ export declare const ModelPrimitive: {
|
|
|
3723
4174
|
description: string;
|
|
3724
4175
|
};
|
|
3725
4176
|
};
|
|
4177
|
+
required: string[];
|
|
3726
4178
|
};
|
|
3727
4179
|
orientation: {
|
|
3728
4180
|
title: string;
|
|
@@ -3746,8 +4198,10 @@ export declare const ModelPrimitive: {
|
|
|
3746
4198
|
description: string;
|
|
3747
4199
|
};
|
|
3748
4200
|
};
|
|
4201
|
+
required: string[];
|
|
3749
4202
|
};
|
|
3750
4203
|
};
|
|
4204
|
+
required: string[];
|
|
3751
4205
|
};
|
|
3752
4206
|
scale: {
|
|
3753
4207
|
title: string;
|
|
@@ -3767,6 +4221,7 @@ export declare const ModelPrimitive: {
|
|
|
3767
4221
|
description: string;
|
|
3768
4222
|
};
|
|
3769
4223
|
};
|
|
4224
|
+
required: string[];
|
|
3770
4225
|
};
|
|
3771
4226
|
color: {
|
|
3772
4227
|
title: string;
|
|
@@ -3790,6 +4245,7 @@ export declare const ModelPrimitive: {
|
|
|
3790
4245
|
description: string;
|
|
3791
4246
|
};
|
|
3792
4247
|
};
|
|
4248
|
+
required: string[];
|
|
3793
4249
|
};
|
|
3794
4250
|
override_color: {
|
|
3795
4251
|
type: string;
|
|
@@ -3809,6 +4265,7 @@ export declare const ModelPrimitive: {
|
|
|
3809
4265
|
description: string;
|
|
3810
4266
|
};
|
|
3811
4267
|
};
|
|
4268
|
+
required: string[];
|
|
3812
4269
|
};
|
|
3813
4270
|
export declare const PackedElementField: {
|
|
3814
4271
|
title: string;
|
|
@@ -3835,6 +4292,7 @@ export declare const PackedElementField: {
|
|
|
3835
4292
|
}[];
|
|
3836
4293
|
};
|
|
3837
4294
|
};
|
|
4295
|
+
required: string[];
|
|
3838
4296
|
};
|
|
3839
4297
|
export declare const Point2: {
|
|
3840
4298
|
title: string;
|
|
@@ -3851,6 +4309,7 @@ export declare const Point2: {
|
|
|
3851
4309
|
description: string;
|
|
3852
4310
|
};
|
|
3853
4311
|
};
|
|
4312
|
+
required: string[];
|
|
3854
4313
|
};
|
|
3855
4314
|
export declare const Point3: {
|
|
3856
4315
|
title: string;
|
|
@@ -3871,6 +4330,56 @@ export declare const Point3: {
|
|
|
3871
4330
|
description: string;
|
|
3872
4331
|
};
|
|
3873
4332
|
};
|
|
4333
|
+
required: string[];
|
|
4334
|
+
};
|
|
4335
|
+
export declare const Point3InFrame: {
|
|
4336
|
+
title: string;
|
|
4337
|
+
description: string;
|
|
4338
|
+
$comment: string;
|
|
4339
|
+
type: string;
|
|
4340
|
+
properties: {
|
|
4341
|
+
timestamp: {
|
|
4342
|
+
type: string;
|
|
4343
|
+
title: string;
|
|
4344
|
+
properties: {
|
|
4345
|
+
sec: {
|
|
4346
|
+
type: string;
|
|
4347
|
+
minimum: number;
|
|
4348
|
+
};
|
|
4349
|
+
nsec: {
|
|
4350
|
+
type: string;
|
|
4351
|
+
minimum: number;
|
|
4352
|
+
maximum: number;
|
|
4353
|
+
};
|
|
4354
|
+
};
|
|
4355
|
+
description: string;
|
|
4356
|
+
};
|
|
4357
|
+
frame_id: {
|
|
4358
|
+
type: string;
|
|
4359
|
+
description: string;
|
|
4360
|
+
};
|
|
4361
|
+
point: {
|
|
4362
|
+
title: string;
|
|
4363
|
+
description: string;
|
|
4364
|
+
type: string;
|
|
4365
|
+
properties: {
|
|
4366
|
+
x: {
|
|
4367
|
+
type: string;
|
|
4368
|
+
description: string;
|
|
4369
|
+
};
|
|
4370
|
+
y: {
|
|
4371
|
+
type: string;
|
|
4372
|
+
description: string;
|
|
4373
|
+
};
|
|
4374
|
+
z: {
|
|
4375
|
+
type: string;
|
|
4376
|
+
description: string;
|
|
4377
|
+
};
|
|
4378
|
+
};
|
|
4379
|
+
required: string[];
|
|
4380
|
+
};
|
|
4381
|
+
};
|
|
4382
|
+
required: string[];
|
|
3874
4383
|
};
|
|
3875
4384
|
export declare const PointCloud: {
|
|
3876
4385
|
title: string;
|
|
@@ -3921,6 +4430,7 @@ export declare const PointCloud: {
|
|
|
3921
4430
|
description: string;
|
|
3922
4431
|
};
|
|
3923
4432
|
};
|
|
4433
|
+
required: string[];
|
|
3924
4434
|
};
|
|
3925
4435
|
orientation: {
|
|
3926
4436
|
title: string;
|
|
@@ -3944,8 +4454,10 @@ export declare const PointCloud: {
|
|
|
3944
4454
|
description: string;
|
|
3945
4455
|
};
|
|
3946
4456
|
};
|
|
4457
|
+
required: string[];
|
|
3947
4458
|
};
|
|
3948
4459
|
};
|
|
4460
|
+
required: string[];
|
|
3949
4461
|
};
|
|
3950
4462
|
point_stride: {
|
|
3951
4463
|
type: string;
|
|
@@ -3978,6 +4490,7 @@ export declare const PointCloud: {
|
|
|
3978
4490
|
}[];
|
|
3979
4491
|
};
|
|
3980
4492
|
};
|
|
4493
|
+
required: string[];
|
|
3981
4494
|
};
|
|
3982
4495
|
description: string;
|
|
3983
4496
|
};
|
|
@@ -3987,6 +4500,7 @@ export declare const PointCloud: {
|
|
|
3987
4500
|
description: string;
|
|
3988
4501
|
};
|
|
3989
4502
|
};
|
|
4503
|
+
required: string[];
|
|
3990
4504
|
};
|
|
3991
4505
|
export declare const PointsAnnotation: {
|
|
3992
4506
|
title: string;
|
|
@@ -4035,6 +4549,7 @@ export declare const PointsAnnotation: {
|
|
|
4035
4549
|
description: string;
|
|
4036
4550
|
};
|
|
4037
4551
|
};
|
|
4552
|
+
required: string[];
|
|
4038
4553
|
};
|
|
4039
4554
|
description: string;
|
|
4040
4555
|
};
|
|
@@ -4060,6 +4575,7 @@ export declare const PointsAnnotation: {
|
|
|
4060
4575
|
description: string;
|
|
4061
4576
|
};
|
|
4062
4577
|
};
|
|
4578
|
+
required: string[];
|
|
4063
4579
|
};
|
|
4064
4580
|
outline_colors: {
|
|
4065
4581
|
type: string;
|
|
@@ -4085,6 +4601,7 @@ export declare const PointsAnnotation: {
|
|
|
4085
4601
|
description: string;
|
|
4086
4602
|
};
|
|
4087
4603
|
};
|
|
4604
|
+
required: string[];
|
|
4088
4605
|
};
|
|
4089
4606
|
description: string;
|
|
4090
4607
|
};
|
|
@@ -4110,12 +4627,14 @@ export declare const PointsAnnotation: {
|
|
|
4110
4627
|
description: string;
|
|
4111
4628
|
};
|
|
4112
4629
|
};
|
|
4630
|
+
required: string[];
|
|
4113
4631
|
};
|
|
4114
4632
|
thickness: {
|
|
4115
4633
|
type: string;
|
|
4116
4634
|
description: string;
|
|
4117
4635
|
};
|
|
4118
4636
|
};
|
|
4637
|
+
required: string[];
|
|
4119
4638
|
};
|
|
4120
4639
|
export declare const Pose: {
|
|
4121
4640
|
title: string;
|
|
@@ -4141,6 +4660,7 @@ export declare const Pose: {
|
|
|
4141
4660
|
description: string;
|
|
4142
4661
|
};
|
|
4143
4662
|
};
|
|
4663
|
+
required: string[];
|
|
4144
4664
|
};
|
|
4145
4665
|
orientation: {
|
|
4146
4666
|
title: string;
|
|
@@ -4164,8 +4684,10 @@ export declare const Pose: {
|
|
|
4164
4684
|
description: string;
|
|
4165
4685
|
};
|
|
4166
4686
|
};
|
|
4687
|
+
required: string[];
|
|
4167
4688
|
};
|
|
4168
4689
|
};
|
|
4690
|
+
required: string[];
|
|
4169
4691
|
};
|
|
4170
4692
|
export declare const PoseInFrame: {
|
|
4171
4693
|
title: string;
|
|
@@ -4216,6 +4738,7 @@ export declare const PoseInFrame: {
|
|
|
4216
4738
|
description: string;
|
|
4217
4739
|
};
|
|
4218
4740
|
};
|
|
4741
|
+
required: string[];
|
|
4219
4742
|
};
|
|
4220
4743
|
orientation: {
|
|
4221
4744
|
title: string;
|
|
@@ -4239,10 +4762,13 @@ export declare const PoseInFrame: {
|
|
|
4239
4762
|
description: string;
|
|
4240
4763
|
};
|
|
4241
4764
|
};
|
|
4765
|
+
required: string[];
|
|
4242
4766
|
};
|
|
4243
4767
|
};
|
|
4768
|
+
required: string[];
|
|
4244
4769
|
};
|
|
4245
4770
|
};
|
|
4771
|
+
required: string[];
|
|
4246
4772
|
};
|
|
4247
4773
|
export declare const PosesInFrame: {
|
|
4248
4774
|
title: string;
|
|
@@ -4295,6 +4821,7 @@ export declare const PosesInFrame: {
|
|
|
4295
4821
|
description: string;
|
|
4296
4822
|
};
|
|
4297
4823
|
};
|
|
4824
|
+
required: string[];
|
|
4298
4825
|
};
|
|
4299
4826
|
orientation: {
|
|
4300
4827
|
title: string;
|
|
@@ -4318,12 +4845,15 @@ export declare const PosesInFrame: {
|
|
|
4318
4845
|
description: string;
|
|
4319
4846
|
};
|
|
4320
4847
|
};
|
|
4848
|
+
required: string[];
|
|
4321
4849
|
};
|
|
4322
4850
|
};
|
|
4851
|
+
required: string[];
|
|
4323
4852
|
};
|
|
4324
4853
|
description: string;
|
|
4325
4854
|
};
|
|
4326
4855
|
};
|
|
4856
|
+
required: string[];
|
|
4327
4857
|
};
|
|
4328
4858
|
export declare const Quaternion: {
|
|
4329
4859
|
title: string;
|
|
@@ -4348,6 +4878,7 @@ export declare const Quaternion: {
|
|
|
4348
4878
|
description: string;
|
|
4349
4879
|
};
|
|
4350
4880
|
};
|
|
4881
|
+
required: string[];
|
|
4351
4882
|
};
|
|
4352
4883
|
export declare const RawAudio: {
|
|
4353
4884
|
title: string;
|
|
@@ -4391,6 +4922,7 @@ export declare const RawAudio: {
|
|
|
4391
4922
|
description: string;
|
|
4392
4923
|
};
|
|
4393
4924
|
};
|
|
4925
|
+
required: string[];
|
|
4394
4926
|
};
|
|
4395
4927
|
export declare const RawImage: {
|
|
4396
4928
|
title: string;
|
|
@@ -4443,6 +4975,7 @@ export declare const RawImage: {
|
|
|
4443
4975
|
description: string;
|
|
4444
4976
|
};
|
|
4445
4977
|
};
|
|
4978
|
+
required: string[];
|
|
4446
4979
|
};
|
|
4447
4980
|
export declare const SpherePrimitive: {
|
|
4448
4981
|
title: string;
|
|
@@ -4473,6 +5006,7 @@ export declare const SpherePrimitive: {
|
|
|
4473
5006
|
description: string;
|
|
4474
5007
|
};
|
|
4475
5008
|
};
|
|
5009
|
+
required: string[];
|
|
4476
5010
|
};
|
|
4477
5011
|
orientation: {
|
|
4478
5012
|
title: string;
|
|
@@ -4496,8 +5030,10 @@ export declare const SpherePrimitive: {
|
|
|
4496
5030
|
description: string;
|
|
4497
5031
|
};
|
|
4498
5032
|
};
|
|
5033
|
+
required: string[];
|
|
4499
5034
|
};
|
|
4500
5035
|
};
|
|
5036
|
+
required: string[];
|
|
4501
5037
|
};
|
|
4502
5038
|
size: {
|
|
4503
5039
|
title: string;
|
|
@@ -4517,6 +5053,7 @@ export declare const SpherePrimitive: {
|
|
|
4517
5053
|
description: string;
|
|
4518
5054
|
};
|
|
4519
5055
|
};
|
|
5056
|
+
required: string[];
|
|
4520
5057
|
};
|
|
4521
5058
|
color: {
|
|
4522
5059
|
title: string;
|
|
@@ -4540,8 +5077,10 @@ export declare const SpherePrimitive: {
|
|
|
4540
5077
|
description: string;
|
|
4541
5078
|
};
|
|
4542
5079
|
};
|
|
5080
|
+
required: string[];
|
|
4543
5081
|
};
|
|
4544
5082
|
};
|
|
5083
|
+
required: string[];
|
|
4545
5084
|
};
|
|
4546
5085
|
export declare const TextAnnotation: {
|
|
4547
5086
|
title: string;
|
|
@@ -4579,6 +5118,7 @@ export declare const TextAnnotation: {
|
|
|
4579
5118
|
description: string;
|
|
4580
5119
|
};
|
|
4581
5120
|
};
|
|
5121
|
+
required: string[];
|
|
4582
5122
|
};
|
|
4583
5123
|
text: {
|
|
4584
5124
|
type: string;
|
|
@@ -4610,6 +5150,7 @@ export declare const TextAnnotation: {
|
|
|
4610
5150
|
description: string;
|
|
4611
5151
|
};
|
|
4612
5152
|
};
|
|
5153
|
+
required: string[];
|
|
4613
5154
|
};
|
|
4614
5155
|
background_color: {
|
|
4615
5156
|
title: string;
|
|
@@ -4633,8 +5174,10 @@ export declare const TextAnnotation: {
|
|
|
4633
5174
|
description: string;
|
|
4634
5175
|
};
|
|
4635
5176
|
};
|
|
5177
|
+
required: string[];
|
|
4636
5178
|
};
|
|
4637
5179
|
};
|
|
5180
|
+
required: string[];
|
|
4638
5181
|
};
|
|
4639
5182
|
export declare const TextPrimitive: {
|
|
4640
5183
|
title: string;
|
|
@@ -4665,6 +5208,7 @@ export declare const TextPrimitive: {
|
|
|
4665
5208
|
description: string;
|
|
4666
5209
|
};
|
|
4667
5210
|
};
|
|
5211
|
+
required: string[];
|
|
4668
5212
|
};
|
|
4669
5213
|
orientation: {
|
|
4670
5214
|
title: string;
|
|
@@ -4688,8 +5232,10 @@ export declare const TextPrimitive: {
|
|
|
4688
5232
|
description: string;
|
|
4689
5233
|
};
|
|
4690
5234
|
};
|
|
5235
|
+
required: string[];
|
|
4691
5236
|
};
|
|
4692
5237
|
};
|
|
5238
|
+
required: string[];
|
|
4693
5239
|
};
|
|
4694
5240
|
billboard: {
|
|
4695
5241
|
type: string;
|
|
@@ -4725,12 +5271,14 @@ export declare const TextPrimitive: {
|
|
|
4725
5271
|
description: string;
|
|
4726
5272
|
};
|
|
4727
5273
|
};
|
|
5274
|
+
required: string[];
|
|
4728
5275
|
};
|
|
4729
5276
|
text: {
|
|
4730
5277
|
type: string;
|
|
4731
5278
|
description: string;
|
|
4732
5279
|
};
|
|
4733
5280
|
};
|
|
5281
|
+
required: string[];
|
|
4734
5282
|
};
|
|
4735
5283
|
export declare const Timestamp: {
|
|
4736
5284
|
title: string;
|
|
@@ -4749,6 +5297,7 @@ export declare const Timestamp: {
|
|
|
4749
5297
|
description: string;
|
|
4750
5298
|
};
|
|
4751
5299
|
};
|
|
5300
|
+
required: string[];
|
|
4752
5301
|
};
|
|
4753
5302
|
export declare const TriangleListPrimitive: {
|
|
4754
5303
|
title: string;
|
|
@@ -4779,6 +5328,7 @@ export declare const TriangleListPrimitive: {
|
|
|
4779
5328
|
description: string;
|
|
4780
5329
|
};
|
|
4781
5330
|
};
|
|
5331
|
+
required: string[];
|
|
4782
5332
|
};
|
|
4783
5333
|
orientation: {
|
|
4784
5334
|
title: string;
|
|
@@ -4802,8 +5352,10 @@ export declare const TriangleListPrimitive: {
|
|
|
4802
5352
|
description: string;
|
|
4803
5353
|
};
|
|
4804
5354
|
};
|
|
5355
|
+
required: string[];
|
|
4805
5356
|
};
|
|
4806
5357
|
};
|
|
5358
|
+
required: string[];
|
|
4807
5359
|
};
|
|
4808
5360
|
points: {
|
|
4809
5361
|
type: string;
|
|
@@ -4825,6 +5377,7 @@ export declare const TriangleListPrimitive: {
|
|
|
4825
5377
|
description: string;
|
|
4826
5378
|
};
|
|
4827
5379
|
};
|
|
5380
|
+
required: string[];
|
|
4828
5381
|
};
|
|
4829
5382
|
description: string;
|
|
4830
5383
|
};
|
|
@@ -4850,6 +5403,7 @@ export declare const TriangleListPrimitive: {
|
|
|
4850
5403
|
description: string;
|
|
4851
5404
|
};
|
|
4852
5405
|
};
|
|
5406
|
+
required: string[];
|
|
4853
5407
|
};
|
|
4854
5408
|
colors: {
|
|
4855
5409
|
type: string;
|
|
@@ -4875,6 +5429,7 @@ export declare const TriangleListPrimitive: {
|
|
|
4875
5429
|
description: string;
|
|
4876
5430
|
};
|
|
4877
5431
|
};
|
|
5432
|
+
required: string[];
|
|
4878
5433
|
};
|
|
4879
5434
|
description: string;
|
|
4880
5435
|
};
|
|
@@ -4887,6 +5442,7 @@ export declare const TriangleListPrimitive: {
|
|
|
4887
5442
|
description: string;
|
|
4888
5443
|
};
|
|
4889
5444
|
};
|
|
5445
|
+
required: string[];
|
|
4890
5446
|
};
|
|
4891
5447
|
export declare const Vector2: {
|
|
4892
5448
|
title: string;
|
|
@@ -4903,6 +5459,7 @@ export declare const Vector2: {
|
|
|
4903
5459
|
description: string;
|
|
4904
5460
|
};
|
|
4905
5461
|
};
|
|
5462
|
+
required: string[];
|
|
4906
5463
|
};
|
|
4907
5464
|
export declare const Vector3: {
|
|
4908
5465
|
title: string;
|
|
@@ -4923,6 +5480,7 @@ export declare const Vector3: {
|
|
|
4923
5480
|
description: string;
|
|
4924
5481
|
};
|
|
4925
5482
|
};
|
|
5483
|
+
required: string[];
|
|
4926
5484
|
};
|
|
4927
5485
|
export declare const Time: {
|
|
4928
5486
|
title: string;
|
|
@@ -4941,5 +5499,6 @@ export declare const Time: {
|
|
|
4941
5499
|
description: string;
|
|
4942
5500
|
};
|
|
4943
5501
|
};
|
|
5502
|
+
required: string[];
|
|
4944
5503
|
};
|
|
4945
5504
|
//# sourceMappingURL=index.d.ts.map
|