@foxglove/schemas 0.7.1 → 0.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.
Files changed (119) hide show
  1. package/.github/workflows/ci.yml +51 -1
  2. package/.vscode/settings.json +10 -1
  3. package/Linux.flatc.binary.clang++-12.zip +0 -0
  4. package/README.md +5 -25
  5. package/flatc +0 -0
  6. package/internal/generateFlatbufferSchema.d.ts +6 -0
  7. package/internal/generateFlatbufferSchema.d.ts.map +1 -0
  8. package/internal/generateFlatbufferSchema.js +172 -0
  9. package/internal/generateFlatbufferSchema.js.map +1 -0
  10. package/internal/generateFlatbufferSchema.test.d.ts +2 -0
  11. package/internal/generateFlatbufferSchema.test.d.ts.map +1 -0
  12. package/internal/generateFlatbufferSchema.test.js +120 -0
  13. package/internal/generateFlatbufferSchema.test.js.map +1 -0
  14. package/internal/generateFlatbufferSchema.test.ts +118 -0
  15. package/internal/generateFlatbufferSchema.ts +189 -0
  16. package/internal/generateProto.test.js +1 -1
  17. package/internal/generateProto.test.js.map +1 -1
  18. package/internal/generateProto.test.ts +1 -1
  19. package/internal/schemas.d.ts.map +1 -1
  20. package/internal/schemas.js +21 -11
  21. package/internal/schemas.js.map +1 -1
  22. package/internal/schemas.test.js +1 -1
  23. package/internal/schemas.test.js.map +1 -1
  24. package/internal/schemas.test.ts +1 -1
  25. package/internal/schemas.ts +23 -11
  26. package/internal/testFixtures.d.ts.map +1 -1
  27. package/internal/testFixtures.js +11 -1
  28. package/internal/testFixtures.js.map +1 -1
  29. package/internal/testFixtures.ts +12 -1
  30. package/internal/types.d.ts +2 -1
  31. package/internal/types.d.ts.map +1 -1
  32. package/internal/types.ts +2 -1
  33. package/package.json +1 -1
  34. package/python/Makefile +39 -0
  35. package/python/Pipfile +17 -0
  36. package/python/Pipfile.lock +329 -0
  37. package/python/foxglove-schemas-protobuf/README.md +23 -0
  38. package/python/foxglove-schemas-protobuf/foxglove_schemas_protobuf/__init__.py +0 -0
  39. package/python/foxglove-schemas-protobuf/foxglove_schemas_protobuf/py.typed +0 -0
  40. package/python/foxglove-schemas-protobuf/pyproject.toml +11 -0
  41. package/python/foxglove-schemas-protobuf/setup.cfg +21 -0
  42. package/python/foxglove-schemas-protobuf/tests/test_schemas.py +5 -0
  43. package/schemas/README.md +8 -2
  44. package/schemas/flatbuffer/ArrowPrimitive.fbs +29 -0
  45. package/schemas/flatbuffer/ByteVector.fbs +8 -0
  46. package/schemas/flatbuffer/CameraCalibration.fbs +78 -0
  47. package/schemas/flatbuffer/CircleAnnotation.fbs +30 -0
  48. package/schemas/flatbuffer/Color.fbs +20 -0
  49. package/schemas/flatbuffer/CompressedImage.fbs +24 -0
  50. package/schemas/flatbuffer/CubePrimitive.fbs +21 -0
  51. package/schemas/flatbuffer/CylinderPrimitive.fbs +27 -0
  52. package/schemas/flatbuffer/Duration.fbs +10 -0
  53. package/schemas/flatbuffer/FrameTransform.fbs +27 -0
  54. package/schemas/flatbuffer/GeoJSON.fbs +11 -0
  55. package/schemas/flatbuffer/Grid.fbs +40 -0
  56. package/schemas/flatbuffer/ImageAnnotations.fbs +17 -0
  57. package/schemas/flatbuffer/KeyValuePair.fbs +14 -0
  58. package/schemas/flatbuffer/LaserScan.fbs +32 -0
  59. package/schemas/flatbuffer/LinePrimitive.fbs +49 -0
  60. package/schemas/flatbuffer/LocationFix.fbs +34 -0
  61. package/schemas/flatbuffer/Log.fbs +42 -0
  62. package/schemas/flatbuffer/ModelPrimitive.fbs +33 -0
  63. package/schemas/flatbuffer/PackedElementField.fbs +37 -0
  64. package/schemas/flatbuffer/Point2.fbs +14 -0
  65. package/schemas/flatbuffer/Point3.fbs +17 -0
  66. package/schemas/flatbuffer/PointCloud.fbs +30 -0
  67. package/schemas/flatbuffer/PointsAnnotation.fbs +45 -0
  68. package/schemas/flatbuffer/Pose.fbs +17 -0
  69. package/schemas/flatbuffer/PoseInFrame.fbs +20 -0
  70. package/schemas/flatbuffer/PosesInFrame.fbs +20 -0
  71. package/schemas/flatbuffer/Quaternion.fbs +20 -0
  72. package/schemas/flatbuffer/RawImage.fbs +33 -0
  73. package/schemas/flatbuffer/SceneEntity.fbs +62 -0
  74. package/schemas/flatbuffer/SceneEntityDeletion.fbs +27 -0
  75. package/schemas/flatbuffer/SceneUpdate.fbs +17 -0
  76. package/schemas/flatbuffer/SpherePrimitive.fbs +21 -0
  77. package/schemas/flatbuffer/TextPrimitive.fbs +29 -0
  78. package/schemas/flatbuffer/Time.fbs +9 -0
  79. package/schemas/flatbuffer/TriangleListPrimitive.fbs +29 -0
  80. package/schemas/flatbuffer/Vector2.fbs +14 -0
  81. package/schemas/flatbuffer/Vector3.fbs +17 -0
  82. package/schemas/jsonschema/CameraCalibration.json +2 -2
  83. package/schemas/jsonschema/CompressedImage.json +1 -1
  84. package/schemas/jsonschema/CubePrimitive.json +1 -1
  85. package/schemas/jsonschema/RawImage.json +1 -1
  86. package/schemas/jsonschema/SceneEntity.json +1 -1
  87. package/schemas/jsonschema/SceneUpdate.json +1 -1
  88. package/schemas/jsonschema/index.d.ts +4510 -35
  89. package/schemas/jsonschema/index.d.ts.map +1 -1
  90. package/schemas/jsonschema/index.js +7 -7
  91. package/schemas/jsonschema/index.js.map +1 -1
  92. package/schemas/jsonschema/index.ts +42 -42
  93. package/schemas/proto/foxglove/CameraCalibration.proto +3 -1
  94. package/schemas/proto/foxglove/CompressedImage.proto +2 -0
  95. package/schemas/proto/foxglove/CubePrimitive.proto +1 -1
  96. package/schemas/proto/foxglove/RawImage.proto +2 -0
  97. package/schemas/ros1/CameraCalibration.msg +3 -1
  98. package/schemas/ros1/CompressedImage.msg +2 -0
  99. package/schemas/ros1/CubePrimitive.msg +1 -1
  100. package/schemas/ros1/RawImage.msg +2 -0
  101. package/schemas/ros2/CameraCalibration.msg +3 -1
  102. package/schemas/ros2/CompressedImage.msg +2 -0
  103. package/schemas/ros2/CubePrimitive.msg +1 -1
  104. package/schemas/ros2/RawImage.msg +2 -0
  105. package/schemas/typescript/CameraCalibration.d.ts +6 -2
  106. package/schemas/typescript/CameraCalibration.d.ts.map +1 -1
  107. package/schemas/typescript/CameraCalibration.ts +6 -2
  108. package/schemas/typescript/CompressedImage.d.ts +5 -1
  109. package/schemas/typescript/CompressedImage.d.ts.map +1 -1
  110. package/schemas/typescript/CompressedImage.ts +5 -1
  111. package/schemas/typescript/CubePrimitive.d.ts +1 -1
  112. package/schemas/typescript/CubePrimitive.d.ts.map +1 -1
  113. package/schemas/typescript/CubePrimitive.ts +1 -1
  114. package/schemas/typescript/RawImage.d.ts +5 -1
  115. package/schemas/typescript/RawImage.d.ts.map +1 -1
  116. package/schemas/typescript/RawImage.ts +5 -1
  117. package/scripts/updateGeneratedFiles.js +14 -2
  118. package/scripts/updateGeneratedFiles.js.map +1 -1
  119. package/scripts/updateGeneratedFiles.ts +26 -2
@@ -1,36 +1,4511 @@
1
- export declare const ArrowPrimitive: unknown;
2
- export declare const CameraCalibration: unknown;
3
- export declare const CircleAnnotation: unknown;
4
- export declare const Color: unknown;
5
- export declare const CompressedImage: unknown;
6
- export declare const CylinderPrimitive: unknown;
7
- export declare const CubePrimitive: unknown;
8
- export declare const FrameTransform: unknown;
9
- export declare const GeoJSON: unknown;
10
- export declare const Grid: unknown;
11
- export declare const ImageAnnotations: unknown;
12
- export declare const KeyValuePair: unknown;
13
- export declare const LaserScan: unknown;
14
- export declare const LinePrimitive: unknown;
15
- export declare const LocationFix: unknown;
16
- export declare const Log: unknown;
17
- export declare const SceneEntityDeletion: unknown;
18
- export declare const SceneEntity: unknown;
19
- export declare const SceneUpdate: unknown;
20
- export declare const ModelPrimitive: unknown;
21
- export declare const PackedElementField: unknown;
22
- export declare const Point2: unknown;
23
- export declare const Point3: unknown;
24
- export declare const PointCloud: unknown;
25
- export declare const PointsAnnotation: unknown;
26
- export declare const Pose: unknown;
27
- export declare const PoseInFrame: unknown;
28
- export declare const PosesInFrame: unknown;
29
- export declare const Quaternion: unknown;
30
- export declare const RawImage: unknown;
31
- export declare const SpherePrimitive: unknown;
32
- export declare const TextPrimitive: unknown;
33
- export declare const TriangleListPrimitive: unknown;
34
- export declare const Vector2: unknown;
35
- export declare const Vector3: unknown;
1
+ export declare const ArrowPrimitive: {
2
+ title: string;
3
+ description: string;
4
+ $comment: string;
5
+ type: string;
6
+ properties: {
7
+ pose: {
8
+ title: string;
9
+ description: string;
10
+ type: string;
11
+ properties: {
12
+ position: {
13
+ title: string;
14
+ description: string;
15
+ type: string;
16
+ properties: {
17
+ x: {
18
+ type: string;
19
+ description: string;
20
+ };
21
+ y: {
22
+ type: string;
23
+ description: string;
24
+ };
25
+ z: {
26
+ type: string;
27
+ description: string;
28
+ };
29
+ };
30
+ };
31
+ orientation: {
32
+ title: string;
33
+ description: string;
34
+ type: string;
35
+ properties: {
36
+ x: {
37
+ type: string;
38
+ description: string;
39
+ };
40
+ y: {
41
+ type: string;
42
+ description: string;
43
+ };
44
+ z: {
45
+ type: string;
46
+ description: string;
47
+ };
48
+ w: {
49
+ type: string;
50
+ description: string;
51
+ };
52
+ };
53
+ };
54
+ };
55
+ };
56
+ shaft_length: {
57
+ type: string;
58
+ description: string;
59
+ };
60
+ shaft_diameter: {
61
+ type: string;
62
+ description: string;
63
+ };
64
+ head_length: {
65
+ type: string;
66
+ description: string;
67
+ };
68
+ head_diameter: {
69
+ type: string;
70
+ description: string;
71
+ };
72
+ color: {
73
+ title: string;
74
+ description: string;
75
+ type: string;
76
+ properties: {
77
+ r: {
78
+ type: string;
79
+ description: string;
80
+ };
81
+ g: {
82
+ type: string;
83
+ description: string;
84
+ };
85
+ b: {
86
+ type: string;
87
+ description: string;
88
+ };
89
+ a: {
90
+ type: string;
91
+ description: string;
92
+ };
93
+ };
94
+ };
95
+ };
96
+ };
97
+ export declare const CameraCalibration: {
98
+ title: string;
99
+ description: string;
100
+ $comment: string;
101
+ type: string;
102
+ properties: {
103
+ timestamp: {
104
+ type: string;
105
+ title: string;
106
+ properties: {
107
+ sec: {
108
+ type: string;
109
+ minimum: number;
110
+ };
111
+ nsec: {
112
+ type: string;
113
+ minimum: number;
114
+ maximum: number;
115
+ };
116
+ };
117
+ description: string;
118
+ };
119
+ frame_id: {
120
+ type: string;
121
+ description: string;
122
+ };
123
+ width: {
124
+ type: string;
125
+ minimum: number;
126
+ description: string;
127
+ };
128
+ height: {
129
+ type: string;
130
+ minimum: number;
131
+ description: string;
132
+ };
133
+ distortion_model: {
134
+ type: string;
135
+ description: string;
136
+ };
137
+ D: {
138
+ type: string;
139
+ items: {
140
+ type: string;
141
+ };
142
+ description: string;
143
+ };
144
+ K: {
145
+ type: string;
146
+ items: {
147
+ type: string;
148
+ };
149
+ minItems: number;
150
+ maxItems: number;
151
+ description: string;
152
+ };
153
+ R: {
154
+ type: string;
155
+ items: {
156
+ type: string;
157
+ };
158
+ minItems: number;
159
+ maxItems: number;
160
+ description: string;
161
+ };
162
+ P: {
163
+ type: string;
164
+ items: {
165
+ type: string;
166
+ };
167
+ minItems: number;
168
+ maxItems: number;
169
+ description: string;
170
+ };
171
+ };
172
+ };
173
+ export declare const CircleAnnotation: {
174
+ title: string;
175
+ description: string;
176
+ $comment: string;
177
+ type: string;
178
+ properties: {
179
+ timestamp: {
180
+ type: string;
181
+ title: string;
182
+ properties: {
183
+ sec: {
184
+ type: string;
185
+ minimum: number;
186
+ };
187
+ nsec: {
188
+ type: string;
189
+ minimum: number;
190
+ maximum: number;
191
+ };
192
+ };
193
+ description: string;
194
+ };
195
+ position: {
196
+ title: string;
197
+ description: string;
198
+ type: string;
199
+ properties: {
200
+ x: {
201
+ type: string;
202
+ description: string;
203
+ };
204
+ y: {
205
+ type: string;
206
+ description: string;
207
+ };
208
+ };
209
+ };
210
+ diameter: {
211
+ type: string;
212
+ description: string;
213
+ };
214
+ thickness: {
215
+ type: string;
216
+ description: string;
217
+ };
218
+ fill_color: {
219
+ title: string;
220
+ description: string;
221
+ type: string;
222
+ properties: {
223
+ r: {
224
+ type: string;
225
+ description: string;
226
+ };
227
+ g: {
228
+ type: string;
229
+ description: string;
230
+ };
231
+ b: {
232
+ type: string;
233
+ description: string;
234
+ };
235
+ a: {
236
+ type: string;
237
+ description: string;
238
+ };
239
+ };
240
+ };
241
+ outline_color: {
242
+ title: string;
243
+ description: string;
244
+ type: string;
245
+ properties: {
246
+ r: {
247
+ type: string;
248
+ description: string;
249
+ };
250
+ g: {
251
+ type: string;
252
+ description: string;
253
+ };
254
+ b: {
255
+ type: string;
256
+ description: string;
257
+ };
258
+ a: {
259
+ type: string;
260
+ description: string;
261
+ };
262
+ };
263
+ };
264
+ };
265
+ };
266
+ export declare const Color: {
267
+ title: string;
268
+ description: string;
269
+ $comment: string;
270
+ type: string;
271
+ properties: {
272
+ r: {
273
+ type: string;
274
+ description: string;
275
+ };
276
+ g: {
277
+ type: string;
278
+ description: string;
279
+ };
280
+ b: {
281
+ type: string;
282
+ description: string;
283
+ };
284
+ a: {
285
+ type: string;
286
+ description: string;
287
+ };
288
+ };
289
+ };
290
+ export declare const CompressedImage: {
291
+ title: string;
292
+ description: string;
293
+ $comment: string;
294
+ type: string;
295
+ properties: {
296
+ timestamp: {
297
+ type: string;
298
+ title: string;
299
+ properties: {
300
+ sec: {
301
+ type: string;
302
+ minimum: number;
303
+ };
304
+ nsec: {
305
+ type: string;
306
+ minimum: number;
307
+ maximum: number;
308
+ };
309
+ };
310
+ description: string;
311
+ };
312
+ frame_id: {
313
+ type: string;
314
+ description: string;
315
+ };
316
+ data: {
317
+ type: string;
318
+ contentEncoding: string;
319
+ description: string;
320
+ };
321
+ format: {
322
+ type: string;
323
+ description: string;
324
+ };
325
+ };
326
+ };
327
+ export declare const CylinderPrimitive: {
328
+ title: string;
329
+ description: string;
330
+ $comment: string;
331
+ type: string;
332
+ properties: {
333
+ pose: {
334
+ title: string;
335
+ description: string;
336
+ type: string;
337
+ properties: {
338
+ position: {
339
+ title: string;
340
+ description: string;
341
+ type: string;
342
+ properties: {
343
+ x: {
344
+ type: string;
345
+ description: string;
346
+ };
347
+ y: {
348
+ type: string;
349
+ description: string;
350
+ };
351
+ z: {
352
+ type: string;
353
+ description: string;
354
+ };
355
+ };
356
+ };
357
+ orientation: {
358
+ title: string;
359
+ description: string;
360
+ type: string;
361
+ properties: {
362
+ x: {
363
+ type: string;
364
+ description: string;
365
+ };
366
+ y: {
367
+ type: string;
368
+ description: string;
369
+ };
370
+ z: {
371
+ type: string;
372
+ description: string;
373
+ };
374
+ w: {
375
+ type: string;
376
+ description: string;
377
+ };
378
+ };
379
+ };
380
+ };
381
+ };
382
+ size: {
383
+ title: string;
384
+ description: string;
385
+ type: string;
386
+ properties: {
387
+ x: {
388
+ type: string;
389
+ description: string;
390
+ };
391
+ y: {
392
+ type: string;
393
+ description: string;
394
+ };
395
+ z: {
396
+ type: string;
397
+ description: string;
398
+ };
399
+ };
400
+ };
401
+ bottom_scale: {
402
+ type: string;
403
+ description: string;
404
+ };
405
+ top_scale: {
406
+ type: string;
407
+ description: string;
408
+ };
409
+ color: {
410
+ title: string;
411
+ description: string;
412
+ type: string;
413
+ properties: {
414
+ r: {
415
+ type: string;
416
+ description: string;
417
+ };
418
+ g: {
419
+ type: string;
420
+ description: string;
421
+ };
422
+ b: {
423
+ type: string;
424
+ description: string;
425
+ };
426
+ a: {
427
+ type: string;
428
+ description: string;
429
+ };
430
+ };
431
+ };
432
+ };
433
+ };
434
+ export declare const CubePrimitive: {
435
+ title: string;
436
+ description: string;
437
+ $comment: string;
438
+ type: string;
439
+ properties: {
440
+ pose: {
441
+ title: string;
442
+ description: string;
443
+ type: string;
444
+ properties: {
445
+ position: {
446
+ title: string;
447
+ description: string;
448
+ type: string;
449
+ properties: {
450
+ x: {
451
+ type: string;
452
+ description: string;
453
+ };
454
+ y: {
455
+ type: string;
456
+ description: string;
457
+ };
458
+ z: {
459
+ type: string;
460
+ description: string;
461
+ };
462
+ };
463
+ };
464
+ orientation: {
465
+ title: string;
466
+ description: string;
467
+ type: string;
468
+ properties: {
469
+ x: {
470
+ type: string;
471
+ description: string;
472
+ };
473
+ y: {
474
+ type: string;
475
+ description: string;
476
+ };
477
+ z: {
478
+ type: string;
479
+ description: string;
480
+ };
481
+ w: {
482
+ type: string;
483
+ description: string;
484
+ };
485
+ };
486
+ };
487
+ };
488
+ };
489
+ size: {
490
+ title: string;
491
+ description: string;
492
+ type: string;
493
+ properties: {
494
+ x: {
495
+ type: string;
496
+ description: string;
497
+ };
498
+ y: {
499
+ type: string;
500
+ description: string;
501
+ };
502
+ z: {
503
+ type: string;
504
+ description: string;
505
+ };
506
+ };
507
+ };
508
+ color: {
509
+ title: string;
510
+ description: string;
511
+ type: string;
512
+ properties: {
513
+ r: {
514
+ type: string;
515
+ description: string;
516
+ };
517
+ g: {
518
+ type: string;
519
+ description: string;
520
+ };
521
+ b: {
522
+ type: string;
523
+ description: string;
524
+ };
525
+ a: {
526
+ type: string;
527
+ description: string;
528
+ };
529
+ };
530
+ };
531
+ };
532
+ };
533
+ export declare const FrameTransform: {
534
+ title: string;
535
+ description: string;
536
+ $comment: string;
537
+ type: string;
538
+ properties: {
539
+ timestamp: {
540
+ type: string;
541
+ title: string;
542
+ properties: {
543
+ sec: {
544
+ type: string;
545
+ minimum: number;
546
+ };
547
+ nsec: {
548
+ type: string;
549
+ minimum: number;
550
+ maximum: number;
551
+ };
552
+ };
553
+ description: string;
554
+ };
555
+ parent_frame_id: {
556
+ type: string;
557
+ description: string;
558
+ };
559
+ child_frame_id: {
560
+ type: string;
561
+ description: string;
562
+ };
563
+ translation: {
564
+ title: string;
565
+ description: string;
566
+ type: string;
567
+ properties: {
568
+ x: {
569
+ type: string;
570
+ description: string;
571
+ };
572
+ y: {
573
+ type: string;
574
+ description: string;
575
+ };
576
+ z: {
577
+ type: string;
578
+ description: string;
579
+ };
580
+ };
581
+ };
582
+ rotation: {
583
+ title: string;
584
+ description: string;
585
+ type: string;
586
+ properties: {
587
+ x: {
588
+ type: string;
589
+ description: string;
590
+ };
591
+ y: {
592
+ type: string;
593
+ description: string;
594
+ };
595
+ z: {
596
+ type: string;
597
+ description: string;
598
+ };
599
+ w: {
600
+ type: string;
601
+ description: string;
602
+ };
603
+ };
604
+ };
605
+ };
606
+ };
607
+ export declare const GeoJSON: {
608
+ title: string;
609
+ description: string;
610
+ $comment: string;
611
+ type: string;
612
+ properties: {
613
+ geojson: {
614
+ type: string;
615
+ description: string;
616
+ };
617
+ };
618
+ };
619
+ export declare const Grid: {
620
+ title: string;
621
+ description: string;
622
+ $comment: string;
623
+ type: string;
624
+ properties: {
625
+ timestamp: {
626
+ type: string;
627
+ title: string;
628
+ properties: {
629
+ sec: {
630
+ type: string;
631
+ minimum: number;
632
+ };
633
+ nsec: {
634
+ type: string;
635
+ minimum: number;
636
+ maximum: number;
637
+ };
638
+ };
639
+ description: string;
640
+ };
641
+ frame_id: {
642
+ type: string;
643
+ description: string;
644
+ };
645
+ pose: {
646
+ title: string;
647
+ description: string;
648
+ type: string;
649
+ properties: {
650
+ position: {
651
+ title: string;
652
+ description: string;
653
+ type: string;
654
+ properties: {
655
+ x: {
656
+ type: string;
657
+ description: string;
658
+ };
659
+ y: {
660
+ type: string;
661
+ description: string;
662
+ };
663
+ z: {
664
+ type: string;
665
+ description: string;
666
+ };
667
+ };
668
+ };
669
+ orientation: {
670
+ title: string;
671
+ description: string;
672
+ type: string;
673
+ properties: {
674
+ x: {
675
+ type: string;
676
+ description: string;
677
+ };
678
+ y: {
679
+ type: string;
680
+ description: string;
681
+ };
682
+ z: {
683
+ type: string;
684
+ description: string;
685
+ };
686
+ w: {
687
+ type: string;
688
+ description: string;
689
+ };
690
+ };
691
+ };
692
+ };
693
+ };
694
+ column_count: {
695
+ type: string;
696
+ minimum: number;
697
+ description: string;
698
+ };
699
+ cell_size: {
700
+ title: string;
701
+ description: string;
702
+ type: string;
703
+ properties: {
704
+ x: {
705
+ type: string;
706
+ description: string;
707
+ };
708
+ y: {
709
+ type: string;
710
+ description: string;
711
+ };
712
+ };
713
+ };
714
+ row_stride: {
715
+ type: string;
716
+ minimum: number;
717
+ description: string;
718
+ };
719
+ cell_stride: {
720
+ type: string;
721
+ minimum: number;
722
+ description: string;
723
+ };
724
+ fields: {
725
+ type: string;
726
+ items: {
727
+ title: string;
728
+ description: string;
729
+ type: string;
730
+ properties: {
731
+ name: {
732
+ type: string;
733
+ description: string;
734
+ };
735
+ offset: {
736
+ type: string;
737
+ minimum: number;
738
+ description: string;
739
+ };
740
+ type: {
741
+ title: string;
742
+ description: string;
743
+ oneOf: {
744
+ title: string;
745
+ const: number;
746
+ }[];
747
+ };
748
+ };
749
+ };
750
+ description: string;
751
+ };
752
+ data: {
753
+ type: string;
754
+ contentEncoding: string;
755
+ description: string;
756
+ };
757
+ };
758
+ };
759
+ export declare const ImageAnnotations: {
760
+ title: string;
761
+ description: string;
762
+ $comment: string;
763
+ type: string;
764
+ properties: {
765
+ circles: {
766
+ type: string;
767
+ items: {
768
+ title: string;
769
+ description: string;
770
+ type: string;
771
+ properties: {
772
+ timestamp: {
773
+ type: string;
774
+ title: string;
775
+ properties: {
776
+ sec: {
777
+ type: string;
778
+ minimum: number;
779
+ };
780
+ nsec: {
781
+ type: string;
782
+ minimum: number;
783
+ maximum: number;
784
+ };
785
+ };
786
+ description: string;
787
+ };
788
+ position: {
789
+ title: string;
790
+ description: string;
791
+ type: string;
792
+ properties: {
793
+ x: {
794
+ type: string;
795
+ description: string;
796
+ };
797
+ y: {
798
+ type: string;
799
+ description: string;
800
+ };
801
+ };
802
+ };
803
+ diameter: {
804
+ type: string;
805
+ description: string;
806
+ };
807
+ thickness: {
808
+ type: string;
809
+ description: string;
810
+ };
811
+ fill_color: {
812
+ title: string;
813
+ description: string;
814
+ type: string;
815
+ properties: {
816
+ r: {
817
+ type: string;
818
+ description: string;
819
+ };
820
+ g: {
821
+ type: string;
822
+ description: string;
823
+ };
824
+ b: {
825
+ type: string;
826
+ description: string;
827
+ };
828
+ a: {
829
+ type: string;
830
+ description: string;
831
+ };
832
+ };
833
+ };
834
+ outline_color: {
835
+ title: string;
836
+ description: string;
837
+ type: string;
838
+ properties: {
839
+ r: {
840
+ type: string;
841
+ description: string;
842
+ };
843
+ g: {
844
+ type: string;
845
+ description: string;
846
+ };
847
+ b: {
848
+ type: string;
849
+ description: string;
850
+ };
851
+ a: {
852
+ type: string;
853
+ description: string;
854
+ };
855
+ };
856
+ };
857
+ };
858
+ };
859
+ description: string;
860
+ };
861
+ points: {
862
+ type: string;
863
+ items: {
864
+ title: string;
865
+ description: string;
866
+ type: string;
867
+ properties: {
868
+ timestamp: {
869
+ type: string;
870
+ title: string;
871
+ properties: {
872
+ sec: {
873
+ type: string;
874
+ minimum: number;
875
+ };
876
+ nsec: {
877
+ type: string;
878
+ minimum: number;
879
+ maximum: number;
880
+ };
881
+ };
882
+ description: string;
883
+ };
884
+ type: {
885
+ title: string;
886
+ description: string;
887
+ oneOf: {
888
+ title: string;
889
+ const: number;
890
+ }[];
891
+ };
892
+ points: {
893
+ type: string;
894
+ items: {
895
+ title: string;
896
+ description: string;
897
+ type: string;
898
+ properties: {
899
+ x: {
900
+ type: string;
901
+ description: string;
902
+ };
903
+ y: {
904
+ type: string;
905
+ description: string;
906
+ };
907
+ };
908
+ };
909
+ description: string;
910
+ };
911
+ outline_color: {
912
+ title: string;
913
+ description: string;
914
+ type: string;
915
+ properties: {
916
+ r: {
917
+ type: string;
918
+ description: string;
919
+ };
920
+ g: {
921
+ type: string;
922
+ description: string;
923
+ };
924
+ b: {
925
+ type: string;
926
+ description: string;
927
+ };
928
+ a: {
929
+ type: string;
930
+ description: string;
931
+ };
932
+ };
933
+ };
934
+ outline_colors: {
935
+ type: string;
936
+ items: {
937
+ title: string;
938
+ description: string;
939
+ type: string;
940
+ properties: {
941
+ r: {
942
+ type: string;
943
+ description: string;
944
+ };
945
+ g: {
946
+ type: string;
947
+ description: string;
948
+ };
949
+ b: {
950
+ type: string;
951
+ description: string;
952
+ };
953
+ a: {
954
+ type: string;
955
+ description: string;
956
+ };
957
+ };
958
+ };
959
+ description: string;
960
+ };
961
+ fill_color: {
962
+ title: string;
963
+ description: string;
964
+ type: string;
965
+ properties: {
966
+ r: {
967
+ type: string;
968
+ description: string;
969
+ };
970
+ g: {
971
+ type: string;
972
+ description: string;
973
+ };
974
+ b: {
975
+ type: string;
976
+ description: string;
977
+ };
978
+ a: {
979
+ type: string;
980
+ description: string;
981
+ };
982
+ };
983
+ };
984
+ thickness: {
985
+ type: string;
986
+ description: string;
987
+ };
988
+ };
989
+ };
990
+ description: string;
991
+ };
992
+ };
993
+ };
994
+ export declare const KeyValuePair: {
995
+ title: string;
996
+ description: string;
997
+ $comment: string;
998
+ type: string;
999
+ properties: {
1000
+ key: {
1001
+ type: string;
1002
+ description: string;
1003
+ };
1004
+ value: {
1005
+ type: string;
1006
+ description: string;
1007
+ };
1008
+ };
1009
+ };
1010
+ export declare const LaserScan: {
1011
+ title: string;
1012
+ description: string;
1013
+ $comment: string;
1014
+ type: string;
1015
+ properties: {
1016
+ timestamp: {
1017
+ type: string;
1018
+ title: string;
1019
+ properties: {
1020
+ sec: {
1021
+ type: string;
1022
+ minimum: number;
1023
+ };
1024
+ nsec: {
1025
+ type: string;
1026
+ minimum: number;
1027
+ maximum: number;
1028
+ };
1029
+ };
1030
+ description: string;
1031
+ };
1032
+ frame_id: {
1033
+ type: string;
1034
+ description: string;
1035
+ };
1036
+ pose: {
1037
+ title: string;
1038
+ description: string;
1039
+ type: string;
1040
+ properties: {
1041
+ position: {
1042
+ title: string;
1043
+ description: string;
1044
+ type: string;
1045
+ properties: {
1046
+ x: {
1047
+ type: string;
1048
+ description: string;
1049
+ };
1050
+ y: {
1051
+ type: string;
1052
+ description: string;
1053
+ };
1054
+ z: {
1055
+ type: string;
1056
+ description: string;
1057
+ };
1058
+ };
1059
+ };
1060
+ orientation: {
1061
+ title: string;
1062
+ description: string;
1063
+ type: string;
1064
+ properties: {
1065
+ x: {
1066
+ type: string;
1067
+ description: string;
1068
+ };
1069
+ y: {
1070
+ type: string;
1071
+ description: string;
1072
+ };
1073
+ z: {
1074
+ type: string;
1075
+ description: string;
1076
+ };
1077
+ w: {
1078
+ type: string;
1079
+ description: string;
1080
+ };
1081
+ };
1082
+ };
1083
+ };
1084
+ };
1085
+ start_angle: {
1086
+ type: string;
1087
+ description: string;
1088
+ };
1089
+ end_angle: {
1090
+ type: string;
1091
+ description: string;
1092
+ };
1093
+ ranges: {
1094
+ type: string;
1095
+ items: {
1096
+ type: string;
1097
+ };
1098
+ description: string;
1099
+ };
1100
+ intensities: {
1101
+ type: string;
1102
+ items: {
1103
+ type: string;
1104
+ };
1105
+ description: string;
1106
+ };
1107
+ };
1108
+ };
1109
+ export declare const LinePrimitive: {
1110
+ title: string;
1111
+ description: string;
1112
+ $comment: string;
1113
+ type: string;
1114
+ properties: {
1115
+ type: {
1116
+ title: string;
1117
+ description: string;
1118
+ oneOf: {
1119
+ title: string;
1120
+ const: number;
1121
+ description: string;
1122
+ }[];
1123
+ };
1124
+ pose: {
1125
+ title: string;
1126
+ description: string;
1127
+ type: string;
1128
+ properties: {
1129
+ position: {
1130
+ title: string;
1131
+ description: string;
1132
+ type: string;
1133
+ properties: {
1134
+ x: {
1135
+ type: string;
1136
+ description: string;
1137
+ };
1138
+ y: {
1139
+ type: string;
1140
+ description: string;
1141
+ };
1142
+ z: {
1143
+ type: string;
1144
+ description: string;
1145
+ };
1146
+ };
1147
+ };
1148
+ orientation: {
1149
+ title: string;
1150
+ description: string;
1151
+ type: string;
1152
+ properties: {
1153
+ x: {
1154
+ type: string;
1155
+ description: string;
1156
+ };
1157
+ y: {
1158
+ type: string;
1159
+ description: string;
1160
+ };
1161
+ z: {
1162
+ type: string;
1163
+ description: string;
1164
+ };
1165
+ w: {
1166
+ type: string;
1167
+ description: string;
1168
+ };
1169
+ };
1170
+ };
1171
+ };
1172
+ };
1173
+ thickness: {
1174
+ type: string;
1175
+ description: string;
1176
+ };
1177
+ scale_invariant: {
1178
+ type: string;
1179
+ description: string;
1180
+ };
1181
+ points: {
1182
+ type: string;
1183
+ items: {
1184
+ title: string;
1185
+ description: string;
1186
+ type: string;
1187
+ properties: {
1188
+ x: {
1189
+ type: string;
1190
+ description: string;
1191
+ };
1192
+ y: {
1193
+ type: string;
1194
+ description: string;
1195
+ };
1196
+ z: {
1197
+ type: string;
1198
+ description: string;
1199
+ };
1200
+ };
1201
+ };
1202
+ description: string;
1203
+ };
1204
+ color: {
1205
+ title: string;
1206
+ description: string;
1207
+ type: string;
1208
+ properties: {
1209
+ r: {
1210
+ type: string;
1211
+ description: string;
1212
+ };
1213
+ g: {
1214
+ type: string;
1215
+ description: string;
1216
+ };
1217
+ b: {
1218
+ type: string;
1219
+ description: string;
1220
+ };
1221
+ a: {
1222
+ type: string;
1223
+ description: string;
1224
+ };
1225
+ };
1226
+ };
1227
+ colors: {
1228
+ type: string;
1229
+ items: {
1230
+ title: string;
1231
+ description: string;
1232
+ type: string;
1233
+ properties: {
1234
+ r: {
1235
+ type: string;
1236
+ description: string;
1237
+ };
1238
+ g: {
1239
+ type: string;
1240
+ description: string;
1241
+ };
1242
+ b: {
1243
+ type: string;
1244
+ description: string;
1245
+ };
1246
+ a: {
1247
+ type: string;
1248
+ description: string;
1249
+ };
1250
+ };
1251
+ };
1252
+ description: string;
1253
+ };
1254
+ indices: {
1255
+ type: string;
1256
+ items: {
1257
+ type: string;
1258
+ minimum: number;
1259
+ };
1260
+ description: string;
1261
+ };
1262
+ };
1263
+ };
1264
+ export declare const LocationFix: {
1265
+ title: string;
1266
+ description: string;
1267
+ $comment: string;
1268
+ type: string;
1269
+ properties: {
1270
+ latitude: {
1271
+ type: string;
1272
+ description: string;
1273
+ };
1274
+ longitude: {
1275
+ type: string;
1276
+ description: string;
1277
+ };
1278
+ altitude: {
1279
+ type: string;
1280
+ description: string;
1281
+ };
1282
+ position_covariance: {
1283
+ type: string;
1284
+ items: {
1285
+ type: string;
1286
+ };
1287
+ minItems: number;
1288
+ maxItems: number;
1289
+ description: string;
1290
+ };
1291
+ position_covariance_type: {
1292
+ title: string;
1293
+ description: string;
1294
+ oneOf: {
1295
+ title: string;
1296
+ const: number;
1297
+ }[];
1298
+ };
1299
+ };
1300
+ };
1301
+ export declare const Log: {
1302
+ title: string;
1303
+ description: string;
1304
+ $comment: string;
1305
+ type: string;
1306
+ properties: {
1307
+ timestamp: {
1308
+ type: string;
1309
+ title: string;
1310
+ properties: {
1311
+ sec: {
1312
+ type: string;
1313
+ minimum: number;
1314
+ };
1315
+ nsec: {
1316
+ type: string;
1317
+ minimum: number;
1318
+ maximum: number;
1319
+ };
1320
+ };
1321
+ description: string;
1322
+ };
1323
+ level: {
1324
+ title: string;
1325
+ description: string;
1326
+ oneOf: {
1327
+ title: string;
1328
+ const: number;
1329
+ }[];
1330
+ };
1331
+ message: {
1332
+ type: string;
1333
+ description: string;
1334
+ };
1335
+ name: {
1336
+ type: string;
1337
+ description: string;
1338
+ };
1339
+ file: {
1340
+ type: string;
1341
+ description: string;
1342
+ };
1343
+ line: {
1344
+ type: string;
1345
+ minimum: number;
1346
+ description: string;
1347
+ };
1348
+ };
1349
+ };
1350
+ export declare const SceneEntityDeletion: {
1351
+ title: string;
1352
+ description: string;
1353
+ $comment: string;
1354
+ type: string;
1355
+ properties: {
1356
+ timestamp: {
1357
+ type: string;
1358
+ title: string;
1359
+ properties: {
1360
+ sec: {
1361
+ type: string;
1362
+ minimum: number;
1363
+ };
1364
+ nsec: {
1365
+ type: string;
1366
+ minimum: number;
1367
+ maximum: number;
1368
+ };
1369
+ };
1370
+ description: string;
1371
+ };
1372
+ type: {
1373
+ title: string;
1374
+ description: string;
1375
+ oneOf: {
1376
+ title: string;
1377
+ const: number;
1378
+ description: string;
1379
+ }[];
1380
+ };
1381
+ id: {
1382
+ type: string;
1383
+ description: string;
1384
+ };
1385
+ };
1386
+ };
1387
+ export declare const SceneEntity: {
1388
+ title: string;
1389
+ description: string;
1390
+ $comment: string;
1391
+ type: string;
1392
+ properties: {
1393
+ timestamp: {
1394
+ type: string;
1395
+ title: string;
1396
+ properties: {
1397
+ sec: {
1398
+ type: string;
1399
+ minimum: number;
1400
+ };
1401
+ nsec: {
1402
+ type: string;
1403
+ minimum: number;
1404
+ maximum: number;
1405
+ };
1406
+ };
1407
+ description: string;
1408
+ };
1409
+ frame_id: {
1410
+ type: string;
1411
+ description: string;
1412
+ };
1413
+ id: {
1414
+ type: string;
1415
+ description: string;
1416
+ };
1417
+ lifetime: {
1418
+ type: string;
1419
+ title: string;
1420
+ properties: {
1421
+ sec: {
1422
+ type: string;
1423
+ };
1424
+ nsec: {
1425
+ type: string;
1426
+ minimum: number;
1427
+ maximum: number;
1428
+ };
1429
+ };
1430
+ description: string;
1431
+ };
1432
+ frame_locked: {
1433
+ type: string;
1434
+ description: string;
1435
+ };
1436
+ metadata: {
1437
+ type: string;
1438
+ items: {
1439
+ title: string;
1440
+ description: string;
1441
+ type: string;
1442
+ properties: {
1443
+ key: {
1444
+ type: string;
1445
+ description: string;
1446
+ };
1447
+ value: {
1448
+ type: string;
1449
+ description: string;
1450
+ };
1451
+ };
1452
+ };
1453
+ description: string;
1454
+ };
1455
+ arrows: {
1456
+ type: string;
1457
+ items: {
1458
+ title: string;
1459
+ description: string;
1460
+ type: string;
1461
+ properties: {
1462
+ pose: {
1463
+ title: string;
1464
+ description: string;
1465
+ type: string;
1466
+ properties: {
1467
+ position: {
1468
+ title: string;
1469
+ description: string;
1470
+ type: string;
1471
+ properties: {
1472
+ x: {
1473
+ type: string;
1474
+ description: string;
1475
+ };
1476
+ y: {
1477
+ type: string;
1478
+ description: string;
1479
+ };
1480
+ z: {
1481
+ type: string;
1482
+ description: string;
1483
+ };
1484
+ };
1485
+ };
1486
+ orientation: {
1487
+ title: string;
1488
+ description: string;
1489
+ type: string;
1490
+ properties: {
1491
+ x: {
1492
+ type: string;
1493
+ description: string;
1494
+ };
1495
+ y: {
1496
+ type: string;
1497
+ description: string;
1498
+ };
1499
+ z: {
1500
+ type: string;
1501
+ description: string;
1502
+ };
1503
+ w: {
1504
+ type: string;
1505
+ description: string;
1506
+ };
1507
+ };
1508
+ };
1509
+ };
1510
+ };
1511
+ shaft_length: {
1512
+ type: string;
1513
+ description: string;
1514
+ };
1515
+ shaft_diameter: {
1516
+ type: string;
1517
+ description: string;
1518
+ };
1519
+ head_length: {
1520
+ type: string;
1521
+ description: string;
1522
+ };
1523
+ head_diameter: {
1524
+ type: string;
1525
+ description: string;
1526
+ };
1527
+ color: {
1528
+ title: string;
1529
+ description: string;
1530
+ type: string;
1531
+ properties: {
1532
+ r: {
1533
+ type: string;
1534
+ description: string;
1535
+ };
1536
+ g: {
1537
+ type: string;
1538
+ description: string;
1539
+ };
1540
+ b: {
1541
+ type: string;
1542
+ description: string;
1543
+ };
1544
+ a: {
1545
+ type: string;
1546
+ description: string;
1547
+ };
1548
+ };
1549
+ };
1550
+ };
1551
+ };
1552
+ description: string;
1553
+ };
1554
+ cubes: {
1555
+ type: string;
1556
+ items: {
1557
+ title: string;
1558
+ description: string;
1559
+ type: string;
1560
+ properties: {
1561
+ pose: {
1562
+ title: string;
1563
+ description: string;
1564
+ type: string;
1565
+ properties: {
1566
+ position: {
1567
+ title: string;
1568
+ description: string;
1569
+ type: string;
1570
+ properties: {
1571
+ x: {
1572
+ type: string;
1573
+ description: string;
1574
+ };
1575
+ y: {
1576
+ type: string;
1577
+ description: string;
1578
+ };
1579
+ z: {
1580
+ type: string;
1581
+ description: string;
1582
+ };
1583
+ };
1584
+ };
1585
+ orientation: {
1586
+ title: string;
1587
+ description: string;
1588
+ type: string;
1589
+ properties: {
1590
+ x: {
1591
+ type: string;
1592
+ description: string;
1593
+ };
1594
+ y: {
1595
+ type: string;
1596
+ description: string;
1597
+ };
1598
+ z: {
1599
+ type: string;
1600
+ description: string;
1601
+ };
1602
+ w: {
1603
+ type: string;
1604
+ description: string;
1605
+ };
1606
+ };
1607
+ };
1608
+ };
1609
+ };
1610
+ size: {
1611
+ title: string;
1612
+ description: string;
1613
+ type: string;
1614
+ properties: {
1615
+ x: {
1616
+ type: string;
1617
+ description: string;
1618
+ };
1619
+ y: {
1620
+ type: string;
1621
+ description: string;
1622
+ };
1623
+ z: {
1624
+ type: string;
1625
+ description: string;
1626
+ };
1627
+ };
1628
+ };
1629
+ color: {
1630
+ title: string;
1631
+ description: string;
1632
+ type: string;
1633
+ properties: {
1634
+ r: {
1635
+ type: string;
1636
+ description: string;
1637
+ };
1638
+ g: {
1639
+ type: string;
1640
+ description: string;
1641
+ };
1642
+ b: {
1643
+ type: string;
1644
+ description: string;
1645
+ };
1646
+ a: {
1647
+ type: string;
1648
+ description: string;
1649
+ };
1650
+ };
1651
+ };
1652
+ };
1653
+ };
1654
+ description: string;
1655
+ };
1656
+ spheres: {
1657
+ type: string;
1658
+ items: {
1659
+ title: string;
1660
+ description: string;
1661
+ type: string;
1662
+ properties: {
1663
+ pose: {
1664
+ title: string;
1665
+ description: string;
1666
+ type: string;
1667
+ properties: {
1668
+ position: {
1669
+ title: string;
1670
+ description: string;
1671
+ type: string;
1672
+ properties: {
1673
+ x: {
1674
+ type: string;
1675
+ description: string;
1676
+ };
1677
+ y: {
1678
+ type: string;
1679
+ description: string;
1680
+ };
1681
+ z: {
1682
+ type: string;
1683
+ description: string;
1684
+ };
1685
+ };
1686
+ };
1687
+ orientation: {
1688
+ title: string;
1689
+ description: string;
1690
+ type: string;
1691
+ properties: {
1692
+ x: {
1693
+ type: string;
1694
+ description: string;
1695
+ };
1696
+ y: {
1697
+ type: string;
1698
+ description: string;
1699
+ };
1700
+ z: {
1701
+ type: string;
1702
+ description: string;
1703
+ };
1704
+ w: {
1705
+ type: string;
1706
+ description: string;
1707
+ };
1708
+ };
1709
+ };
1710
+ };
1711
+ };
1712
+ size: {
1713
+ title: string;
1714
+ description: string;
1715
+ type: string;
1716
+ properties: {
1717
+ x: {
1718
+ type: string;
1719
+ description: string;
1720
+ };
1721
+ y: {
1722
+ type: string;
1723
+ description: string;
1724
+ };
1725
+ z: {
1726
+ type: string;
1727
+ description: string;
1728
+ };
1729
+ };
1730
+ };
1731
+ color: {
1732
+ title: string;
1733
+ description: string;
1734
+ type: string;
1735
+ properties: {
1736
+ r: {
1737
+ type: string;
1738
+ description: string;
1739
+ };
1740
+ g: {
1741
+ type: string;
1742
+ description: string;
1743
+ };
1744
+ b: {
1745
+ type: string;
1746
+ description: string;
1747
+ };
1748
+ a: {
1749
+ type: string;
1750
+ description: string;
1751
+ };
1752
+ };
1753
+ };
1754
+ };
1755
+ };
1756
+ description: string;
1757
+ };
1758
+ cylinders: {
1759
+ type: string;
1760
+ items: {
1761
+ title: string;
1762
+ description: string;
1763
+ type: string;
1764
+ properties: {
1765
+ pose: {
1766
+ title: string;
1767
+ description: string;
1768
+ type: string;
1769
+ properties: {
1770
+ position: {
1771
+ title: string;
1772
+ description: string;
1773
+ type: string;
1774
+ properties: {
1775
+ x: {
1776
+ type: string;
1777
+ description: string;
1778
+ };
1779
+ y: {
1780
+ type: string;
1781
+ description: string;
1782
+ };
1783
+ z: {
1784
+ type: string;
1785
+ description: string;
1786
+ };
1787
+ };
1788
+ };
1789
+ orientation: {
1790
+ title: string;
1791
+ description: string;
1792
+ type: string;
1793
+ properties: {
1794
+ x: {
1795
+ type: string;
1796
+ description: string;
1797
+ };
1798
+ y: {
1799
+ type: string;
1800
+ description: string;
1801
+ };
1802
+ z: {
1803
+ type: string;
1804
+ description: string;
1805
+ };
1806
+ w: {
1807
+ type: string;
1808
+ description: string;
1809
+ };
1810
+ };
1811
+ };
1812
+ };
1813
+ };
1814
+ size: {
1815
+ title: string;
1816
+ description: string;
1817
+ type: string;
1818
+ properties: {
1819
+ x: {
1820
+ type: string;
1821
+ description: string;
1822
+ };
1823
+ y: {
1824
+ type: string;
1825
+ description: string;
1826
+ };
1827
+ z: {
1828
+ type: string;
1829
+ description: string;
1830
+ };
1831
+ };
1832
+ };
1833
+ bottom_scale: {
1834
+ type: string;
1835
+ description: string;
1836
+ };
1837
+ top_scale: {
1838
+ type: string;
1839
+ description: string;
1840
+ };
1841
+ color: {
1842
+ title: string;
1843
+ description: string;
1844
+ type: string;
1845
+ properties: {
1846
+ r: {
1847
+ type: string;
1848
+ description: string;
1849
+ };
1850
+ g: {
1851
+ type: string;
1852
+ description: string;
1853
+ };
1854
+ b: {
1855
+ type: string;
1856
+ description: string;
1857
+ };
1858
+ a: {
1859
+ type: string;
1860
+ description: string;
1861
+ };
1862
+ };
1863
+ };
1864
+ };
1865
+ };
1866
+ description: string;
1867
+ };
1868
+ lines: {
1869
+ type: string;
1870
+ items: {
1871
+ title: string;
1872
+ description: string;
1873
+ type: string;
1874
+ properties: {
1875
+ type: {
1876
+ title: string;
1877
+ description: string;
1878
+ oneOf: {
1879
+ title: string;
1880
+ const: number;
1881
+ description: string;
1882
+ }[];
1883
+ };
1884
+ pose: {
1885
+ title: string;
1886
+ description: string;
1887
+ type: string;
1888
+ properties: {
1889
+ position: {
1890
+ title: string;
1891
+ description: string;
1892
+ type: string;
1893
+ properties: {
1894
+ x: {
1895
+ type: string;
1896
+ description: string;
1897
+ };
1898
+ y: {
1899
+ type: string;
1900
+ description: string;
1901
+ };
1902
+ z: {
1903
+ type: string;
1904
+ description: string;
1905
+ };
1906
+ };
1907
+ };
1908
+ orientation: {
1909
+ title: string;
1910
+ description: string;
1911
+ type: string;
1912
+ properties: {
1913
+ x: {
1914
+ type: string;
1915
+ description: string;
1916
+ };
1917
+ y: {
1918
+ type: string;
1919
+ description: string;
1920
+ };
1921
+ z: {
1922
+ type: string;
1923
+ description: string;
1924
+ };
1925
+ w: {
1926
+ type: string;
1927
+ description: string;
1928
+ };
1929
+ };
1930
+ };
1931
+ };
1932
+ };
1933
+ thickness: {
1934
+ type: string;
1935
+ description: string;
1936
+ };
1937
+ scale_invariant: {
1938
+ type: string;
1939
+ description: string;
1940
+ };
1941
+ points: {
1942
+ type: string;
1943
+ items: {
1944
+ title: string;
1945
+ description: string;
1946
+ type: string;
1947
+ properties: {
1948
+ x: {
1949
+ type: string;
1950
+ description: string;
1951
+ };
1952
+ y: {
1953
+ type: string;
1954
+ description: string;
1955
+ };
1956
+ z: {
1957
+ type: string;
1958
+ description: string;
1959
+ };
1960
+ };
1961
+ };
1962
+ description: string;
1963
+ };
1964
+ color: {
1965
+ title: string;
1966
+ description: string;
1967
+ type: string;
1968
+ properties: {
1969
+ r: {
1970
+ type: string;
1971
+ description: string;
1972
+ };
1973
+ g: {
1974
+ type: string;
1975
+ description: string;
1976
+ };
1977
+ b: {
1978
+ type: string;
1979
+ description: string;
1980
+ };
1981
+ a: {
1982
+ type: string;
1983
+ description: string;
1984
+ };
1985
+ };
1986
+ };
1987
+ colors: {
1988
+ type: string;
1989
+ items: {
1990
+ title: string;
1991
+ description: string;
1992
+ type: string;
1993
+ properties: {
1994
+ r: {
1995
+ type: string;
1996
+ description: string;
1997
+ };
1998
+ g: {
1999
+ type: string;
2000
+ description: string;
2001
+ };
2002
+ b: {
2003
+ type: string;
2004
+ description: string;
2005
+ };
2006
+ a: {
2007
+ type: string;
2008
+ description: string;
2009
+ };
2010
+ };
2011
+ };
2012
+ description: string;
2013
+ };
2014
+ indices: {
2015
+ type: string;
2016
+ items: {
2017
+ type: string;
2018
+ minimum: number;
2019
+ };
2020
+ description: string;
2021
+ };
2022
+ };
2023
+ };
2024
+ description: string;
2025
+ };
2026
+ triangles: {
2027
+ type: string;
2028
+ items: {
2029
+ title: string;
2030
+ description: string;
2031
+ type: string;
2032
+ properties: {
2033
+ pose: {
2034
+ title: string;
2035
+ description: string;
2036
+ type: string;
2037
+ properties: {
2038
+ position: {
2039
+ title: string;
2040
+ description: string;
2041
+ type: string;
2042
+ properties: {
2043
+ x: {
2044
+ type: string;
2045
+ description: string;
2046
+ };
2047
+ y: {
2048
+ type: string;
2049
+ description: string;
2050
+ };
2051
+ z: {
2052
+ type: string;
2053
+ description: string;
2054
+ };
2055
+ };
2056
+ };
2057
+ orientation: {
2058
+ title: string;
2059
+ description: string;
2060
+ type: string;
2061
+ properties: {
2062
+ x: {
2063
+ type: string;
2064
+ description: string;
2065
+ };
2066
+ y: {
2067
+ type: string;
2068
+ description: string;
2069
+ };
2070
+ z: {
2071
+ type: string;
2072
+ description: string;
2073
+ };
2074
+ w: {
2075
+ type: string;
2076
+ description: string;
2077
+ };
2078
+ };
2079
+ };
2080
+ };
2081
+ };
2082
+ points: {
2083
+ type: string;
2084
+ items: {
2085
+ title: string;
2086
+ description: string;
2087
+ type: string;
2088
+ properties: {
2089
+ x: {
2090
+ type: string;
2091
+ description: string;
2092
+ };
2093
+ y: {
2094
+ type: string;
2095
+ description: string;
2096
+ };
2097
+ z: {
2098
+ type: string;
2099
+ description: string;
2100
+ };
2101
+ };
2102
+ };
2103
+ description: string;
2104
+ };
2105
+ color: {
2106
+ title: string;
2107
+ description: string;
2108
+ type: string;
2109
+ properties: {
2110
+ r: {
2111
+ type: string;
2112
+ description: string;
2113
+ };
2114
+ g: {
2115
+ type: string;
2116
+ description: string;
2117
+ };
2118
+ b: {
2119
+ type: string;
2120
+ description: string;
2121
+ };
2122
+ a: {
2123
+ type: string;
2124
+ description: string;
2125
+ };
2126
+ };
2127
+ };
2128
+ colors: {
2129
+ type: string;
2130
+ items: {
2131
+ title: string;
2132
+ description: string;
2133
+ type: string;
2134
+ properties: {
2135
+ r: {
2136
+ type: string;
2137
+ description: string;
2138
+ };
2139
+ g: {
2140
+ type: string;
2141
+ description: string;
2142
+ };
2143
+ b: {
2144
+ type: string;
2145
+ description: string;
2146
+ };
2147
+ a: {
2148
+ type: string;
2149
+ description: string;
2150
+ };
2151
+ };
2152
+ };
2153
+ description: string;
2154
+ };
2155
+ indices: {
2156
+ type: string;
2157
+ items: {
2158
+ type: string;
2159
+ minimum: number;
2160
+ };
2161
+ description: string;
2162
+ };
2163
+ };
2164
+ };
2165
+ description: string;
2166
+ };
2167
+ texts: {
2168
+ type: string;
2169
+ items: {
2170
+ title: string;
2171
+ description: string;
2172
+ type: string;
2173
+ properties: {
2174
+ pose: {
2175
+ title: string;
2176
+ description: string;
2177
+ type: string;
2178
+ properties: {
2179
+ position: {
2180
+ title: string;
2181
+ description: string;
2182
+ type: string;
2183
+ properties: {
2184
+ x: {
2185
+ type: string;
2186
+ description: string;
2187
+ };
2188
+ y: {
2189
+ type: string;
2190
+ description: string;
2191
+ };
2192
+ z: {
2193
+ type: string;
2194
+ description: string;
2195
+ };
2196
+ };
2197
+ };
2198
+ orientation: {
2199
+ title: string;
2200
+ description: string;
2201
+ type: string;
2202
+ properties: {
2203
+ x: {
2204
+ type: string;
2205
+ description: string;
2206
+ };
2207
+ y: {
2208
+ type: string;
2209
+ description: string;
2210
+ };
2211
+ z: {
2212
+ type: string;
2213
+ description: string;
2214
+ };
2215
+ w: {
2216
+ type: string;
2217
+ description: string;
2218
+ };
2219
+ };
2220
+ };
2221
+ };
2222
+ };
2223
+ billboard: {
2224
+ type: string;
2225
+ description: string;
2226
+ };
2227
+ font_size: {
2228
+ type: string;
2229
+ description: string;
2230
+ };
2231
+ scale_invariant: {
2232
+ type: string;
2233
+ description: string;
2234
+ };
2235
+ color: {
2236
+ title: string;
2237
+ description: string;
2238
+ type: string;
2239
+ properties: {
2240
+ r: {
2241
+ type: string;
2242
+ description: string;
2243
+ };
2244
+ g: {
2245
+ type: string;
2246
+ description: string;
2247
+ };
2248
+ b: {
2249
+ type: string;
2250
+ description: string;
2251
+ };
2252
+ a: {
2253
+ type: string;
2254
+ description: string;
2255
+ };
2256
+ };
2257
+ };
2258
+ text: {
2259
+ type: string;
2260
+ description: string;
2261
+ };
2262
+ };
2263
+ };
2264
+ description: string;
2265
+ };
2266
+ models: {
2267
+ type: string;
2268
+ items: {
2269
+ title: string;
2270
+ description: string;
2271
+ type: string;
2272
+ properties: {
2273
+ pose: {
2274
+ title: string;
2275
+ description: string;
2276
+ type: string;
2277
+ properties: {
2278
+ position: {
2279
+ title: string;
2280
+ description: string;
2281
+ type: string;
2282
+ properties: {
2283
+ x: {
2284
+ type: string;
2285
+ description: string;
2286
+ };
2287
+ y: {
2288
+ type: string;
2289
+ description: string;
2290
+ };
2291
+ z: {
2292
+ type: string;
2293
+ description: string;
2294
+ };
2295
+ };
2296
+ };
2297
+ orientation: {
2298
+ title: string;
2299
+ description: string;
2300
+ type: string;
2301
+ properties: {
2302
+ x: {
2303
+ type: string;
2304
+ description: string;
2305
+ };
2306
+ y: {
2307
+ type: string;
2308
+ description: string;
2309
+ };
2310
+ z: {
2311
+ type: string;
2312
+ description: string;
2313
+ };
2314
+ w: {
2315
+ type: string;
2316
+ description: string;
2317
+ };
2318
+ };
2319
+ };
2320
+ };
2321
+ };
2322
+ scale: {
2323
+ title: string;
2324
+ description: string;
2325
+ type: string;
2326
+ properties: {
2327
+ x: {
2328
+ type: string;
2329
+ description: string;
2330
+ };
2331
+ y: {
2332
+ type: string;
2333
+ description: string;
2334
+ };
2335
+ z: {
2336
+ type: string;
2337
+ description: string;
2338
+ };
2339
+ };
2340
+ };
2341
+ color: {
2342
+ title: string;
2343
+ description: string;
2344
+ type: string;
2345
+ properties: {
2346
+ r: {
2347
+ type: string;
2348
+ description: string;
2349
+ };
2350
+ g: {
2351
+ type: string;
2352
+ description: string;
2353
+ };
2354
+ b: {
2355
+ type: string;
2356
+ description: string;
2357
+ };
2358
+ a: {
2359
+ type: string;
2360
+ description: string;
2361
+ };
2362
+ };
2363
+ };
2364
+ override_color: {
2365
+ type: string;
2366
+ description: string;
2367
+ };
2368
+ url: {
2369
+ type: string;
2370
+ description: string;
2371
+ };
2372
+ media_type: {
2373
+ type: string;
2374
+ description: string;
2375
+ };
2376
+ data: {
2377
+ type: string;
2378
+ contentEncoding: string;
2379
+ description: string;
2380
+ };
2381
+ };
2382
+ };
2383
+ description: string;
2384
+ };
2385
+ };
2386
+ };
2387
+ export declare const SceneUpdate: {
2388
+ title: string;
2389
+ description: string;
2390
+ $comment: string;
2391
+ type: string;
2392
+ properties: {
2393
+ deletions: {
2394
+ type: string;
2395
+ items: {
2396
+ title: string;
2397
+ description: string;
2398
+ type: string;
2399
+ properties: {
2400
+ timestamp: {
2401
+ type: string;
2402
+ title: string;
2403
+ properties: {
2404
+ sec: {
2405
+ type: string;
2406
+ minimum: number;
2407
+ };
2408
+ nsec: {
2409
+ type: string;
2410
+ minimum: number;
2411
+ maximum: number;
2412
+ };
2413
+ };
2414
+ description: string;
2415
+ };
2416
+ type: {
2417
+ title: string;
2418
+ description: string;
2419
+ oneOf: {
2420
+ title: string;
2421
+ const: number;
2422
+ description: string;
2423
+ }[];
2424
+ };
2425
+ id: {
2426
+ type: string;
2427
+ description: string;
2428
+ };
2429
+ };
2430
+ };
2431
+ description: string;
2432
+ };
2433
+ entities: {
2434
+ type: string;
2435
+ items: {
2436
+ title: string;
2437
+ description: string;
2438
+ type: string;
2439
+ properties: {
2440
+ timestamp: {
2441
+ type: string;
2442
+ title: string;
2443
+ properties: {
2444
+ sec: {
2445
+ type: string;
2446
+ minimum: number;
2447
+ };
2448
+ nsec: {
2449
+ type: string;
2450
+ minimum: number;
2451
+ maximum: number;
2452
+ };
2453
+ };
2454
+ description: string;
2455
+ };
2456
+ frame_id: {
2457
+ type: string;
2458
+ description: string;
2459
+ };
2460
+ id: {
2461
+ type: string;
2462
+ description: string;
2463
+ };
2464
+ lifetime: {
2465
+ type: string;
2466
+ title: string;
2467
+ properties: {
2468
+ sec: {
2469
+ type: string;
2470
+ };
2471
+ nsec: {
2472
+ type: string;
2473
+ minimum: number;
2474
+ maximum: number;
2475
+ };
2476
+ };
2477
+ description: string;
2478
+ };
2479
+ frame_locked: {
2480
+ type: string;
2481
+ description: string;
2482
+ };
2483
+ metadata: {
2484
+ type: string;
2485
+ items: {
2486
+ title: string;
2487
+ description: string;
2488
+ type: string;
2489
+ properties: {
2490
+ key: {
2491
+ type: string;
2492
+ description: string;
2493
+ };
2494
+ value: {
2495
+ type: string;
2496
+ description: string;
2497
+ };
2498
+ };
2499
+ };
2500
+ description: string;
2501
+ };
2502
+ arrows: {
2503
+ type: string;
2504
+ items: {
2505
+ title: string;
2506
+ description: string;
2507
+ type: string;
2508
+ properties: {
2509
+ pose: {
2510
+ title: string;
2511
+ description: string;
2512
+ type: string;
2513
+ properties: {
2514
+ position: {
2515
+ title: string;
2516
+ description: string;
2517
+ type: string;
2518
+ properties: {
2519
+ x: {
2520
+ type: string;
2521
+ description: string;
2522
+ };
2523
+ y: {
2524
+ type: string;
2525
+ description: string;
2526
+ };
2527
+ z: {
2528
+ type: string;
2529
+ description: string;
2530
+ };
2531
+ };
2532
+ };
2533
+ orientation: {
2534
+ title: string;
2535
+ description: string;
2536
+ type: string;
2537
+ properties: {
2538
+ x: {
2539
+ type: string;
2540
+ description: string;
2541
+ };
2542
+ y: {
2543
+ type: string;
2544
+ description: string;
2545
+ };
2546
+ z: {
2547
+ type: string;
2548
+ description: string;
2549
+ };
2550
+ w: {
2551
+ type: string;
2552
+ description: string;
2553
+ };
2554
+ };
2555
+ };
2556
+ };
2557
+ };
2558
+ shaft_length: {
2559
+ type: string;
2560
+ description: string;
2561
+ };
2562
+ shaft_diameter: {
2563
+ type: string;
2564
+ description: string;
2565
+ };
2566
+ head_length: {
2567
+ type: string;
2568
+ description: string;
2569
+ };
2570
+ head_diameter: {
2571
+ type: string;
2572
+ description: string;
2573
+ };
2574
+ color: {
2575
+ title: string;
2576
+ description: string;
2577
+ type: string;
2578
+ properties: {
2579
+ r: {
2580
+ type: string;
2581
+ description: string;
2582
+ };
2583
+ g: {
2584
+ type: string;
2585
+ description: string;
2586
+ };
2587
+ b: {
2588
+ type: string;
2589
+ description: string;
2590
+ };
2591
+ a: {
2592
+ type: string;
2593
+ description: string;
2594
+ };
2595
+ };
2596
+ };
2597
+ };
2598
+ };
2599
+ description: string;
2600
+ };
2601
+ cubes: {
2602
+ type: string;
2603
+ items: {
2604
+ title: string;
2605
+ description: string;
2606
+ type: string;
2607
+ properties: {
2608
+ pose: {
2609
+ title: string;
2610
+ description: string;
2611
+ type: string;
2612
+ properties: {
2613
+ position: {
2614
+ title: string;
2615
+ description: string;
2616
+ type: string;
2617
+ properties: {
2618
+ x: {
2619
+ type: string;
2620
+ description: string;
2621
+ };
2622
+ y: {
2623
+ type: string;
2624
+ description: string;
2625
+ };
2626
+ z: {
2627
+ type: string;
2628
+ description: string;
2629
+ };
2630
+ };
2631
+ };
2632
+ orientation: {
2633
+ title: string;
2634
+ description: string;
2635
+ type: string;
2636
+ properties: {
2637
+ x: {
2638
+ type: string;
2639
+ description: string;
2640
+ };
2641
+ y: {
2642
+ type: string;
2643
+ description: string;
2644
+ };
2645
+ z: {
2646
+ type: string;
2647
+ description: string;
2648
+ };
2649
+ w: {
2650
+ type: string;
2651
+ description: string;
2652
+ };
2653
+ };
2654
+ };
2655
+ };
2656
+ };
2657
+ size: {
2658
+ title: string;
2659
+ description: string;
2660
+ type: string;
2661
+ properties: {
2662
+ x: {
2663
+ type: string;
2664
+ description: string;
2665
+ };
2666
+ y: {
2667
+ type: string;
2668
+ description: string;
2669
+ };
2670
+ z: {
2671
+ type: string;
2672
+ description: string;
2673
+ };
2674
+ };
2675
+ };
2676
+ color: {
2677
+ title: string;
2678
+ description: string;
2679
+ type: string;
2680
+ properties: {
2681
+ r: {
2682
+ type: string;
2683
+ description: string;
2684
+ };
2685
+ g: {
2686
+ type: string;
2687
+ description: string;
2688
+ };
2689
+ b: {
2690
+ type: string;
2691
+ description: string;
2692
+ };
2693
+ a: {
2694
+ type: string;
2695
+ description: string;
2696
+ };
2697
+ };
2698
+ };
2699
+ };
2700
+ };
2701
+ description: string;
2702
+ };
2703
+ spheres: {
2704
+ type: string;
2705
+ items: {
2706
+ title: string;
2707
+ description: string;
2708
+ type: string;
2709
+ properties: {
2710
+ pose: {
2711
+ title: string;
2712
+ description: string;
2713
+ type: string;
2714
+ properties: {
2715
+ position: {
2716
+ title: string;
2717
+ description: string;
2718
+ type: string;
2719
+ properties: {
2720
+ x: {
2721
+ type: string;
2722
+ description: string;
2723
+ };
2724
+ y: {
2725
+ type: string;
2726
+ description: string;
2727
+ };
2728
+ z: {
2729
+ type: string;
2730
+ description: string;
2731
+ };
2732
+ };
2733
+ };
2734
+ orientation: {
2735
+ title: string;
2736
+ description: string;
2737
+ type: string;
2738
+ properties: {
2739
+ x: {
2740
+ type: string;
2741
+ description: string;
2742
+ };
2743
+ y: {
2744
+ type: string;
2745
+ description: string;
2746
+ };
2747
+ z: {
2748
+ type: string;
2749
+ description: string;
2750
+ };
2751
+ w: {
2752
+ type: string;
2753
+ description: string;
2754
+ };
2755
+ };
2756
+ };
2757
+ };
2758
+ };
2759
+ size: {
2760
+ title: string;
2761
+ description: string;
2762
+ type: string;
2763
+ properties: {
2764
+ x: {
2765
+ type: string;
2766
+ description: string;
2767
+ };
2768
+ y: {
2769
+ type: string;
2770
+ description: string;
2771
+ };
2772
+ z: {
2773
+ type: string;
2774
+ description: string;
2775
+ };
2776
+ };
2777
+ };
2778
+ color: {
2779
+ title: string;
2780
+ description: string;
2781
+ type: string;
2782
+ properties: {
2783
+ r: {
2784
+ type: string;
2785
+ description: string;
2786
+ };
2787
+ g: {
2788
+ type: string;
2789
+ description: string;
2790
+ };
2791
+ b: {
2792
+ type: string;
2793
+ description: string;
2794
+ };
2795
+ a: {
2796
+ type: string;
2797
+ description: string;
2798
+ };
2799
+ };
2800
+ };
2801
+ };
2802
+ };
2803
+ description: string;
2804
+ };
2805
+ cylinders: {
2806
+ type: string;
2807
+ items: {
2808
+ title: string;
2809
+ description: string;
2810
+ type: string;
2811
+ properties: {
2812
+ pose: {
2813
+ title: string;
2814
+ description: string;
2815
+ type: string;
2816
+ properties: {
2817
+ position: {
2818
+ title: string;
2819
+ description: string;
2820
+ type: string;
2821
+ properties: {
2822
+ x: {
2823
+ type: string;
2824
+ description: string;
2825
+ };
2826
+ y: {
2827
+ type: string;
2828
+ description: string;
2829
+ };
2830
+ z: {
2831
+ type: string;
2832
+ description: string;
2833
+ };
2834
+ };
2835
+ };
2836
+ orientation: {
2837
+ title: string;
2838
+ description: string;
2839
+ type: string;
2840
+ properties: {
2841
+ x: {
2842
+ type: string;
2843
+ description: string;
2844
+ };
2845
+ y: {
2846
+ type: string;
2847
+ description: string;
2848
+ };
2849
+ z: {
2850
+ type: string;
2851
+ description: string;
2852
+ };
2853
+ w: {
2854
+ type: string;
2855
+ description: string;
2856
+ };
2857
+ };
2858
+ };
2859
+ };
2860
+ };
2861
+ size: {
2862
+ title: string;
2863
+ description: string;
2864
+ type: string;
2865
+ properties: {
2866
+ x: {
2867
+ type: string;
2868
+ description: string;
2869
+ };
2870
+ y: {
2871
+ type: string;
2872
+ description: string;
2873
+ };
2874
+ z: {
2875
+ type: string;
2876
+ description: string;
2877
+ };
2878
+ };
2879
+ };
2880
+ bottom_scale: {
2881
+ type: string;
2882
+ description: string;
2883
+ };
2884
+ top_scale: {
2885
+ type: string;
2886
+ description: string;
2887
+ };
2888
+ color: {
2889
+ title: string;
2890
+ description: string;
2891
+ type: string;
2892
+ properties: {
2893
+ r: {
2894
+ type: string;
2895
+ description: string;
2896
+ };
2897
+ g: {
2898
+ type: string;
2899
+ description: string;
2900
+ };
2901
+ b: {
2902
+ type: string;
2903
+ description: string;
2904
+ };
2905
+ a: {
2906
+ type: string;
2907
+ description: string;
2908
+ };
2909
+ };
2910
+ };
2911
+ };
2912
+ };
2913
+ description: string;
2914
+ };
2915
+ lines: {
2916
+ type: string;
2917
+ items: {
2918
+ title: string;
2919
+ description: string;
2920
+ type: string;
2921
+ properties: {
2922
+ type: {
2923
+ title: string;
2924
+ description: string;
2925
+ oneOf: {
2926
+ title: string;
2927
+ const: number;
2928
+ description: string;
2929
+ }[];
2930
+ };
2931
+ pose: {
2932
+ title: string;
2933
+ description: string;
2934
+ type: string;
2935
+ properties: {
2936
+ position: {
2937
+ title: string;
2938
+ description: string;
2939
+ type: string;
2940
+ properties: {
2941
+ x: {
2942
+ type: string;
2943
+ description: string;
2944
+ };
2945
+ y: {
2946
+ type: string;
2947
+ description: string;
2948
+ };
2949
+ z: {
2950
+ type: string;
2951
+ description: string;
2952
+ };
2953
+ };
2954
+ };
2955
+ orientation: {
2956
+ title: string;
2957
+ description: string;
2958
+ type: string;
2959
+ properties: {
2960
+ x: {
2961
+ type: string;
2962
+ description: string;
2963
+ };
2964
+ y: {
2965
+ type: string;
2966
+ description: string;
2967
+ };
2968
+ z: {
2969
+ type: string;
2970
+ description: string;
2971
+ };
2972
+ w: {
2973
+ type: string;
2974
+ description: string;
2975
+ };
2976
+ };
2977
+ };
2978
+ };
2979
+ };
2980
+ thickness: {
2981
+ type: string;
2982
+ description: string;
2983
+ };
2984
+ scale_invariant: {
2985
+ type: string;
2986
+ description: string;
2987
+ };
2988
+ points: {
2989
+ type: string;
2990
+ items: {
2991
+ title: string;
2992
+ description: string;
2993
+ type: string;
2994
+ properties: {
2995
+ x: {
2996
+ type: string;
2997
+ description: string;
2998
+ };
2999
+ y: {
3000
+ type: string;
3001
+ description: string;
3002
+ };
3003
+ z: {
3004
+ type: string;
3005
+ description: string;
3006
+ };
3007
+ };
3008
+ };
3009
+ description: string;
3010
+ };
3011
+ color: {
3012
+ title: string;
3013
+ description: string;
3014
+ type: string;
3015
+ properties: {
3016
+ r: {
3017
+ type: string;
3018
+ description: string;
3019
+ };
3020
+ g: {
3021
+ type: string;
3022
+ description: string;
3023
+ };
3024
+ b: {
3025
+ type: string;
3026
+ description: string;
3027
+ };
3028
+ a: {
3029
+ type: string;
3030
+ description: string;
3031
+ };
3032
+ };
3033
+ };
3034
+ colors: {
3035
+ type: string;
3036
+ items: {
3037
+ title: string;
3038
+ description: string;
3039
+ type: string;
3040
+ properties: {
3041
+ r: {
3042
+ type: string;
3043
+ description: string;
3044
+ };
3045
+ g: {
3046
+ type: string;
3047
+ description: string;
3048
+ };
3049
+ b: {
3050
+ type: string;
3051
+ description: string;
3052
+ };
3053
+ a: {
3054
+ type: string;
3055
+ description: string;
3056
+ };
3057
+ };
3058
+ };
3059
+ description: string;
3060
+ };
3061
+ indices: {
3062
+ type: string;
3063
+ items: {
3064
+ type: string;
3065
+ minimum: number;
3066
+ };
3067
+ description: string;
3068
+ };
3069
+ };
3070
+ };
3071
+ description: string;
3072
+ };
3073
+ triangles: {
3074
+ type: string;
3075
+ items: {
3076
+ title: string;
3077
+ description: string;
3078
+ type: string;
3079
+ properties: {
3080
+ pose: {
3081
+ title: string;
3082
+ description: string;
3083
+ type: string;
3084
+ properties: {
3085
+ position: {
3086
+ title: string;
3087
+ description: string;
3088
+ type: string;
3089
+ properties: {
3090
+ x: {
3091
+ type: string;
3092
+ description: string;
3093
+ };
3094
+ y: {
3095
+ type: string;
3096
+ description: string;
3097
+ };
3098
+ z: {
3099
+ type: string;
3100
+ description: string;
3101
+ };
3102
+ };
3103
+ };
3104
+ orientation: {
3105
+ title: string;
3106
+ description: string;
3107
+ type: string;
3108
+ properties: {
3109
+ x: {
3110
+ type: string;
3111
+ description: string;
3112
+ };
3113
+ y: {
3114
+ type: string;
3115
+ description: string;
3116
+ };
3117
+ z: {
3118
+ type: string;
3119
+ description: string;
3120
+ };
3121
+ w: {
3122
+ type: string;
3123
+ description: string;
3124
+ };
3125
+ };
3126
+ };
3127
+ };
3128
+ };
3129
+ points: {
3130
+ type: string;
3131
+ items: {
3132
+ title: string;
3133
+ description: string;
3134
+ type: string;
3135
+ properties: {
3136
+ x: {
3137
+ type: string;
3138
+ description: string;
3139
+ };
3140
+ y: {
3141
+ type: string;
3142
+ description: string;
3143
+ };
3144
+ z: {
3145
+ type: string;
3146
+ description: string;
3147
+ };
3148
+ };
3149
+ };
3150
+ description: string;
3151
+ };
3152
+ color: {
3153
+ title: string;
3154
+ description: string;
3155
+ type: string;
3156
+ properties: {
3157
+ r: {
3158
+ type: string;
3159
+ description: string;
3160
+ };
3161
+ g: {
3162
+ type: string;
3163
+ description: string;
3164
+ };
3165
+ b: {
3166
+ type: string;
3167
+ description: string;
3168
+ };
3169
+ a: {
3170
+ type: string;
3171
+ description: string;
3172
+ };
3173
+ };
3174
+ };
3175
+ colors: {
3176
+ type: string;
3177
+ items: {
3178
+ title: string;
3179
+ description: string;
3180
+ type: string;
3181
+ properties: {
3182
+ r: {
3183
+ type: string;
3184
+ description: string;
3185
+ };
3186
+ g: {
3187
+ type: string;
3188
+ description: string;
3189
+ };
3190
+ b: {
3191
+ type: string;
3192
+ description: string;
3193
+ };
3194
+ a: {
3195
+ type: string;
3196
+ description: string;
3197
+ };
3198
+ };
3199
+ };
3200
+ description: string;
3201
+ };
3202
+ indices: {
3203
+ type: string;
3204
+ items: {
3205
+ type: string;
3206
+ minimum: number;
3207
+ };
3208
+ description: string;
3209
+ };
3210
+ };
3211
+ };
3212
+ description: string;
3213
+ };
3214
+ texts: {
3215
+ type: string;
3216
+ items: {
3217
+ title: string;
3218
+ description: string;
3219
+ type: string;
3220
+ properties: {
3221
+ pose: {
3222
+ title: string;
3223
+ description: string;
3224
+ type: string;
3225
+ properties: {
3226
+ position: {
3227
+ title: string;
3228
+ description: string;
3229
+ type: string;
3230
+ properties: {
3231
+ x: {
3232
+ type: string;
3233
+ description: string;
3234
+ };
3235
+ y: {
3236
+ type: string;
3237
+ description: string;
3238
+ };
3239
+ z: {
3240
+ type: string;
3241
+ description: string;
3242
+ };
3243
+ };
3244
+ };
3245
+ orientation: {
3246
+ title: string;
3247
+ description: string;
3248
+ type: string;
3249
+ properties: {
3250
+ x: {
3251
+ type: string;
3252
+ description: string;
3253
+ };
3254
+ y: {
3255
+ type: string;
3256
+ description: string;
3257
+ };
3258
+ z: {
3259
+ type: string;
3260
+ description: string;
3261
+ };
3262
+ w: {
3263
+ type: string;
3264
+ description: string;
3265
+ };
3266
+ };
3267
+ };
3268
+ };
3269
+ };
3270
+ billboard: {
3271
+ type: string;
3272
+ description: string;
3273
+ };
3274
+ font_size: {
3275
+ type: string;
3276
+ description: string;
3277
+ };
3278
+ scale_invariant: {
3279
+ type: string;
3280
+ description: string;
3281
+ };
3282
+ color: {
3283
+ title: string;
3284
+ description: string;
3285
+ type: string;
3286
+ properties: {
3287
+ r: {
3288
+ type: string;
3289
+ description: string;
3290
+ };
3291
+ g: {
3292
+ type: string;
3293
+ description: string;
3294
+ };
3295
+ b: {
3296
+ type: string;
3297
+ description: string;
3298
+ };
3299
+ a: {
3300
+ type: string;
3301
+ description: string;
3302
+ };
3303
+ };
3304
+ };
3305
+ text: {
3306
+ type: string;
3307
+ description: string;
3308
+ };
3309
+ };
3310
+ };
3311
+ description: string;
3312
+ };
3313
+ models: {
3314
+ type: string;
3315
+ items: {
3316
+ title: string;
3317
+ description: string;
3318
+ type: string;
3319
+ properties: {
3320
+ pose: {
3321
+ title: string;
3322
+ description: string;
3323
+ type: string;
3324
+ properties: {
3325
+ position: {
3326
+ title: string;
3327
+ description: string;
3328
+ type: string;
3329
+ properties: {
3330
+ x: {
3331
+ type: string;
3332
+ description: string;
3333
+ };
3334
+ y: {
3335
+ type: string;
3336
+ description: string;
3337
+ };
3338
+ z: {
3339
+ type: string;
3340
+ description: string;
3341
+ };
3342
+ };
3343
+ };
3344
+ orientation: {
3345
+ title: string;
3346
+ description: string;
3347
+ type: string;
3348
+ properties: {
3349
+ x: {
3350
+ type: string;
3351
+ description: string;
3352
+ };
3353
+ y: {
3354
+ type: string;
3355
+ description: string;
3356
+ };
3357
+ z: {
3358
+ type: string;
3359
+ description: string;
3360
+ };
3361
+ w: {
3362
+ type: string;
3363
+ description: string;
3364
+ };
3365
+ };
3366
+ };
3367
+ };
3368
+ };
3369
+ scale: {
3370
+ title: string;
3371
+ description: string;
3372
+ type: string;
3373
+ properties: {
3374
+ x: {
3375
+ type: string;
3376
+ description: string;
3377
+ };
3378
+ y: {
3379
+ type: string;
3380
+ description: string;
3381
+ };
3382
+ z: {
3383
+ type: string;
3384
+ description: string;
3385
+ };
3386
+ };
3387
+ };
3388
+ color: {
3389
+ title: string;
3390
+ description: string;
3391
+ type: string;
3392
+ properties: {
3393
+ r: {
3394
+ type: string;
3395
+ description: string;
3396
+ };
3397
+ g: {
3398
+ type: string;
3399
+ description: string;
3400
+ };
3401
+ b: {
3402
+ type: string;
3403
+ description: string;
3404
+ };
3405
+ a: {
3406
+ type: string;
3407
+ description: string;
3408
+ };
3409
+ };
3410
+ };
3411
+ override_color: {
3412
+ type: string;
3413
+ description: string;
3414
+ };
3415
+ url: {
3416
+ type: string;
3417
+ description: string;
3418
+ };
3419
+ media_type: {
3420
+ type: string;
3421
+ description: string;
3422
+ };
3423
+ data: {
3424
+ type: string;
3425
+ contentEncoding: string;
3426
+ description: string;
3427
+ };
3428
+ };
3429
+ };
3430
+ description: string;
3431
+ };
3432
+ };
3433
+ };
3434
+ description: string;
3435
+ };
3436
+ };
3437
+ };
3438
+ export declare const ModelPrimitive: {
3439
+ title: string;
3440
+ description: string;
3441
+ $comment: string;
3442
+ type: string;
3443
+ properties: {
3444
+ pose: {
3445
+ title: string;
3446
+ description: string;
3447
+ type: string;
3448
+ properties: {
3449
+ position: {
3450
+ title: string;
3451
+ description: string;
3452
+ type: string;
3453
+ properties: {
3454
+ x: {
3455
+ type: string;
3456
+ description: string;
3457
+ };
3458
+ y: {
3459
+ type: string;
3460
+ description: string;
3461
+ };
3462
+ z: {
3463
+ type: string;
3464
+ description: string;
3465
+ };
3466
+ };
3467
+ };
3468
+ orientation: {
3469
+ title: string;
3470
+ description: string;
3471
+ type: string;
3472
+ properties: {
3473
+ x: {
3474
+ type: string;
3475
+ description: string;
3476
+ };
3477
+ y: {
3478
+ type: string;
3479
+ description: string;
3480
+ };
3481
+ z: {
3482
+ type: string;
3483
+ description: string;
3484
+ };
3485
+ w: {
3486
+ type: string;
3487
+ description: string;
3488
+ };
3489
+ };
3490
+ };
3491
+ };
3492
+ };
3493
+ scale: {
3494
+ title: string;
3495
+ description: string;
3496
+ type: string;
3497
+ properties: {
3498
+ x: {
3499
+ type: string;
3500
+ description: string;
3501
+ };
3502
+ y: {
3503
+ type: string;
3504
+ description: string;
3505
+ };
3506
+ z: {
3507
+ type: string;
3508
+ description: string;
3509
+ };
3510
+ };
3511
+ };
3512
+ color: {
3513
+ title: string;
3514
+ description: string;
3515
+ type: string;
3516
+ properties: {
3517
+ r: {
3518
+ type: string;
3519
+ description: string;
3520
+ };
3521
+ g: {
3522
+ type: string;
3523
+ description: string;
3524
+ };
3525
+ b: {
3526
+ type: string;
3527
+ description: string;
3528
+ };
3529
+ a: {
3530
+ type: string;
3531
+ description: string;
3532
+ };
3533
+ };
3534
+ };
3535
+ override_color: {
3536
+ type: string;
3537
+ description: string;
3538
+ };
3539
+ url: {
3540
+ type: string;
3541
+ description: string;
3542
+ };
3543
+ media_type: {
3544
+ type: string;
3545
+ description: string;
3546
+ };
3547
+ data: {
3548
+ type: string;
3549
+ contentEncoding: string;
3550
+ description: string;
3551
+ };
3552
+ };
3553
+ };
3554
+ export declare const PackedElementField: {
3555
+ title: string;
3556
+ description: string;
3557
+ $comment: string;
3558
+ type: string;
3559
+ properties: {
3560
+ name: {
3561
+ type: string;
3562
+ description: string;
3563
+ };
3564
+ offset: {
3565
+ type: string;
3566
+ minimum: number;
3567
+ description: string;
3568
+ };
3569
+ type: {
3570
+ title: string;
3571
+ description: string;
3572
+ oneOf: {
3573
+ title: string;
3574
+ const: number;
3575
+ }[];
3576
+ };
3577
+ };
3578
+ };
3579
+ export declare const Point2: {
3580
+ title: string;
3581
+ description: string;
3582
+ $comment: string;
3583
+ type: string;
3584
+ properties: {
3585
+ x: {
3586
+ type: string;
3587
+ description: string;
3588
+ };
3589
+ y: {
3590
+ type: string;
3591
+ description: string;
3592
+ };
3593
+ };
3594
+ };
3595
+ export declare const Point3: {
3596
+ title: string;
3597
+ description: string;
3598
+ $comment: string;
3599
+ type: string;
3600
+ properties: {
3601
+ x: {
3602
+ type: string;
3603
+ description: string;
3604
+ };
3605
+ y: {
3606
+ type: string;
3607
+ description: string;
3608
+ };
3609
+ z: {
3610
+ type: string;
3611
+ description: string;
3612
+ };
3613
+ };
3614
+ };
3615
+ export declare const PointCloud: {
3616
+ title: string;
3617
+ description: string;
3618
+ $comment: string;
3619
+ type: string;
3620
+ properties: {
3621
+ timestamp: {
3622
+ type: string;
3623
+ title: string;
3624
+ properties: {
3625
+ sec: {
3626
+ type: string;
3627
+ minimum: number;
3628
+ };
3629
+ nsec: {
3630
+ type: string;
3631
+ minimum: number;
3632
+ maximum: number;
3633
+ };
3634
+ };
3635
+ description: string;
3636
+ };
3637
+ frame_id: {
3638
+ type: string;
3639
+ description: string;
3640
+ };
3641
+ pose: {
3642
+ title: string;
3643
+ description: string;
3644
+ type: string;
3645
+ properties: {
3646
+ position: {
3647
+ title: string;
3648
+ description: string;
3649
+ type: string;
3650
+ properties: {
3651
+ x: {
3652
+ type: string;
3653
+ description: string;
3654
+ };
3655
+ y: {
3656
+ type: string;
3657
+ description: string;
3658
+ };
3659
+ z: {
3660
+ type: string;
3661
+ description: string;
3662
+ };
3663
+ };
3664
+ };
3665
+ orientation: {
3666
+ title: string;
3667
+ description: string;
3668
+ type: string;
3669
+ properties: {
3670
+ x: {
3671
+ type: string;
3672
+ description: string;
3673
+ };
3674
+ y: {
3675
+ type: string;
3676
+ description: string;
3677
+ };
3678
+ z: {
3679
+ type: string;
3680
+ description: string;
3681
+ };
3682
+ w: {
3683
+ type: string;
3684
+ description: string;
3685
+ };
3686
+ };
3687
+ };
3688
+ };
3689
+ };
3690
+ point_stride: {
3691
+ type: string;
3692
+ minimum: number;
3693
+ description: string;
3694
+ };
3695
+ fields: {
3696
+ type: string;
3697
+ items: {
3698
+ title: string;
3699
+ description: string;
3700
+ type: string;
3701
+ properties: {
3702
+ name: {
3703
+ type: string;
3704
+ description: string;
3705
+ };
3706
+ offset: {
3707
+ type: string;
3708
+ minimum: number;
3709
+ description: string;
3710
+ };
3711
+ type: {
3712
+ title: string;
3713
+ description: string;
3714
+ oneOf: {
3715
+ title: string;
3716
+ const: number;
3717
+ }[];
3718
+ };
3719
+ };
3720
+ };
3721
+ description: string;
3722
+ };
3723
+ data: {
3724
+ type: string;
3725
+ contentEncoding: string;
3726
+ description: string;
3727
+ };
3728
+ };
3729
+ };
3730
+ export declare const PointsAnnotation: {
3731
+ title: string;
3732
+ description: string;
3733
+ $comment: string;
3734
+ type: string;
3735
+ properties: {
3736
+ timestamp: {
3737
+ type: string;
3738
+ title: string;
3739
+ properties: {
3740
+ sec: {
3741
+ type: string;
3742
+ minimum: number;
3743
+ };
3744
+ nsec: {
3745
+ type: string;
3746
+ minimum: number;
3747
+ maximum: number;
3748
+ };
3749
+ };
3750
+ description: string;
3751
+ };
3752
+ type: {
3753
+ title: string;
3754
+ description: string;
3755
+ oneOf: {
3756
+ title: string;
3757
+ const: number;
3758
+ }[];
3759
+ };
3760
+ points: {
3761
+ type: string;
3762
+ items: {
3763
+ title: string;
3764
+ description: string;
3765
+ type: string;
3766
+ properties: {
3767
+ x: {
3768
+ type: string;
3769
+ description: string;
3770
+ };
3771
+ y: {
3772
+ type: string;
3773
+ description: string;
3774
+ };
3775
+ };
3776
+ };
3777
+ description: string;
3778
+ };
3779
+ outline_color: {
3780
+ title: string;
3781
+ description: string;
3782
+ type: string;
3783
+ properties: {
3784
+ r: {
3785
+ type: string;
3786
+ description: string;
3787
+ };
3788
+ g: {
3789
+ type: string;
3790
+ description: string;
3791
+ };
3792
+ b: {
3793
+ type: string;
3794
+ description: string;
3795
+ };
3796
+ a: {
3797
+ type: string;
3798
+ description: string;
3799
+ };
3800
+ };
3801
+ };
3802
+ outline_colors: {
3803
+ type: string;
3804
+ items: {
3805
+ title: string;
3806
+ description: string;
3807
+ type: string;
3808
+ properties: {
3809
+ r: {
3810
+ type: string;
3811
+ description: string;
3812
+ };
3813
+ g: {
3814
+ type: string;
3815
+ description: string;
3816
+ };
3817
+ b: {
3818
+ type: string;
3819
+ description: string;
3820
+ };
3821
+ a: {
3822
+ type: string;
3823
+ description: string;
3824
+ };
3825
+ };
3826
+ };
3827
+ description: string;
3828
+ };
3829
+ fill_color: {
3830
+ title: string;
3831
+ description: string;
3832
+ type: string;
3833
+ properties: {
3834
+ r: {
3835
+ type: string;
3836
+ description: string;
3837
+ };
3838
+ g: {
3839
+ type: string;
3840
+ description: string;
3841
+ };
3842
+ b: {
3843
+ type: string;
3844
+ description: string;
3845
+ };
3846
+ a: {
3847
+ type: string;
3848
+ description: string;
3849
+ };
3850
+ };
3851
+ };
3852
+ thickness: {
3853
+ type: string;
3854
+ description: string;
3855
+ };
3856
+ };
3857
+ };
3858
+ export declare const Pose: {
3859
+ title: string;
3860
+ description: string;
3861
+ $comment: string;
3862
+ type: string;
3863
+ properties: {
3864
+ position: {
3865
+ title: string;
3866
+ description: string;
3867
+ type: string;
3868
+ properties: {
3869
+ x: {
3870
+ type: string;
3871
+ description: string;
3872
+ };
3873
+ y: {
3874
+ type: string;
3875
+ description: string;
3876
+ };
3877
+ z: {
3878
+ type: string;
3879
+ description: string;
3880
+ };
3881
+ };
3882
+ };
3883
+ orientation: {
3884
+ title: string;
3885
+ description: string;
3886
+ type: string;
3887
+ properties: {
3888
+ x: {
3889
+ type: string;
3890
+ description: string;
3891
+ };
3892
+ y: {
3893
+ type: string;
3894
+ description: string;
3895
+ };
3896
+ z: {
3897
+ type: string;
3898
+ description: string;
3899
+ };
3900
+ w: {
3901
+ type: string;
3902
+ description: string;
3903
+ };
3904
+ };
3905
+ };
3906
+ };
3907
+ };
3908
+ export declare const PoseInFrame: {
3909
+ title: string;
3910
+ description: string;
3911
+ $comment: string;
3912
+ type: string;
3913
+ properties: {
3914
+ timestamp: {
3915
+ type: string;
3916
+ title: string;
3917
+ properties: {
3918
+ sec: {
3919
+ type: string;
3920
+ minimum: number;
3921
+ };
3922
+ nsec: {
3923
+ type: string;
3924
+ minimum: number;
3925
+ maximum: number;
3926
+ };
3927
+ };
3928
+ description: string;
3929
+ };
3930
+ frame_id: {
3931
+ type: string;
3932
+ description: string;
3933
+ };
3934
+ pose: {
3935
+ title: string;
3936
+ description: string;
3937
+ type: string;
3938
+ properties: {
3939
+ position: {
3940
+ title: string;
3941
+ description: string;
3942
+ type: string;
3943
+ properties: {
3944
+ x: {
3945
+ type: string;
3946
+ description: string;
3947
+ };
3948
+ y: {
3949
+ type: string;
3950
+ description: string;
3951
+ };
3952
+ z: {
3953
+ type: string;
3954
+ description: string;
3955
+ };
3956
+ };
3957
+ };
3958
+ orientation: {
3959
+ title: string;
3960
+ description: string;
3961
+ type: string;
3962
+ properties: {
3963
+ x: {
3964
+ type: string;
3965
+ description: string;
3966
+ };
3967
+ y: {
3968
+ type: string;
3969
+ description: string;
3970
+ };
3971
+ z: {
3972
+ type: string;
3973
+ description: string;
3974
+ };
3975
+ w: {
3976
+ type: string;
3977
+ description: string;
3978
+ };
3979
+ };
3980
+ };
3981
+ };
3982
+ };
3983
+ };
3984
+ };
3985
+ export declare const PosesInFrame: {
3986
+ title: string;
3987
+ description: string;
3988
+ $comment: string;
3989
+ type: string;
3990
+ properties: {
3991
+ timestamp: {
3992
+ type: string;
3993
+ title: string;
3994
+ properties: {
3995
+ sec: {
3996
+ type: string;
3997
+ minimum: number;
3998
+ };
3999
+ nsec: {
4000
+ type: string;
4001
+ minimum: number;
4002
+ maximum: number;
4003
+ };
4004
+ };
4005
+ description: string;
4006
+ };
4007
+ frame_id: {
4008
+ type: string;
4009
+ description: string;
4010
+ };
4011
+ poses: {
4012
+ type: string;
4013
+ items: {
4014
+ title: string;
4015
+ description: string;
4016
+ type: string;
4017
+ properties: {
4018
+ position: {
4019
+ title: string;
4020
+ description: string;
4021
+ type: string;
4022
+ properties: {
4023
+ x: {
4024
+ type: string;
4025
+ description: string;
4026
+ };
4027
+ y: {
4028
+ type: string;
4029
+ description: string;
4030
+ };
4031
+ z: {
4032
+ type: string;
4033
+ description: string;
4034
+ };
4035
+ };
4036
+ };
4037
+ orientation: {
4038
+ title: string;
4039
+ description: string;
4040
+ type: string;
4041
+ properties: {
4042
+ x: {
4043
+ type: string;
4044
+ description: string;
4045
+ };
4046
+ y: {
4047
+ type: string;
4048
+ description: string;
4049
+ };
4050
+ z: {
4051
+ type: string;
4052
+ description: string;
4053
+ };
4054
+ w: {
4055
+ type: string;
4056
+ description: string;
4057
+ };
4058
+ };
4059
+ };
4060
+ };
4061
+ };
4062
+ description: string;
4063
+ };
4064
+ };
4065
+ };
4066
+ export declare const Quaternion: {
4067
+ title: string;
4068
+ description: string;
4069
+ $comment: string;
4070
+ type: string;
4071
+ properties: {
4072
+ x: {
4073
+ type: string;
4074
+ description: string;
4075
+ };
4076
+ y: {
4077
+ type: string;
4078
+ description: string;
4079
+ };
4080
+ z: {
4081
+ type: string;
4082
+ description: string;
4083
+ };
4084
+ w: {
4085
+ type: string;
4086
+ description: string;
4087
+ };
4088
+ };
4089
+ };
4090
+ export declare const RawImage: {
4091
+ title: string;
4092
+ description: string;
4093
+ $comment: string;
4094
+ type: string;
4095
+ properties: {
4096
+ timestamp: {
4097
+ type: string;
4098
+ title: string;
4099
+ properties: {
4100
+ sec: {
4101
+ type: string;
4102
+ minimum: number;
4103
+ };
4104
+ nsec: {
4105
+ type: string;
4106
+ minimum: number;
4107
+ maximum: number;
4108
+ };
4109
+ };
4110
+ description: string;
4111
+ };
4112
+ frame_id: {
4113
+ type: string;
4114
+ description: string;
4115
+ };
4116
+ width: {
4117
+ type: string;
4118
+ minimum: number;
4119
+ description: string;
4120
+ };
4121
+ height: {
4122
+ type: string;
4123
+ minimum: number;
4124
+ description: string;
4125
+ };
4126
+ encoding: {
4127
+ type: string;
4128
+ description: string;
4129
+ };
4130
+ step: {
4131
+ type: string;
4132
+ minimum: number;
4133
+ description: string;
4134
+ };
4135
+ data: {
4136
+ type: string;
4137
+ contentEncoding: string;
4138
+ description: string;
4139
+ };
4140
+ };
4141
+ };
4142
+ export declare const SpherePrimitive: {
4143
+ title: string;
4144
+ description: string;
4145
+ $comment: string;
4146
+ type: string;
4147
+ properties: {
4148
+ pose: {
4149
+ title: string;
4150
+ description: string;
4151
+ type: string;
4152
+ properties: {
4153
+ position: {
4154
+ title: string;
4155
+ description: string;
4156
+ type: string;
4157
+ properties: {
4158
+ x: {
4159
+ type: string;
4160
+ description: string;
4161
+ };
4162
+ y: {
4163
+ type: string;
4164
+ description: string;
4165
+ };
4166
+ z: {
4167
+ type: string;
4168
+ description: string;
4169
+ };
4170
+ };
4171
+ };
4172
+ orientation: {
4173
+ title: string;
4174
+ description: string;
4175
+ type: string;
4176
+ properties: {
4177
+ x: {
4178
+ type: string;
4179
+ description: string;
4180
+ };
4181
+ y: {
4182
+ type: string;
4183
+ description: string;
4184
+ };
4185
+ z: {
4186
+ type: string;
4187
+ description: string;
4188
+ };
4189
+ w: {
4190
+ type: string;
4191
+ description: string;
4192
+ };
4193
+ };
4194
+ };
4195
+ };
4196
+ };
4197
+ size: {
4198
+ title: string;
4199
+ description: string;
4200
+ type: string;
4201
+ properties: {
4202
+ x: {
4203
+ type: string;
4204
+ description: string;
4205
+ };
4206
+ y: {
4207
+ type: string;
4208
+ description: string;
4209
+ };
4210
+ z: {
4211
+ type: string;
4212
+ description: string;
4213
+ };
4214
+ };
4215
+ };
4216
+ color: {
4217
+ title: string;
4218
+ description: string;
4219
+ type: string;
4220
+ properties: {
4221
+ r: {
4222
+ type: string;
4223
+ description: string;
4224
+ };
4225
+ g: {
4226
+ type: string;
4227
+ description: string;
4228
+ };
4229
+ b: {
4230
+ type: string;
4231
+ description: string;
4232
+ };
4233
+ a: {
4234
+ type: string;
4235
+ description: string;
4236
+ };
4237
+ };
4238
+ };
4239
+ };
4240
+ };
4241
+ export declare const TextPrimitive: {
4242
+ title: string;
4243
+ description: string;
4244
+ $comment: string;
4245
+ type: string;
4246
+ properties: {
4247
+ pose: {
4248
+ title: string;
4249
+ description: string;
4250
+ type: string;
4251
+ properties: {
4252
+ position: {
4253
+ title: string;
4254
+ description: string;
4255
+ type: string;
4256
+ properties: {
4257
+ x: {
4258
+ type: string;
4259
+ description: string;
4260
+ };
4261
+ y: {
4262
+ type: string;
4263
+ description: string;
4264
+ };
4265
+ z: {
4266
+ type: string;
4267
+ description: string;
4268
+ };
4269
+ };
4270
+ };
4271
+ orientation: {
4272
+ title: string;
4273
+ description: string;
4274
+ type: string;
4275
+ properties: {
4276
+ x: {
4277
+ type: string;
4278
+ description: string;
4279
+ };
4280
+ y: {
4281
+ type: string;
4282
+ description: string;
4283
+ };
4284
+ z: {
4285
+ type: string;
4286
+ description: string;
4287
+ };
4288
+ w: {
4289
+ type: string;
4290
+ description: string;
4291
+ };
4292
+ };
4293
+ };
4294
+ };
4295
+ };
4296
+ billboard: {
4297
+ type: string;
4298
+ description: string;
4299
+ };
4300
+ font_size: {
4301
+ type: string;
4302
+ description: string;
4303
+ };
4304
+ scale_invariant: {
4305
+ type: string;
4306
+ description: string;
4307
+ };
4308
+ color: {
4309
+ title: string;
4310
+ description: string;
4311
+ type: string;
4312
+ properties: {
4313
+ r: {
4314
+ type: string;
4315
+ description: string;
4316
+ };
4317
+ g: {
4318
+ type: string;
4319
+ description: string;
4320
+ };
4321
+ b: {
4322
+ type: string;
4323
+ description: string;
4324
+ };
4325
+ a: {
4326
+ type: string;
4327
+ description: string;
4328
+ };
4329
+ };
4330
+ };
4331
+ text: {
4332
+ type: string;
4333
+ description: string;
4334
+ };
4335
+ };
4336
+ };
4337
+ export declare const TriangleListPrimitive: {
4338
+ title: string;
4339
+ description: string;
4340
+ $comment: string;
4341
+ type: string;
4342
+ properties: {
4343
+ pose: {
4344
+ title: string;
4345
+ description: string;
4346
+ type: string;
4347
+ properties: {
4348
+ position: {
4349
+ title: string;
4350
+ description: string;
4351
+ type: string;
4352
+ properties: {
4353
+ x: {
4354
+ type: string;
4355
+ description: string;
4356
+ };
4357
+ y: {
4358
+ type: string;
4359
+ description: string;
4360
+ };
4361
+ z: {
4362
+ type: string;
4363
+ description: string;
4364
+ };
4365
+ };
4366
+ };
4367
+ orientation: {
4368
+ title: string;
4369
+ description: string;
4370
+ type: string;
4371
+ properties: {
4372
+ x: {
4373
+ type: string;
4374
+ description: string;
4375
+ };
4376
+ y: {
4377
+ type: string;
4378
+ description: string;
4379
+ };
4380
+ z: {
4381
+ type: string;
4382
+ description: string;
4383
+ };
4384
+ w: {
4385
+ type: string;
4386
+ description: string;
4387
+ };
4388
+ };
4389
+ };
4390
+ };
4391
+ };
4392
+ points: {
4393
+ type: string;
4394
+ items: {
4395
+ title: string;
4396
+ description: string;
4397
+ type: string;
4398
+ properties: {
4399
+ x: {
4400
+ type: string;
4401
+ description: string;
4402
+ };
4403
+ y: {
4404
+ type: string;
4405
+ description: string;
4406
+ };
4407
+ z: {
4408
+ type: string;
4409
+ description: string;
4410
+ };
4411
+ };
4412
+ };
4413
+ description: string;
4414
+ };
4415
+ color: {
4416
+ title: string;
4417
+ description: string;
4418
+ type: string;
4419
+ properties: {
4420
+ r: {
4421
+ type: string;
4422
+ description: string;
4423
+ };
4424
+ g: {
4425
+ type: string;
4426
+ description: string;
4427
+ };
4428
+ b: {
4429
+ type: string;
4430
+ description: string;
4431
+ };
4432
+ a: {
4433
+ type: string;
4434
+ description: string;
4435
+ };
4436
+ };
4437
+ };
4438
+ colors: {
4439
+ type: string;
4440
+ items: {
4441
+ title: string;
4442
+ description: string;
4443
+ type: string;
4444
+ properties: {
4445
+ r: {
4446
+ type: string;
4447
+ description: string;
4448
+ };
4449
+ g: {
4450
+ type: string;
4451
+ description: string;
4452
+ };
4453
+ b: {
4454
+ type: string;
4455
+ description: string;
4456
+ };
4457
+ a: {
4458
+ type: string;
4459
+ description: string;
4460
+ };
4461
+ };
4462
+ };
4463
+ description: string;
4464
+ };
4465
+ indices: {
4466
+ type: string;
4467
+ items: {
4468
+ type: string;
4469
+ minimum: number;
4470
+ };
4471
+ description: string;
4472
+ };
4473
+ };
4474
+ };
4475
+ export declare const Vector2: {
4476
+ title: string;
4477
+ description: string;
4478
+ $comment: string;
4479
+ type: string;
4480
+ properties: {
4481
+ x: {
4482
+ type: string;
4483
+ description: string;
4484
+ };
4485
+ y: {
4486
+ type: string;
4487
+ description: string;
4488
+ };
4489
+ };
4490
+ };
4491
+ export declare const Vector3: {
4492
+ title: string;
4493
+ description: string;
4494
+ $comment: string;
4495
+ type: string;
4496
+ properties: {
4497
+ x: {
4498
+ type: string;
4499
+ description: string;
4500
+ };
4501
+ y: {
4502
+ type: string;
4503
+ description: string;
4504
+ };
4505
+ z: {
4506
+ type: string;
4507
+ description: string;
4508
+ };
4509
+ };
4510
+ };
36
4511
  //# sourceMappingURL=index.d.ts.map