@projectqai/proto 0.0.2 → 0.0.6

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.
@@ -3,7 +3,7 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
6
- import type { Message } from "@bufbuild/protobuf";
6
+ import type { JsonObject, Message } from "@bufbuild/protobuf";
7
7
  import type { Timestamp } from "@bufbuild/protobuf/wkt";
8
8
 
9
9
  /**
@@ -84,6 +84,21 @@ export declare type Entity = Message<"world.Entity"> & {
84
84
  * @generated from field: optional world.TaskableComponent taskable = 23;
85
85
  */
86
86
  taskable?: TaskableComponent;
87
+
88
+ /**
89
+ * @generated from field: optional world.KinematicsComponent kinematics = 24;
90
+ */
91
+ kinematics?: KinematicsComponent;
92
+
93
+ /**
94
+ * @generated from field: optional world.GeoShapeComponent shape = 25;
95
+ */
96
+ shape?: GeoShapeComponent;
97
+
98
+ /**
99
+ * @generated from field: optional world.ConfigurationComponent config = 51;
100
+ */
101
+ config?: ConfigurationComponent;
87
102
  };
88
103
 
89
104
  /**
@@ -149,9 +164,11 @@ export declare type GeoSpatialComponent = Message<"world.GeoSpatialComponent"> &
149
164
  latitude: number;
150
165
 
151
166
  /**
152
- * @generated from field: double altitude = 3;
167
+ * height above ellipsoid (WGS84) in meters
168
+ *
169
+ * @generated from field: optional double altitude = 3;
153
170
  */
154
- altitude: number;
171
+ altitude?: number;
155
172
  };
156
173
 
157
174
  /**
@@ -189,6 +206,11 @@ export declare type Camera = Message<"world.Camera"> & {
189
206
  * @generated from field: string url = 2;
190
207
  */
191
208
  url: string;
209
+
210
+ /**
211
+ * @generated from field: world.CameraProtocol protocol = 3;
212
+ */
213
+ protocol: CameraProtocol;
192
214
  };
193
215
 
194
216
  /**
@@ -218,9 +240,9 @@ export declare const CameraComponentSchema: GenMessage<CameraComponent>;
218
240
  */
219
241
  export declare type DetectionComponent = Message<"world.DetectionComponent"> & {
220
242
  /**
221
- * @generated from field: optional string detectorEntityID = 1;
243
+ * @generated from field: optional string detectorEntityId = 1;
222
244
  */
223
- detectorEntityID?: string;
245
+ detectorEntityId?: string;
224
246
 
225
247
  /**
226
248
  * @generated from field: optional string classification = 2;
@@ -306,11 +328,17 @@ export declare const CovarianceMatrixSchema: GenMessage<CovarianceMatrix>;
306
328
  */
307
329
  export declare type LocationUncertaintyComponent = Message<"world.LocationUncertaintyComponent"> & {
308
330
  /**
331
+ * Position covariance matrix in local ENU frame (units: m²)
332
+ * Describes uncertainty ellipsoid of position estimate
333
+ *
309
334
  * @generated from field: optional world.CovarianceMatrix positionEnuCov = 1;
310
335
  */
311
336
  positionEnuCov?: CovarianceMatrix;
312
337
 
313
338
  /**
339
+ * Velocity covariance matrix in local ENU frame (units: m²/s²)
340
+ * Describes uncertainty of velocity estimate
341
+ *
314
342
  * @generated from field: optional world.CovarianceMatrix velocityEnuCov = 2;
315
343
  */
316
344
  velocityEnuCov?: CovarianceMatrix;
@@ -339,9 +367,9 @@ export declare const TrackComponentSchema: GenMessage<TrackComponent>;
339
367
  */
340
368
  export declare type LocatorComponent = Message<"world.LocatorComponent"> & {
341
369
  /**
342
- * @generated from field: string locatedEntityID = 1;
370
+ * @generated from field: string locatedEntityId = 1;
343
371
  */
344
- locatedEntityID: string;
372
+ locatedEntityId: string;
345
373
  };
346
374
 
347
375
  /**
@@ -413,14 +441,239 @@ export declare type TaskableComponent = Message<"world.TaskableComponent"> & {
413
441
  */
414
442
  export declare const TaskableComponentSchema: GenMessage<TaskableComponent>;
415
443
 
444
+ /**
445
+ * @generated from message world.KinematicsEnu
446
+ */
447
+ export declare type KinematicsEnu = Message<"world.KinematicsEnu"> & {
448
+ /**
449
+ * Velocity components in the local East-North-Up (ENU) coordinate frame.
450
+ * The ENU frame is a right-handed Cartesian coordinate system with origin
451
+ * at the entity's position (GeoSpatialComponent), where:
452
+ * - East axis: tangent to the latitude line, pointing eastward
453
+ * - North axis: tangent to the longitude line, pointing northward
454
+ * - Up axis: perpendicular to the WGS84 ellipsoid, pointing away from Earth center
455
+ *
456
+ * Note: This is NOT a body frame - the axes do not rotate with the entity's
457
+ * heading/attitude. Velocities are expressed relative to the Earth's surface.
458
+ * All units are in meters per second (m/s).
459
+ *
460
+ * m/s
461
+ *
462
+ * @generated from field: optional double east = 1;
463
+ */
464
+ east?: number;
465
+
466
+ /**
467
+ * m/s
468
+ *
469
+ * @generated from field: optional double north = 2;
470
+ */
471
+ north?: number;
472
+
473
+ /**
474
+ * m/s
475
+ *
476
+ * @generated from field: optional double up = 3;
477
+ */
478
+ up?: number;
479
+ };
480
+
481
+ /**
482
+ * Describes the message world.KinematicsEnu.
483
+ * Use `create(KinematicsEnuSchema)` to create a new message.
484
+ */
485
+ export declare const KinematicsEnuSchema: GenMessage<KinematicsEnu>;
486
+
487
+ /**
488
+ * @generated from message world.KinematicsComponent
489
+ */
490
+ export declare type KinematicsComponent = Message<"world.KinematicsComponent"> & {
491
+ /**
492
+ * Velocity in local ENU frame (see KinematicsEnu for frame definition)
493
+ *
494
+ * @generated from field: optional world.KinematicsEnu velocityEnu = 1;
495
+ */
496
+ velocityEnu?: KinematicsEnu;
497
+
498
+ /**
499
+ * Acceleration in local ENU frame (m/s²)
500
+ *
501
+ * @generated from field: optional world.KinematicsEnu accelerationEnu = 2;
502
+ */
503
+ accelerationEnu?: KinematicsEnu;
504
+ };
505
+
506
+ /**
507
+ * Describes the message world.KinematicsComponent.
508
+ * Use `create(KinematicsComponentSchema)` to create a new message.
509
+ */
510
+ export declare const KinematicsComponentSchema: GenMessage<KinematicsComponent>;
511
+
512
+ /**
513
+ * @generated from message world.GeoShapeComponent
514
+ */
515
+ export declare type GeoShapeComponent = Message<"world.GeoShapeComponent"> & {
516
+ /**
517
+ * @generated from field: optional world.Geometry geometry = 1;
518
+ */
519
+ geometry?: Geometry;
520
+ };
521
+
522
+ /**
523
+ * Describes the message world.GeoShapeComponent.
524
+ * Use `create(GeoShapeComponentSchema)` to create a new message.
525
+ */
526
+ export declare const GeoShapeComponentSchema: GenMessage<GeoShapeComponent>;
527
+
528
+ /**
529
+ * @generated from message world.ConfigurationComponent
530
+ */
531
+ export declare type ConfigurationComponent = Message<"world.ConfigurationComponent"> & {
532
+ /**
533
+ * @generated from field: string controller = 1;
534
+ */
535
+ controller: string;
536
+
537
+ /**
538
+ * @generated from field: string key = 2;
539
+ */
540
+ key: string;
541
+
542
+ /**
543
+ * @generated from field: google.protobuf.Struct value = 3;
544
+ */
545
+ value?: JsonObject;
546
+ };
547
+
548
+ /**
549
+ * Describes the message world.ConfigurationComponent.
550
+ * Use `create(ConfigurationComponentSchema)` to create a new message.
551
+ */
552
+ export declare const ConfigurationComponentSchema: GenMessage<ConfigurationComponent>;
553
+
554
+ /**
555
+ * a 2.5D point on the projected flat surface in WGS84
556
+ *
557
+ * @generated from message world.PlanarPoint
558
+ */
559
+ export declare type PlanarPoint = Message<"world.PlanarPoint"> & {
560
+ /**
561
+ * @generated from field: double longitude = 1;
562
+ */
563
+ longitude: number;
564
+
565
+ /**
566
+ * @generated from field: double latitude = 2;
567
+ */
568
+ latitude: number;
569
+
570
+ /**
571
+ * height above ellipsoid (WGS84) in meters
572
+ *
573
+ * @generated from field: optional double altitude = 3;
574
+ */
575
+ altitude?: number;
576
+ };
577
+
578
+ /**
579
+ * Describes the message world.PlanarPoint.
580
+ * Use `create(PlanarPointSchema)` to create a new message.
581
+ */
582
+ export declare const PlanarPointSchema: GenMessage<PlanarPoint>;
583
+
584
+ /**
585
+ * a path with zero area on the projected flat surface
586
+ * a ring is considered to be closed when the first and last points are identical
587
+ *
588
+ * @generated from message world.PlanarRing
589
+ */
590
+ export declare type PlanarRing = Message<"world.PlanarRing"> & {
591
+ /**
592
+ * @generated from field: repeated world.PlanarPoint points = 1;
593
+ */
594
+ points: PlanarPoint[];
595
+ };
596
+
597
+ /**
598
+ * Describes the message world.PlanarRing.
599
+ * Use `create(PlanarRingSchema)` to create a new message.
600
+ */
601
+ export declare const PlanarRingSchema: GenMessage<PlanarRing>;
602
+
603
+ /**
604
+ * / An area enclosed by a ring, with optional holes.
605
+ * / All rings must be closed (first point = last point)
606
+ *
607
+ * @generated from message world.PlanarPolygon
608
+ */
609
+ export declare type PlanarPolygon = Message<"world.PlanarPolygon"> & {
610
+ /**
611
+ * @generated from field: world.PlanarRing outer = 1;
612
+ */
613
+ outer?: PlanarRing;
614
+
615
+ /**
616
+ * @generated from field: repeated world.PlanarRing holes = 2;
617
+ */
618
+ holes: PlanarRing[];
619
+ };
620
+
621
+ /**
622
+ * Describes the message world.PlanarPolygon.
623
+ * Use `create(PlanarPolygonSchema)` to create a new message.
624
+ */
625
+ export declare const PlanarPolygonSchema: GenMessage<PlanarPolygon>;
626
+
627
+ /**
628
+ * 2.5D geometry in WGS 84
629
+ *
630
+ * @generated from message world.PlanarGeometry
631
+ */
632
+ export declare type PlanarGeometry = Message<"world.PlanarGeometry"> & {
633
+ /**
634
+ * @generated from oneof world.PlanarGeometry.plane
635
+ */
636
+ plane: {
637
+ /**
638
+ * @generated from field: world.PlanarPoint point = 1;
639
+ */
640
+ value: PlanarPoint;
641
+ case: "point";
642
+ } | {
643
+ /**
644
+ * @generated from field: world.PlanarRing line = 2;
645
+ */
646
+ value: PlanarRing;
647
+ case: "line";
648
+ } | {
649
+ /**
650
+ * @generated from field: world.PlanarPolygon polygon = 3;
651
+ */
652
+ value: PlanarPolygon;
653
+ case: "polygon";
654
+ } | { case: undefined; value?: undefined };
655
+ };
656
+
657
+ /**
658
+ * Describes the message world.PlanarGeometry.
659
+ * Use `create(PlanarGeometrySchema)` to create a new message.
660
+ */
661
+ export declare const PlanarGeometrySchema: GenMessage<PlanarGeometry>;
662
+
416
663
  /**
417
664
  * @generated from message world.Geometry
418
665
  */
419
666
  export declare type Geometry = Message<"world.Geometry"> & {
420
667
  /**
421
- * @generated from field: bytes wkb = 1;
668
+ * @generated from field: bytes wkb = 1 [deprecated = true];
669
+ * @deprecated
422
670
  */
423
671
  wkb: Uint8Array;
672
+
673
+ /**
674
+ * @generated from field: world.PlanarGeometry planar = 2;
675
+ */
676
+ planar?: PlanarGeometry;
424
677
  };
425
678
 
426
679
  /**
@@ -430,23 +683,150 @@ export declare type Geometry = Message<"world.Geometry"> & {
430
683
  export declare const GeometrySchema: GenMessage<Geometry>;
431
684
 
432
685
  /**
433
- * @generated from message world.ListEntitiesRequest
686
+ * @generated from message world.EntityFilter
434
687
  */
435
- export declare type ListEntitiesRequest = Message<"world.ListEntitiesRequest"> & {
688
+ export declare type EntityFilter = Message<"world.EntityFilter"> & {
436
689
  /**
437
- * @generated from field: optional world.Geometry geo = 2;
690
+ * exact match on entity id
691
+ *
692
+ * @generated from field: optional string id = 1;
438
693
  */
439
- geo?: Geometry;
694
+ id?: string;
440
695
 
441
696
  /**
442
- * @generated from field: optional world.TaskableContext taskableContext = 3;
697
+ * exact match on entity label
698
+ *
699
+ * @generated from field: optional string label = 2;
443
700
  */
444
- taskableContext?: TaskableContext;
701
+ label?: string;
445
702
 
446
703
  /**
447
- * @generated from field: optional world.TaskableAssignee TaskableAssignee = 4;
704
+ * entity geo intersects with geometry/bounds
705
+ *
706
+ * @generated from field: optional world.GeoFilter geo = 3;
448
707
  */
449
- TaskableAssignee?: TaskableAssignee;
708
+ geo?: GeoFilter;
709
+
710
+ /**
711
+ * @generated from field: optional world.TaskableFilter taskable = 4;
712
+ */
713
+ taskable?: TaskableFilter;
714
+
715
+ /**
716
+ * entity must have ALL these components
717
+ *
718
+ * @generated from field: repeated uint32 component = 5;
719
+ */
720
+ component: number[];
721
+
722
+ /**
723
+ * @generated from field: optional world.ConfigurationFilter config = 51;
724
+ */
725
+ config?: ConfigurationFilter;
726
+
727
+ /**
728
+ * matches if ANY child filter matches
729
+ *
730
+ * @generated from field: repeated world.EntityFilter or = 100;
731
+ */
732
+ or: EntityFilter[];
733
+
734
+ /**
735
+ * matches if child filter does NOT match
736
+ *
737
+ * @generated from field: world.EntityFilter not = 101;
738
+ */
739
+ not?: EntityFilter;
740
+ };
741
+
742
+ /**
743
+ * Describes the message world.EntityFilter.
744
+ * Use `create(EntityFilterSchema)` to create a new message.
745
+ */
746
+ export declare const EntityFilterSchema: GenMessage<EntityFilter>;
747
+
748
+ /**
749
+ * @generated from message world.TaskableFilter
750
+ */
751
+ export declare type TaskableFilter = Message<"world.TaskableFilter"> & {
752
+ /**
753
+ * @generated from field: optional world.TaskableContext context = 1;
754
+ */
755
+ context?: TaskableContext;
756
+
757
+ /**
758
+ * @generated from field: optional world.TaskableAssignee assignee = 2;
759
+ */
760
+ assignee?: TaskableAssignee;
761
+ };
762
+
763
+ /**
764
+ * Describes the message world.TaskableFilter.
765
+ * Use `create(TaskableFilterSchema)` to create a new message.
766
+ */
767
+ export declare const TaskableFilterSchema: GenMessage<TaskableFilter>;
768
+
769
+ /**
770
+ * @generated from message world.GeoFilter
771
+ */
772
+ export declare type GeoFilter = Message<"world.GeoFilter"> & {
773
+ /**
774
+ * @generated from oneof world.GeoFilter.geo
775
+ */
776
+ geo: {
777
+ /**
778
+ * intersects with this geometry (bounding box check)
779
+ *
780
+ * @generated from field: world.Geometry geometry = 1;
781
+ */
782
+ value: Geometry;
783
+ case: "geometry";
784
+ } | {
785
+ /**
786
+ * intersects with another entity's geo bounds
787
+ *
788
+ * @generated from field: string geoEntityId = 2;
789
+ */
790
+ value: string;
791
+ case: "geoEntityId";
792
+ } | { case: undefined; value?: undefined };
793
+ };
794
+
795
+ /**
796
+ * Describes the message world.GeoFilter.
797
+ * Use `create(GeoFilterSchema)` to create a new message.
798
+ */
799
+ export declare const GeoFilterSchema: GenMessage<GeoFilter>;
800
+
801
+ /**
802
+ * @generated from message world.ConfigurationFilter
803
+ */
804
+ export declare type ConfigurationFilter = Message<"world.ConfigurationFilter"> & {
805
+ /**
806
+ * @generated from field: optional string controller = 1;
807
+ */
808
+ controller?: string;
809
+
810
+ /**
811
+ * @generated from field: optional string key = 2;
812
+ */
813
+ key?: string;
814
+ };
815
+
816
+ /**
817
+ * Describes the message world.ConfigurationFilter.
818
+ * Use `create(ConfigurationFilterSchema)` to create a new message.
819
+ */
820
+ export declare const ConfigurationFilterSchema: GenMessage<ConfigurationFilter>;
821
+
822
+ /**
823
+ * @generated from message world.ListEntitiesRequest
824
+ */
825
+ export declare type ListEntitiesRequest = Message<"world.ListEntitiesRequest"> & {
826
+ /**
827
+ * @generated from field: world.EntityFilter filter = 2;
828
+ */
829
+ filter?: EntityFilter;
450
830
  };
451
831
 
452
832
  /**
@@ -663,7 +1043,7 @@ export enum Priority {
663
1043
 
664
1044
  /**
665
1045
  * Ignore bandwidth limit, send as hard as physically possible.
666
- * Use this only if absolutely sure you understand the operational consequences.
1046
+ * Use this only if absolutely sure you understand the operational consequences.
667
1047
  * Doing this wrong can jeopardize missions
668
1048
  *
669
1049
  * @generated from enum value: PriorityBurst = 3;
@@ -676,6 +1056,41 @@ export enum Priority {
676
1056
  */
677
1057
  export declare const PrioritySchema: GenEnum<Priority>;
678
1058
 
1059
+ /**
1060
+ * @generated from enum world.CameraProtocol
1061
+ */
1062
+ export enum CameraProtocol {
1063
+ /**
1064
+ * @generated from enum value: CameraProtocolUnspecified = 0;
1065
+ */
1066
+ CameraProtocolUnspecified = 0,
1067
+
1068
+ /**
1069
+ * @generated from enum value: CameraProtocolWebrtc = 1;
1070
+ */
1071
+ CameraProtocolWebrtc = 1,
1072
+
1073
+ /**
1074
+ * @generated from enum value: CameraProtocolHls = 2;
1075
+ */
1076
+ CameraProtocolHls = 2,
1077
+
1078
+ /**
1079
+ * @generated from enum value: CameraProtocolMjpeg = 3;
1080
+ */
1081
+ CameraProtocolMjpeg = 3,
1082
+
1083
+ /**
1084
+ * @generated from enum value: CameraProtocolImage = 4;
1085
+ */
1086
+ CameraProtocolImage = 4,
1087
+ }
1088
+
1089
+ /**
1090
+ * Describes the enum world.CameraProtocol.
1091
+ */
1092
+ export declare const CameraProtocolSchema: GenEnum<CameraProtocol>;
1093
+
679
1094
  /**
680
1095
  * @generated from enum world.EntityChange
681
1096
  */
package/dist/world_pb.js CHANGED
@@ -3,13 +3,13 @@
3
3
  /* eslint-disable */
4
4
 
5
5
  import { enumDesc, fileDesc, messageDesc, serviceDesc, tsEnum } from "@bufbuild/protobuf/codegenv2";
6
- import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
6
+ import { file_google_protobuf_struct, file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
7
7
 
8
8
  /**
9
9
  * Describes the file world.proto.
10
10
  */
11
11
  export const file_world = /*@__PURE__*/
12
- fileDesc("Cgt3b3JsZC5wcm90bxIFd29ybGQiiQYKBkVudGl0eRIKCgJpZBgBIAEoCRISCgVsYWJlbBgCIAEoCUgAiAEBEi0KCmNvbnRyb2xsZXIYAyABKAsyFC53b3JsZC5Db250cm9sbGVyUmVmSAGIAQESJgoIbGlmZXRpbWUYBCABKAsyDy53b3JsZC5MaWZldGltZUgCiAEBEiYKCHByaW9yaXR5GAUgASgOMg8ud29ybGQuUHJpb3JpdHlIA4gBARIsCgNnZW8YCyABKAsyGi53b3JsZC5HZW9TcGF0aWFsQ29tcG9uZW50SASIAQESKwoGc3ltYm9sGAwgASgLMhYud29ybGQuU3ltYm9sQ29tcG9uZW50SAWIAQESKwoGY2FtZXJhGA8gASgLMhYud29ybGQuQ2FtZXJhQ29tcG9uZW50SAaIAQESMQoJZGV0ZWN0aW9uGBAgASgLMhkud29ybGQuRGV0ZWN0aW9uQ29tcG9uZW50SAeIAQESLQoHYmVhcmluZxgRIAEoCzIXLndvcmxkLkJlYXJpbmdDb21wb25lbnRICIgBARJFChNsb2NhdGlvblVuY2VydGFpbnR5GBQgASgLMiMud29ybGQuTG9jYXRpb25VbmNlcnRhaW50eUNvbXBvbmVudEgJiAEBEikKBXRyYWNrGBUgASgLMhUud29ybGQuVHJhY2tDb21wb25lbnRICogBARItCgdsb2NhdG9yGBYgASgLMhcud29ybGQuTG9jYXRvckNvbXBvbmVudEgLiAEBEi8KCHRhc2thYmxlGBcgASgLMhgud29ybGQuVGFza2FibGVDb21wb25lbnRIDIgBAUIICgZfbGFiZWxCDQoLX2NvbnRyb2xsZXJCCwoJX2xpZmV0aW1lQgsKCV9wcmlvcml0eUIGCgRfZ2VvQgkKB19zeW1ib2xCCQoHX2NhbWVyYUIMCgpfZGV0ZWN0aW9uQgoKCF9iZWFyaW5nQhYKFF9sb2NhdGlvblVuY2VydGFpbnR5QggKBl90cmFja0IKCghfbG9jYXRvckILCglfdGFza2FibGUiKQoNQ29udHJvbGxlclJlZhIKCgJpZBgBIAEoCRIMCgRuYW1lGAIgASgJInwKCExpZmV0aW1lEi0KBGZyb20YASABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSACIAQESLgoFdW50aWwYAiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSAGIAQFCBwoFX2Zyb21CCAoGX3VudGlsIkwKE0dlb1NwYXRpYWxDb21wb25lbnQSEQoJbG9uZ2l0dWRlGAEgASgBEhAKCGxhdGl0dWRlGAIgASgBEhAKCGFsdGl0dWRlGAMgASgBIiYKD1N5bWJvbENvbXBvbmVudBITCgttaWxTdGQyNTI1QxgBIAEoCSIkCgZDYW1lcmESDQoFbGFiZWwYASABKAkSCwoDdXJsGAIgASgJIjEKD0NhbWVyYUNvbXBvbmVudBIeCgdjYW1lcmFzGAEgAygLMg0ud29ybGQuQ2FtZXJhIsABChJEZXRlY3Rpb25Db21wb25lbnQSHQoQZGV0ZWN0b3JFbnRpdHlJRBgBIAEoCUgAiAEBEhsKDmNsYXNzaWZpY2F0aW9uGAIgASgJSAGIAQESNQoMbGFzdE1lYXN1cmVkGAMgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgCiAEBQhMKEV9kZXRlY3RvckVudGl0eUlEQhEKD19jbGFzc2lmaWNhdGlvbkIPCg1fbGFzdE1lYXN1cmVkIloKEEJlYXJpbmdDb21wb25lbnQSFAoHYXppbXV0aBgBIAEoAUgAiAEBEhYKCWVsZXZhdGlvbhgCIAEoAUgBiAEBQgoKCF9hemltdXRoQgwKCl9lbGV2YXRpb24irgEKEENvdmFyaWFuY2VNYXRyaXgSEAoDbXh4GAEgASgBSACIAQESEAoDbXh5GAIgASgBSAGIAQESEAoDbXh6GAMgASgBSAKIAQESEAoDbXl5GAQgASgBSAOIAQESEAoDbXl6GAUgASgBSASIAQESEAoDbXp6GAYgASgBSAWIAQFCBgoEX214eEIGCgRfbXh5QgYKBF9teHpCBgoEX215eUIGCgRfbXl6QgYKBF9tenoisAEKHExvY2F0aW9uVW5jZXJ0YWludHlDb21wb25lbnQSNAoOcG9zaXRpb25FbnVDb3YYASABKAsyFy53b3JsZC5Db3ZhcmlhbmNlTWF0cml4SACIAQESNAoOdmVsb2NpdHlFbnVDb3YYAiABKAsyFy53b3JsZC5Db3ZhcmlhbmNlTWF0cml4SAGIAQFCEQoPX3Bvc2l0aW9uRW51Q292QhEKD192ZWxvY2l0eUVudUNvdiIQCg5UcmFja0NvbXBvbmVudCIrChBMb2NhdG9yQ29tcG9uZW50EhcKD2xvY2F0ZWRFbnRpdHlJRBgBIAEoCSI1Cg9UYXNrYWJsZUNvbnRleHQSFQoIZW50aXR5SWQYASABKAlIAIgBAUILCglfZW50aXR5SWQiNgoQVGFza2FibGVBc3NpZ25lZRIVCghlbnRpdHlJZBgBIAEoCUgAiAEBQgsKCV9lbnRpdHlJZCKpAQoRVGFza2FibGVDb21wb25lbnQSFQoIcmVzZXJ2ZWQYASABKAlIAIgBARISCgVsYWJlbBgCIAEoCUgBiAEBEicKB2NvbnRleHQYAyADKAsyFi53b3JsZC5UYXNrYWJsZUNvbnRleHQSKQoIYXNzaWduZWUYBCADKAsyFy53b3JsZC5UYXNrYWJsZUFzc2lnbmVlQgsKCV9yZXNlcnZlZEIICgZfbGFiZWwiFwoIR2VvbWV0cnkSCwoDd2tiGAEgASgMItcBChNMaXN0RW50aXRpZXNSZXF1ZXN0EiEKA2dlbxgCIAEoCzIPLndvcmxkLkdlb21ldHJ5SACIAQESNAoPdGFza2FibGVDb250ZXh0GAMgASgLMhYud29ybGQuVGFza2FibGVDb250ZXh0SAGIAQESNgoQVGFza2FibGVBc3NpZ25lZRgEIAEoCzIXLndvcmxkLlRhc2thYmxlQXNzaWduZWVIAogBAUIGCgRfZ2VvQhIKEF90YXNrYWJsZUNvbnRleHRCEwoRX1Rhc2thYmxlQXNzaWduZWUiNwoUTGlzdEVudGl0aWVzUmVzcG9uc2USHwoIZW50aXRpZXMYASADKAsyDS53b3JsZC5FbnRpdHkiNQoTRW50aXR5Q2hhbmdlUmVxdWVzdBIeCgdjaGFuZ2VzGAEgAygLMg0ud29ybGQuRW50aXR5IjcKFEVudGl0eUNoYW5nZVJlc3BvbnNlEhAKCGFjY2VwdGVkGAEgASgIEg0KBWRlYnVnGAIgASgJIlIKEUVudGl0eUNoYW5nZUV2ZW50Eh0KBmVudGl0eRgBIAEoCzINLndvcmxkLkVudGl0eRIeCgF0GAIgASgOMhMud29ybGQuRW50aXR5Q2hhbmdlIh4KEEdldEVudGl0eVJlcXVlc3QSCgoCaWQYASABKAkiMgoRR2V0RW50aXR5UmVzcG9uc2USHQoGZW50aXR5GAEgASgLMg0ud29ybGQuRW50aXR5IhEKD09ic2VydmVyUmVxdWVzdCJzCg1PYnNlcnZlclN0YXRlEhwKA2dlbxgBIAEoCzIPLndvcmxkLkdlb21ldHJ5EjQKC3ZpZXdIaXN0b3J5GAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgAiAEBQg4KDF92aWV3SGlzdG9yeSIiCg5SdW5UYXNrUmVxdWVzdBIQCghlbnRpdHlJZBgBIAEoCSKDAQoPUnVuVGFza1Jlc3BvbnNlEhMKC2V4ZWN1dGlvbklkGAEgASgJEiEKBnN0YXR1cxgCIAEoDjIRLndvcmxkLlRhc2tTdGF0dXMSIAoTaHVtYW5SZWFkYWJsZVJlYXNvbhgDIAEoCUgAiAEBQhYKFF9odW1hblJlYWRhYmxlUmVhc29uKlcKCFByaW9yaXR5EhUKEVByaW9yaXR5UmVzZXJ2ZWQwEAASDwoLUHJpb3JpdHlMb3cQARIQCgxQcmlvcml0eUhpZ2gQAhIRCg1Qcmlvcml0eUJ1cnN0EAMqdQoMRW50aXR5Q2hhbmdlEhcKE0VudGl0eUNoYW5nZUludmFsaWQQABIXChNFbnRpdHlDaGFuZ2VVcGRhdGVkEAESFwoTRW50aXR5Q2hhbmdlRXhwaXJlZBACEhoKFkVudGl0eUNoYW5nZVVub2JzZXJ2ZWQQAyppCgpUYXNrU3RhdHVzEhUKEVRhc2tTdGF0dXNJbnZhbGlkEAASFQoRVGFza1N0YXR1c1J1bm5pbmcQARIXChNUYXNrU3RhdHVzQ29tcGxldGVkEAISFAoQVGFza1N0YXR1c0ZhaWxlZBADMpYDCgxXb3JsZFNlcnZpY2USRwoMTGlzdEVudGl0aWVzEhoud29ybGQuTGlzdEVudGl0aWVzUmVxdWVzdBobLndvcmxkLkxpc3RFbnRpdGllc1Jlc3BvbnNlEj4KCUdldEVudGl0eRIXLndvcmxkLkdldEVudGl0eVJlcXVlc3QaGC53b3JsZC5HZXRFbnRpdHlSZXNwb25zZRJHCg1XYXRjaEVudGl0aWVzEhoud29ybGQuTGlzdEVudGl0aWVzUmVxdWVzdBoYLndvcmxkLkVudGl0eUNoYW5nZUV2ZW50MAESPwoEUHVzaBIaLndvcmxkLkVudGl0eUNoYW5nZVJlcXVlc3QaGy53b3JsZC5FbnRpdHlDaGFuZ2VSZXNwb25zZRI5CgdPYnNlcnZlEhYud29ybGQuT2JzZXJ2ZXJSZXF1ZXN0GhQud29ybGQuT2JzZXJ2ZXJTdGF0ZTABEjgKB1J1blRhc2sSFS53b3JsZC5SdW5UYXNrUmVxdWVzdBoWLndvcmxkLlJ1blRhc2tSZXNwb25zZUIgWh5naXRodWIuY29tL3Byb2plY3RxYWkvcHJvdG8vZ29iBnByb3RvMw", [file_google_protobuf_timestamp]);
12
+ fileDesc("Cgt3b3JsZC5wcm90bxIFd29ybGQi3AcKBkVudGl0eRIKCgJpZBgBIAEoCRISCgVsYWJlbBgCIAEoCUgAiAEBEi0KCmNvbnRyb2xsZXIYAyABKAsyFC53b3JsZC5Db250cm9sbGVyUmVmSAGIAQESJgoIbGlmZXRpbWUYBCABKAsyDy53b3JsZC5MaWZldGltZUgCiAEBEiYKCHByaW9yaXR5GAUgASgOMg8ud29ybGQuUHJpb3JpdHlIA4gBARIsCgNnZW8YCyABKAsyGi53b3JsZC5HZW9TcGF0aWFsQ29tcG9uZW50SASIAQESKwoGc3ltYm9sGAwgASgLMhYud29ybGQuU3ltYm9sQ29tcG9uZW50SAWIAQESKwoGY2FtZXJhGA8gASgLMhYud29ybGQuQ2FtZXJhQ29tcG9uZW50SAaIAQESMQoJZGV0ZWN0aW9uGBAgASgLMhkud29ybGQuRGV0ZWN0aW9uQ29tcG9uZW50SAeIAQESLQoHYmVhcmluZxgRIAEoCzIXLndvcmxkLkJlYXJpbmdDb21wb25lbnRICIgBARJFChNsb2NhdGlvblVuY2VydGFpbnR5GBQgASgLMiMud29ybGQuTG9jYXRpb25VbmNlcnRhaW50eUNvbXBvbmVudEgJiAEBEikKBXRyYWNrGBUgASgLMhUud29ybGQuVHJhY2tDb21wb25lbnRICogBARItCgdsb2NhdG9yGBYgASgLMhcud29ybGQuTG9jYXRvckNvbXBvbmVudEgLiAEBEi8KCHRhc2thYmxlGBcgASgLMhgud29ybGQuVGFza2FibGVDb21wb25lbnRIDIgBARIzCgpraW5lbWF0aWNzGBggASgLMhoud29ybGQuS2luZW1hdGljc0NvbXBvbmVudEgNiAEBEiwKBXNoYXBlGBkgASgLMhgud29ybGQuR2VvU2hhcGVDb21wb25lbnRIDogBARIyCgZjb25maWcYMyABKAsyHS53b3JsZC5Db25maWd1cmF0aW9uQ29tcG9uZW50SA+IAQFCCAoGX2xhYmVsQg0KC19jb250cm9sbGVyQgsKCV9saWZldGltZUILCglfcHJpb3JpdHlCBgoEX2dlb0IJCgdfc3ltYm9sQgkKB19jYW1lcmFCDAoKX2RldGVjdGlvbkIKCghfYmVhcmluZ0IWChRfbG9jYXRpb25VbmNlcnRhaW50eUIICgZfdHJhY2tCCgoIX2xvY2F0b3JCCwoJX3Rhc2thYmxlQg0KC19raW5lbWF0aWNzQggKBl9zaGFwZUIJCgdfY29uZmlnSgQIBxAISgQICBAJSgQICRAKSgQIChALIikKDUNvbnRyb2xsZXJSZWYSCgoCaWQYASABKAkSDAoEbmFtZRgCIAEoCSJ8CghMaWZldGltZRItCgRmcm9tGAEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgAiAEBEi4KBXVudGlsGAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgBiAEBQgcKBV9mcm9tQggKBl91bnRpbCJeChNHZW9TcGF0aWFsQ29tcG9uZW50EhEKCWxvbmdpdHVkZRgBIAEoARIQCghsYXRpdHVkZRgCIAEoARIVCghhbHRpdHVkZRgDIAEoAUgAiAEBQgsKCV9hbHRpdHVkZSImCg9TeW1ib2xDb21wb25lbnQSEwoLbWlsU3RkMjUyNUMYASABKAkiTQoGQ2FtZXJhEg0KBWxhYmVsGAEgASgJEgsKA3VybBgCIAEoCRInCghwcm90b2NvbBgDIAEoDjIVLndvcmxkLkNhbWVyYVByb3RvY29sIjEKD0NhbWVyYUNvbXBvbmVudBIeCgdjYW1lcmFzGAEgAygLMg0ud29ybGQuQ2FtZXJhIsABChJEZXRlY3Rpb25Db21wb25lbnQSHQoQZGV0ZWN0b3JFbnRpdHlJZBgBIAEoCUgAiAEBEhsKDmNsYXNzaWZpY2F0aW9uGAIgASgJSAGIAQESNQoMbGFzdE1lYXN1cmVkGAMgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgCiAEBQhMKEV9kZXRlY3RvckVudGl0eUlkQhEKD19jbGFzc2lmaWNhdGlvbkIPCg1fbGFzdE1lYXN1cmVkIloKEEJlYXJpbmdDb21wb25lbnQSFAoHYXppbXV0aBgBIAEoAUgAiAEBEhYKCWVsZXZhdGlvbhgCIAEoAUgBiAEBQgoKCF9hemltdXRoQgwKCl9lbGV2YXRpb24irgEKEENvdmFyaWFuY2VNYXRyaXgSEAoDbXh4GAEgASgBSACIAQESEAoDbXh5GAIgASgBSAGIAQESEAoDbXh6GAMgASgBSAKIAQESEAoDbXl5GAQgASgBSAOIAQESEAoDbXl6GAUgASgBSASIAQESEAoDbXp6GAYgASgBSAWIAQFCBgoEX214eEIGCgRfbXh5QgYKBF9teHpCBgoEX215eUIGCgRfbXl6QgYKBF9tenoisAEKHExvY2F0aW9uVW5jZXJ0YWludHlDb21wb25lbnQSNAoOcG9zaXRpb25FbnVDb3YYASABKAsyFy53b3JsZC5Db3ZhcmlhbmNlTWF0cml4SACIAQESNAoOdmVsb2NpdHlFbnVDb3YYAiABKAsyFy53b3JsZC5Db3ZhcmlhbmNlTWF0cml4SAGIAQFCEQoPX3Bvc2l0aW9uRW51Q292QhEKD192ZWxvY2l0eUVudUNvdiIQCg5UcmFja0NvbXBvbmVudCIrChBMb2NhdG9yQ29tcG9uZW50EhcKD2xvY2F0ZWRFbnRpdHlJZBgBIAEoCSI1Cg9UYXNrYWJsZUNvbnRleHQSFQoIZW50aXR5SWQYASABKAlIAIgBAUILCglfZW50aXR5SWQiNgoQVGFza2FibGVBc3NpZ25lZRIVCghlbnRpdHlJZBgBIAEoCUgAiAEBQgsKCV9lbnRpdHlJZCKpAQoRVGFza2FibGVDb21wb25lbnQSFQoIcmVzZXJ2ZWQYASABKAlIAIgBARISCgVsYWJlbBgCIAEoCUgBiAEBEicKB2NvbnRleHQYAyADKAsyFi53b3JsZC5UYXNrYWJsZUNvbnRleHQSKQoIYXNzaWduZWUYBCADKAsyFy53b3JsZC5UYXNrYWJsZUFzc2lnbmVlQgsKCV9yZXNlcnZlZEIICgZfbGFiZWwiYQoNS2luZW1hdGljc0VudRIRCgRlYXN0GAEgASgBSACIAQESEgoFbm9ydGgYAiABKAFIAYgBARIPCgJ1cBgDIAEoAUgCiAEBQgcKBV9lYXN0QggKBl9ub3J0aEIFCgNfdXAinQEKE0tpbmVtYXRpY3NDb21wb25lbnQSLgoLdmVsb2NpdHlFbnUYASABKAsyFC53b3JsZC5LaW5lbWF0aWNzRW51SACIAQESMgoPYWNjZWxlcmF0aW9uRW51GAIgASgLMhQud29ybGQuS2luZW1hdGljc0VudUgBiAEBQg4KDF92ZWxvY2l0eUVudUISChBfYWNjZWxlcmF0aW9uRW51IkgKEUdlb1NoYXBlQ29tcG9uZW50EiYKCGdlb21ldHJ5GAEgASgLMg8ud29ybGQuR2VvbWV0cnlIAIgBAUILCglfZ2VvbWV0cnkiYQoWQ29uZmlndXJhdGlvbkNvbXBvbmVudBISCgpjb250cm9sbGVyGAEgASgJEgsKA2tleRgCIAEoCRImCgV2YWx1ZRgDIAEoCzIXLmdvb2dsZS5wcm90b2J1Zi5TdHJ1Y3QiVgoLUGxhbmFyUG9pbnQSEQoJbG9uZ2l0dWRlGAEgASgBEhAKCGxhdGl0dWRlGAIgASgBEhUKCGFsdGl0dWRlGAMgASgBSACIAQFCCwoJX2FsdGl0dWRlIjAKClBsYW5hclJpbmcSIgoGcG9pbnRzGAEgAygLMhIud29ybGQuUGxhbmFyUG9pbnQiUwoNUGxhbmFyUG9seWdvbhIgCgVvdXRlchgBIAEoCzIRLndvcmxkLlBsYW5hclJpbmcSIAoFaG9sZXMYAiADKAsyES53b3JsZC5QbGFuYXJSaW5nIooBCg5QbGFuYXJHZW9tZXRyeRIjCgVwb2ludBgBIAEoCzISLndvcmxkLlBsYW5hclBvaW50SAASIQoEbGluZRgCIAEoCzIRLndvcmxkLlBsYW5hclJpbmdIABInCgdwb2x5Z29uGAMgASgLMhQud29ybGQuUGxhbmFyUG9seWdvbkgAQgcKBXBsYW5lIkIKCEdlb21ldHJ5Eg8KA3drYhgBIAEoDEICGAESJQoGcGxhbmFyGAIgASgLMhUud29ybGQuUGxhbmFyR2VvbWV0cnkivQIKDEVudGl0eUZpbHRlchIPCgJpZBgBIAEoCUgAiAEBEhIKBWxhYmVsGAIgASgJSAGIAQESIgoDZ2VvGAMgASgLMhAud29ybGQuR2VvRmlsdGVySAKIAQESLAoIdGFza2FibGUYBCABKAsyFS53b3JsZC5UYXNrYWJsZUZpbHRlckgDiAEBEhEKCWNvbXBvbmVudBgFIAMoDRIvCgZjb25maWcYMyABKAsyGi53b3JsZC5Db25maWd1cmF0aW9uRmlsdGVySASIAQESHwoCb3IYZCADKAsyEy53b3JsZC5FbnRpdHlGaWx0ZXISIAoDbm90GGUgASgLMhMud29ybGQuRW50aXR5RmlsdGVyQgUKA19pZEIICgZfbGFiZWxCBgoEX2dlb0ILCglfdGFza2FibGVCCQoHX2NvbmZpZyKHAQoOVGFza2FibGVGaWx0ZXISLAoHY29udGV4dBgBIAEoCzIWLndvcmxkLlRhc2thYmxlQ29udGV4dEgAiAEBEi4KCGFzc2lnbmVlGAIgASgLMhcud29ybGQuVGFza2FibGVBc3NpZ25lZUgBiAEBQgoKCF9jb250ZXh0QgsKCV9hc3NpZ25lZSJOCglHZW9GaWx0ZXISIwoIZ2VvbWV0cnkYASABKAsyDy53b3JsZC5HZW9tZXRyeUgAEhUKC2dlb0VudGl0eUlkGAIgASgJSABCBQoDZ2VvIlcKE0NvbmZpZ3VyYXRpb25GaWx0ZXISFwoKY29udHJvbGxlchgBIAEoCUgAiAEBEhAKA2tleRgCIAEoCUgBiAEBQg0KC19jb250cm9sbGVyQgYKBF9rZXkiQAoTTGlzdEVudGl0aWVzUmVxdWVzdBIjCgZmaWx0ZXIYAiABKAsyEy53b3JsZC5FbnRpdHlGaWx0ZXJKBAgBEAIiNwoUTGlzdEVudGl0aWVzUmVzcG9uc2USHwoIZW50aXRpZXMYASADKAsyDS53b3JsZC5FbnRpdHkiNQoTRW50aXR5Q2hhbmdlUmVxdWVzdBIeCgdjaGFuZ2VzGAEgAygLMg0ud29ybGQuRW50aXR5IjcKFEVudGl0eUNoYW5nZVJlc3BvbnNlEhAKCGFjY2VwdGVkGAEgASgIEg0KBWRlYnVnGAIgASgJIlIKEUVudGl0eUNoYW5nZUV2ZW50Eh0KBmVudGl0eRgBIAEoCzINLndvcmxkLkVudGl0eRIeCgF0GAIgASgOMhMud29ybGQuRW50aXR5Q2hhbmdlIh4KEEdldEVudGl0eVJlcXVlc3QSCgoCaWQYASABKAkiMgoRR2V0RW50aXR5UmVzcG9uc2USHQoGZW50aXR5GAEgASgLMg0ud29ybGQuRW50aXR5IhEKD09ic2VydmVyUmVxdWVzdCJzCg1PYnNlcnZlclN0YXRlEhwKA2dlbxgBIAEoCzIPLndvcmxkLkdlb21ldHJ5EjQKC3ZpZXdIaXN0b3J5GAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgAiAEBQg4KDF92aWV3SGlzdG9yeSIiCg5SdW5UYXNrUmVxdWVzdBIQCghlbnRpdHlJZBgBIAEoCSKDAQoPUnVuVGFza1Jlc3BvbnNlEhMKC2V4ZWN1dGlvbklkGAEgASgJEiEKBnN0YXR1cxgCIAEoDjIRLndvcmxkLlRhc2tTdGF0dXMSIAoTaHVtYW5SZWFkYWJsZVJlYXNvbhgDIAEoCUgAiAEBQhYKFF9odW1hblJlYWRhYmxlUmVhc29uKlcKCFByaW9yaXR5EhUKEVByaW9yaXR5UmVzZXJ2ZWQwEAASDwoLUHJpb3JpdHlMb3cQARIQCgxQcmlvcml0eUhpZ2gQAhIRCg1Qcmlvcml0eUJ1cnN0EAMqkgEKDkNhbWVyYVByb3RvY29sEh0KGUNhbWVyYVByb3RvY29sVW5zcGVjaWZpZWQQABIYChRDYW1lcmFQcm90b2NvbFdlYnJ0YxABEhUKEUNhbWVyYVByb3RvY29sSGxzEAISFwoTQ2FtZXJhUHJvdG9jb2xNanBlZxADEhcKE0NhbWVyYVByb3RvY29sSW1hZ2UQBCp1CgxFbnRpdHlDaGFuZ2USFwoTRW50aXR5Q2hhbmdlSW52YWxpZBAAEhcKE0VudGl0eUNoYW5nZVVwZGF0ZWQQARIXChNFbnRpdHlDaGFuZ2VFeHBpcmVkEAISGgoWRW50aXR5Q2hhbmdlVW5vYnNlcnZlZBADKmkKClRhc2tTdGF0dXMSFQoRVGFza1N0YXR1c0ludmFsaWQQABIVChFUYXNrU3RhdHVzUnVubmluZxABEhcKE1Rhc2tTdGF0dXNDb21wbGV0ZWQQAhIUChBUYXNrU3RhdHVzRmFpbGVkEAMylgMKDFdvcmxkU2VydmljZRJHCgxMaXN0RW50aXRpZXMSGi53b3JsZC5MaXN0RW50aXRpZXNSZXF1ZXN0Ghsud29ybGQuTGlzdEVudGl0aWVzUmVzcG9uc2USPgoJR2V0RW50aXR5Ehcud29ybGQuR2V0RW50aXR5UmVxdWVzdBoYLndvcmxkLkdldEVudGl0eVJlc3BvbnNlEkcKDVdhdGNoRW50aXRpZXMSGi53b3JsZC5MaXN0RW50aXRpZXNSZXF1ZXN0Ghgud29ybGQuRW50aXR5Q2hhbmdlRXZlbnQwARI/CgRQdXNoEhoud29ybGQuRW50aXR5Q2hhbmdlUmVxdWVzdBobLndvcmxkLkVudGl0eUNoYW5nZVJlc3BvbnNlEjkKB09ic2VydmUSFi53b3JsZC5PYnNlcnZlclJlcXVlc3QaFC53b3JsZC5PYnNlcnZlclN0YXRlMAESOAoHUnVuVGFzaxIVLndvcmxkLlJ1blRhc2tSZXF1ZXN0GhYud29ybGQuUnVuVGFza1Jlc3BvbnNlQiBaHmdpdGh1Yi5jb20vcHJvamVjdHFhaS9wcm90by9nb2IGcHJvdG8z", [file_google_protobuf_struct, file_google_protobuf_timestamp]);
13
13
 
14
14
  /**
15
15
  * Describes the message world.Entity.
@@ -123,89 +123,173 @@ export const TaskableAssigneeSchema = /*@__PURE__*/
123
123
  export const TaskableComponentSchema = /*@__PURE__*/
124
124
  messageDesc(file_world, 15);
125
125
 
126
+ /**
127
+ * Describes the message world.KinematicsEnu.
128
+ * Use `create(KinematicsEnuSchema)` to create a new message.
129
+ */
130
+ export const KinematicsEnuSchema = /*@__PURE__*/
131
+ messageDesc(file_world, 16);
132
+
133
+ /**
134
+ * Describes the message world.KinematicsComponent.
135
+ * Use `create(KinematicsComponentSchema)` to create a new message.
136
+ */
137
+ export const KinematicsComponentSchema = /*@__PURE__*/
138
+ messageDesc(file_world, 17);
139
+
140
+ /**
141
+ * Describes the message world.GeoShapeComponent.
142
+ * Use `create(GeoShapeComponentSchema)` to create a new message.
143
+ */
144
+ export const GeoShapeComponentSchema = /*@__PURE__*/
145
+ messageDesc(file_world, 18);
146
+
147
+ /**
148
+ * Describes the message world.ConfigurationComponent.
149
+ * Use `create(ConfigurationComponentSchema)` to create a new message.
150
+ */
151
+ export const ConfigurationComponentSchema = /*@__PURE__*/
152
+ messageDesc(file_world, 19);
153
+
154
+ /**
155
+ * Describes the message world.PlanarPoint.
156
+ * Use `create(PlanarPointSchema)` to create a new message.
157
+ */
158
+ export const PlanarPointSchema = /*@__PURE__*/
159
+ messageDesc(file_world, 20);
160
+
161
+ /**
162
+ * Describes the message world.PlanarRing.
163
+ * Use `create(PlanarRingSchema)` to create a new message.
164
+ */
165
+ export const PlanarRingSchema = /*@__PURE__*/
166
+ messageDesc(file_world, 21);
167
+
168
+ /**
169
+ * Describes the message world.PlanarPolygon.
170
+ * Use `create(PlanarPolygonSchema)` to create a new message.
171
+ */
172
+ export const PlanarPolygonSchema = /*@__PURE__*/
173
+ messageDesc(file_world, 22);
174
+
175
+ /**
176
+ * Describes the message world.PlanarGeometry.
177
+ * Use `create(PlanarGeometrySchema)` to create a new message.
178
+ */
179
+ export const PlanarGeometrySchema = /*@__PURE__*/
180
+ messageDesc(file_world, 23);
181
+
126
182
  /**
127
183
  * Describes the message world.Geometry.
128
184
  * Use `create(GeometrySchema)` to create a new message.
129
185
  */
130
186
  export const GeometrySchema = /*@__PURE__*/
131
- messageDesc(file_world, 16);
187
+ messageDesc(file_world, 24);
188
+
189
+ /**
190
+ * Describes the message world.EntityFilter.
191
+ * Use `create(EntityFilterSchema)` to create a new message.
192
+ */
193
+ export const EntityFilterSchema = /*@__PURE__*/
194
+ messageDesc(file_world, 25);
195
+
196
+ /**
197
+ * Describes the message world.TaskableFilter.
198
+ * Use `create(TaskableFilterSchema)` to create a new message.
199
+ */
200
+ export const TaskableFilterSchema = /*@__PURE__*/
201
+ messageDesc(file_world, 26);
202
+
203
+ /**
204
+ * Describes the message world.GeoFilter.
205
+ * Use `create(GeoFilterSchema)` to create a new message.
206
+ */
207
+ export const GeoFilterSchema = /*@__PURE__*/
208
+ messageDesc(file_world, 27);
209
+
210
+ /**
211
+ * Describes the message world.ConfigurationFilter.
212
+ * Use `create(ConfigurationFilterSchema)` to create a new message.
213
+ */
214
+ export const ConfigurationFilterSchema = /*@__PURE__*/
215
+ messageDesc(file_world, 28);
132
216
 
133
217
  /**
134
218
  * Describes the message world.ListEntitiesRequest.
135
219
  * Use `create(ListEntitiesRequestSchema)` to create a new message.
136
220
  */
137
221
  export const ListEntitiesRequestSchema = /*@__PURE__*/
138
- messageDesc(file_world, 17);
222
+ messageDesc(file_world, 29);
139
223
 
140
224
  /**
141
225
  * Describes the message world.ListEntitiesResponse.
142
226
  * Use `create(ListEntitiesResponseSchema)` to create a new message.
143
227
  */
144
228
  export const ListEntitiesResponseSchema = /*@__PURE__*/
145
- messageDesc(file_world, 18);
229
+ messageDesc(file_world, 30);
146
230
 
147
231
  /**
148
232
  * Describes the message world.EntityChangeRequest.
149
233
  * Use `create(EntityChangeRequestSchema)` to create a new message.
150
234
  */
151
235
  export const EntityChangeRequestSchema = /*@__PURE__*/
152
- messageDesc(file_world, 19);
236
+ messageDesc(file_world, 31);
153
237
 
154
238
  /**
155
239
  * Describes the message world.EntityChangeResponse.
156
240
  * Use `create(EntityChangeResponseSchema)` to create a new message.
157
241
  */
158
242
  export const EntityChangeResponseSchema = /*@__PURE__*/
159
- messageDesc(file_world, 20);
243
+ messageDesc(file_world, 32);
160
244
 
161
245
  /**
162
246
  * Describes the message world.EntityChangeEvent.
163
247
  * Use `create(EntityChangeEventSchema)` to create a new message.
164
248
  */
165
249
  export const EntityChangeEventSchema = /*@__PURE__*/
166
- messageDesc(file_world, 21);
250
+ messageDesc(file_world, 33);
167
251
 
168
252
  /**
169
253
  * Describes the message world.GetEntityRequest.
170
254
  * Use `create(GetEntityRequestSchema)` to create a new message.
171
255
  */
172
256
  export const GetEntityRequestSchema = /*@__PURE__*/
173
- messageDesc(file_world, 22);
257
+ messageDesc(file_world, 34);
174
258
 
175
259
  /**
176
260
  * Describes the message world.GetEntityResponse.
177
261
  * Use `create(GetEntityResponseSchema)` to create a new message.
178
262
  */
179
263
  export const GetEntityResponseSchema = /*@__PURE__*/
180
- messageDesc(file_world, 23);
264
+ messageDesc(file_world, 35);
181
265
 
182
266
  /**
183
267
  * Describes the message world.ObserverRequest.
184
268
  * Use `create(ObserverRequestSchema)` to create a new message.
185
269
  */
186
270
  export const ObserverRequestSchema = /*@__PURE__*/
187
- messageDesc(file_world, 24);
271
+ messageDesc(file_world, 36);
188
272
 
189
273
  /**
190
274
  * Describes the message world.ObserverState.
191
275
  * Use `create(ObserverStateSchema)` to create a new message.
192
276
  */
193
277
  export const ObserverStateSchema = /*@__PURE__*/
194
- messageDesc(file_world, 25);
278
+ messageDesc(file_world, 37);
195
279
 
196
280
  /**
197
281
  * Describes the message world.RunTaskRequest.
198
282
  * Use `create(RunTaskRequestSchema)` to create a new message.
199
283
  */
200
284
  export const RunTaskRequestSchema = /*@__PURE__*/
201
- messageDesc(file_world, 26);
285
+ messageDesc(file_world, 38);
202
286
 
203
287
  /**
204
288
  * Describes the message world.RunTaskResponse.
205
289
  * Use `create(RunTaskResponseSchema)` to create a new message.
206
290
  */
207
291
  export const RunTaskResponseSchema = /*@__PURE__*/
208
- messageDesc(file_world, 27);
292
+ messageDesc(file_world, 39);
209
293
 
210
294
  /**
211
295
  * Describes the enum world.Priority.
@@ -219,11 +303,23 @@ export const PrioritySchema = /*@__PURE__*/
219
303
  export const Priority = /*@__PURE__*/
220
304
  tsEnum(PrioritySchema);
221
305
 
306
+ /**
307
+ * Describes the enum world.CameraProtocol.
308
+ */
309
+ export const CameraProtocolSchema = /*@__PURE__*/
310
+ enumDesc(file_world, 1);
311
+
312
+ /**
313
+ * @generated from enum world.CameraProtocol
314
+ */
315
+ export const CameraProtocol = /*@__PURE__*/
316
+ tsEnum(CameraProtocolSchema);
317
+
222
318
  /**
223
319
  * Describes the enum world.EntityChange.
224
320
  */
225
321
  export const EntityChangeSchema = /*@__PURE__*/
226
- enumDesc(file_world, 1);
322
+ enumDesc(file_world, 2);
227
323
 
228
324
  /**
229
325
  * @generated from enum world.EntityChange
@@ -235,7 +331,7 @@ export const EntityChange = /*@__PURE__*/
235
331
  * Describes the enum world.TaskStatus.
236
332
  */
237
333
  export const TaskStatusSchema = /*@__PURE__*/
238
- enumDesc(file_world, 2);
334
+ enumDesc(file_world, 3);
239
335
 
240
336
  /**
241
337
  * @generated from enum world.TaskStatus
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@projectqai/proto",
3
- "version": "0.0.2",
3
+ "version": "0.0.6",
4
4
  "author": "projectq-release-bot",
5
5
  "type": "module",
6
6
  "exports": {