@projectqai/proto 0.0.24 → 0.0.25

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.
@@ -176,10 +176,25 @@ export declare type Entity = Message<"world.Entity"> & {
176
176
  */
177
177
  localShape?: LocalShapeComponent;
178
178
 
179
+ /**
180
+ * @generated from field: optional world.PoseComponent pose = 38;
181
+ */
182
+ pose?: PoseComponent;
183
+
184
+ /**
185
+ * @generated from field: optional world.TaskExecutionComponent task_execution = 41;
186
+ */
187
+ taskExecution?: TaskExecutionComponent;
188
+
179
189
  /**
180
190
  * @generated from field: optional world.InteractivityComponent interactivity = 60;
181
191
  */
182
192
  interactivity?: InteractivityComponent;
193
+
194
+ /**
195
+ * @generated from field: optional world.TargetPoseComponent target_pose = 62;
196
+ */
197
+ targetPose?: TargetPoseComponent;
183
198
  };
184
199
 
185
200
  /**
@@ -349,9 +364,9 @@ export declare type InteractivityComponent = Message<"world.InteractivityCompone
349
364
  export declare const InteractivityComponentSchema: GenMessage<InteractivityComponent>;
350
365
 
351
366
  /**
352
- * @generated from message world.Camera
367
+ * @generated from message world.MediaStream
353
368
  */
354
- export declare type Camera = Message<"world.Camera"> & {
369
+ export declare type MediaStream = Message<"world.MediaStream"> & {
355
370
  /**
356
371
  * @generated from field: string label = 1;
357
372
  */
@@ -363,46 +378,102 @@ export declare type Camera = Message<"world.Camera"> & {
363
378
  url: string;
364
379
 
365
380
  /**
366
- * @generated from field: world.CameraProtocol protocol = 3;
381
+ * @generated from field: world.MediaStreamProtocol protocol = 3;
367
382
  */
368
- protocol: CameraProtocol;
383
+ protocol: MediaStreamProtocol;
369
384
 
370
385
  /**
371
- * horizontal field of view in degrees
386
+ * stream role (main, sub, snapshot)
372
387
  *
373
- * @generated from field: optional double fov = 4;
388
+ * @generated from field: world.MediaStreamRole role = 9;
374
389
  */
375
- fov?: number;
390
+ role: MediaStreamRole;
376
391
 
377
392
  /**
378
- * minimum detection range in meters (blind zone)
393
+ * video codec, e.g. "H264", "H265"
379
394
  *
380
- * @generated from field: optional double range_min = 5;
395
+ * @generated from field: string codec = 10;
381
396
  */
382
- rangeMin?: number;
397
+ codec: string;
383
398
 
384
399
  /**
385
- * maximum detection range in meters
400
+ * resolution width in pixels
386
401
  *
387
- * @generated from field: optional double range_max = 6;
402
+ * @generated from field: optional int32 width = 11;
388
403
  */
389
- rangeMax?: number;
404
+ width?: number;
405
+
406
+ /**
407
+ * resolution height in pixels
408
+ *
409
+ * @generated from field: optional int32 height = 12;
410
+ */
411
+ height?: number;
390
412
  };
391
413
 
392
414
  /**
393
- * Describes the message world.Camera.
394
- * Use `create(CameraSchema)` to create a new message.
415
+ * Describes the message world.MediaStream.
416
+ * Use `create(MediaStreamSchema)` to create a new message.
395
417
  */
396
- export declare const CameraSchema: GenMessage<Camera>;
418
+ export declare const MediaStreamSchema: GenMessage<MediaStream>;
397
419
 
398
420
  /**
399
421
  * @generated from message world.CameraComponent
400
422
  */
401
423
  export declare type CameraComponent = Message<"world.CameraComponent"> & {
402
424
  /**
403
- * @generated from field: repeated world.Camera cameras = 1;
425
+ * @generated from field: repeated world.MediaStream streams = 1;
426
+ */
427
+ streams: MediaStream[];
428
+
429
+ /**
430
+ * If the camera is PTZ, this Entity represents where this camera is looking at
431
+ * The device driver reconcile target_pose->pose with physical actuation of the gymbal
432
+ *
433
+ * @generated from field: optional string focal_point = 2;
434
+ */
435
+ focalPoint?: string;
436
+
437
+ /**
438
+ * horizontal field of view in degrees, centered on the entity's azimuth.
439
+ * For varifocal cameras, this is the current effective FOV (computed by
440
+ * the engine from fov_wide/fov_tele + zoom if set).
441
+ *
442
+ * @generated from field: optional double fov = 3;
443
+ */
444
+ fov?: number;
445
+
446
+ /**
447
+ * minimum detection range in meters (blind zone)
448
+ *
449
+ * @generated from field: optional double range_min = 4;
450
+ */
451
+ rangeMin?: number;
452
+
453
+ /**
454
+ * maximum detection range in meters
455
+ *
456
+ * @generated from field: optional double range_max = 5;
404
457
  */
405
- cameras: Camera[];
458
+ rangeMax?: number;
459
+
460
+ /**
461
+ * Static optical specs for varifocal/zoom cameras.
462
+ * When set, the engine computes effective fov from PolarOffset.range (focal distance):
463
+ * zoom = range / range_max, fov = fov_wide + zoom * (fov_tele - fov_wide)
464
+ *
465
+ * horizontal FOV at widest zoom (degrees)
466
+ *
467
+ * @generated from field: optional double fov_wide = 6;
468
+ */
469
+ fovWide?: number;
470
+
471
+ /**
472
+ * horizontal FOV at max zoom (degrees)
473
+ *
474
+ * @generated from field: optional double fov_tele = 7;
475
+ */
476
+ fovTele?: number;
406
477
  };
407
478
 
408
479
  /**
@@ -438,15 +509,24 @@ export declare type DetectionComponent = Message<"world.DetectionComponent"> & {
438
509
  export declare const DetectionComponentSchema: GenMessage<DetectionComponent>;
439
510
 
440
511
  /**
512
+ * Absolute bearing in the world, relative to the local ENU frame.
513
+ * For root entities this is set directly; for child entities with a
514
+ * PolarOffset the engine computes it by composing down the pose tree.
515
+ *
441
516
  * @generated from message world.BearingComponent
442
517
  */
443
518
  export declare type BearingComponent = Message<"world.BearingComponent"> & {
444
519
  /**
520
+ * clockwise angle from true north in degrees [0, 360)
521
+ *
445
522
  * @generated from field: optional double azimuth = 1;
446
523
  */
447
524
  azimuth?: number;
448
525
 
449
526
  /**
527
+ * angle above the local horizontal plane in degrees [-90, 90]
528
+ * positive = above horizon, negative = below
529
+ *
450
530
  * @generated from field: optional double elevation = 2;
451
531
  */
452
532
  elevation?: number;
@@ -549,35 +629,204 @@ export declare type CovarianceMatrix = Message<"world.CovarianceMatrix"> & {
549
629
  export declare const CovarianceMatrixSchema: GenMessage<CovarianceMatrix>;
550
630
 
551
631
  /**
552
- * @generated from message world.OrientationComponent
632
+ * @generated from message world.CartesianOffset
553
633
  */
554
- export declare type OrientationComponent = Message<"world.OrientationComponent"> & {
634
+ export declare type CartesianOffset = Message<"world.CartesianOffset"> & {
635
+ /**
636
+ * @generated from field: double east_m = 1;
637
+ */
638
+ eastM: number;
639
+
640
+ /**
641
+ * @generated from field: double north_m = 2;
642
+ */
643
+ northM: number;
644
+
645
+ /**
646
+ * @generated from field: optional double up_m = 3;
647
+ */
648
+ upM?: number;
649
+
555
650
  /**
556
- * @generated from field: optional world.Quaternion orientation = 1;
651
+ * @generated from field: optional world.CovarianceMatrix covariance = 4;
652
+ */
653
+ covariance?: CovarianceMatrix;
654
+
655
+ /**
656
+ * @generated from field: optional world.Quaternion orientation = 5;
557
657
  */
558
658
  orientation?: Quaternion;
659
+ };
660
+
661
+ /**
662
+ * Describes the message world.CartesianOffset.
663
+ * Use `create(CartesianOffsetSchema)` to create a new message.
664
+ */
665
+ export declare const CartesianOffsetSchema: GenMessage<CartesianOffset>;
559
666
 
667
+ /**
668
+ * @generated from message world.PolarOffset
669
+ */
670
+ export declare type PolarOffset = Message<"world.PolarOffset"> & {
560
671
  /**
561
- * @generated from field: optional world.CovarianceMatrix covariance = 2;
672
+ * angle from the parent's forward axis, degrees [0, 360)
673
+ *
674
+ * @generated from field: double azimuth = 1;
675
+ */
676
+ azimuth: number;
677
+
678
+ /**
679
+ * above the parent's horizontal plane, degrees [-90, 90]
680
+ *
681
+ * @generated from field: optional double elevation = 2;
682
+ */
683
+ elevation?: number;
684
+
685
+ /**
686
+ * distance in meters. omit for bearing-only (passive sensor)
687
+ *
688
+ * @generated from field: optional double range = 3;
689
+ */
690
+ range?: number;
691
+
692
+ /**
693
+ * @generated from field: optional world.CovarianceMatrix covariance = 4;
562
694
  */
563
695
  covariance?: CovarianceMatrix;
564
696
 
565
697
  /**
566
- * angular velocity in radians per second (body frame)
698
+ * @generated from field: optional world.Quaternion orientation = 5;
699
+ */
700
+ orientation?: Quaternion;
701
+ };
702
+
703
+ /**
704
+ * Describes the message world.PolarOffset.
705
+ * Use `create(PolarOffsetSchema)` to create a new message.
706
+ */
707
+ export declare const PolarOffsetSchema: GenMessage<PolarOffset>;
708
+
709
+ /**
710
+ * This entity's pose is defined relative to a parent entity's coordinate frame.
711
+ * The engine computes absolute GeoSpatialComponent by walking the tree.
712
+ * If the pose cannot be fully resolved (e.g. missing range), no geo is produced.
713
+ *
714
+ * @generated from message world.PoseComponent
715
+ */
716
+ export declare type PoseComponent = Message<"world.PoseComponent"> & {
717
+ /**
718
+ * parent entity in the transform tree
719
+ *
720
+ * @generated from field: string parent = 1;
721
+ */
722
+ parent: string;
723
+
724
+ /**
725
+ * @generated from oneof world.PoseComponent.offset
726
+ */
727
+ offset: {
728
+ /**
729
+ * @generated from field: world.CartesianOffset cartesian = 2;
730
+ */
731
+ value: CartesianOffset;
732
+ case: "cartesian";
733
+ } | {
734
+ /**
735
+ * @generated from field: world.PolarOffset polar = 3;
736
+ */
737
+ value: PolarOffset;
738
+ case: "polar";
739
+ } | { case: undefined; value?: undefined };
740
+ };
741
+
742
+ /**
743
+ * Describes the message world.PoseComponent.
744
+ * Use `create(PoseComponentSchema)` to create a new message.
745
+ */
746
+ export declare const PoseComponentSchema: GenMessage<PoseComponent>;
747
+
748
+ /**
749
+ * Desired pose for this joint, same shape as PoseComponent's offset.
750
+ * A device specific reconciler continuously drives the actual PoseComponent toward this target.
751
+ *
752
+ * @generated from message world.TargetPoseComponent
753
+ */
754
+ export declare type TargetPoseComponent = Message<"world.TargetPoseComponent"> & {
755
+ /**
756
+ * @generated from oneof world.TargetPoseComponent.offset
757
+ */
758
+ offset: {
759
+ /**
760
+ * @generated from field: world.CartesianOffset cartesian = 1;
761
+ */
762
+ value: CartesianOffset;
763
+ case: "cartesian";
764
+ } | {
765
+ /**
766
+ * @generated from field: world.PolarOffset polar = 2;
767
+ */
768
+ value: PolarOffset;
769
+ case: "polar";
770
+ } | { case: undefined; value?: undefined };
771
+ };
772
+
773
+ /**
774
+ * Describes the message world.TargetPoseComponent.
775
+ * Use `create(TargetPoseComponentSchema)` to create a new message.
776
+ */
777
+ export declare const TargetPoseComponentSchema: GenMessage<TargetPoseComponent>;
778
+
779
+ /**
780
+ * Angular velocity around the entity's own body axes
781
+ *
782
+ * @generated from message world.AngularVelocity
783
+ */
784
+ export declare type AngularVelocity = Message<"world.AngularVelocity"> & {
785
+ /**
786
+ * radians per second
567
787
  *
568
- * @generated from field: optional double roll_rate = 3;
788
+ * @generated from field: double roll_rate = 1;
569
789
  */
570
- rollRate?: number;
790
+ rollRate: number;
571
791
 
572
792
  /**
573
- * @generated from field: optional double pitch_rate = 4;
793
+ * radians per second
794
+ *
795
+ * @generated from field: double pitch_rate = 2;
574
796
  */
575
- pitchRate?: number;
797
+ pitchRate: number;
576
798
 
577
799
  /**
578
- * @generated from field: optional double yaw_rate = 5;
800
+ * radians per second
801
+ *
802
+ * @generated from field: double yaw_rate = 3;
579
803
  */
580
- yawRate?: number;
804
+ yawRate: number;
805
+ };
806
+
807
+ /**
808
+ * Describes the message world.AngularVelocity.
809
+ * Use `create(AngularVelocitySchema)` to create a new message.
810
+ */
811
+ export declare const AngularVelocitySchema: GenMessage<AngularVelocity>;
812
+
813
+ /**
814
+ * Absolute orientation in the world, relative to the local ENU frame.
815
+ * For root entities this is set directly; for child entities the engine
816
+ * computes it by composing orientations down the pose tree.
817
+ *
818
+ * @generated from message world.OrientationComponent
819
+ */
820
+ export declare type OrientationComponent = Message<"world.OrientationComponent"> & {
821
+ /**
822
+ * @generated from field: world.Quaternion orientation = 1;
823
+ */
824
+ orientation?: Quaternion;
825
+
826
+ /**
827
+ * @generated from field: optional world.CovarianceMatrix covariance = 2;
828
+ */
829
+ covariance?: CovarianceMatrix;
581
830
  };
582
831
 
583
832
  /**
@@ -608,6 +857,13 @@ export declare type TrackComponent = Message<"world.TrackComponent"> & {
608
857
  * @generated from field: optional string prediction = 3;
609
858
  */
610
859
  prediction?: string;
860
+
861
+ /**
862
+ * detection entity IDs that contribute to this track
863
+ *
864
+ * @generated from field: repeated string detections = 4;
865
+ */
866
+ detections: string[];
611
867
  };
612
868
 
613
869
  /**
@@ -692,6 +948,11 @@ export declare type TaskableComponent = Message<"world.TaskableComponent"> & {
692
948
  * @generated from field: google.protobuf.Struct schema = 5;
693
949
  */
694
950
  schema?: JsonObject;
951
+
952
+ /**
953
+ * @generated from field: world.TaskableMode mode = 6;
954
+ */
955
+ mode: TaskableMode;
695
956
  };
696
957
 
697
958
  /**
@@ -700,6 +961,56 @@ export declare type TaskableComponent = Message<"world.TaskableComponent"> & {
700
961
  */
701
962
  export declare const TaskableComponentSchema: GenMessage<TaskableComponent>;
702
963
 
964
+ /**
965
+ * An instance of a task being executed.
966
+ * Created by RunTask, referencing a TaskableComponent entity as the definition.
967
+ * The controller that owns the taskable watches for these and executes them.
968
+ *
969
+ * @generated from message world.TaskExecutionComponent
970
+ */
971
+ export declare type TaskExecutionComponent = Message<"world.TaskExecutionComponent"> & {
972
+ /**
973
+ * entity ID of the TaskableComponent that defines this task
974
+ *
975
+ * @generated from field: string task = 1;
976
+ */
977
+ task: string;
978
+
979
+ /**
980
+ * parameters supplied by the caller, validated against the taskable's schema
981
+ *
982
+ * @generated from field: optional google.protobuf.Struct parameters = 2;
983
+ */
984
+ parameters?: JsonObject;
985
+
986
+ /**
987
+ * current execution state, updated by the controller
988
+ *
989
+ * @generated from field: world.TaskExecutionState state = 3;
990
+ */
991
+ state: TaskExecutionState;
992
+
993
+ /**
994
+ * human-readable error or result message
995
+ *
996
+ * @generated from field: optional string reason = 4;
997
+ */
998
+ reason?: string;
999
+
1000
+ /**
1001
+ * priority level for PriorityQueue mode (higher = more important)
1002
+ *
1003
+ * @generated from field: optional uint32 priority = 5;
1004
+ */
1005
+ priority?: number;
1006
+ };
1007
+
1008
+ /**
1009
+ * Describes the message world.TaskExecutionComponent.
1010
+ * Use `create(TaskExecutionComponentSchema)` to create a new message.
1011
+ */
1012
+ export declare const TaskExecutionComponentSchema: GenMessage<TaskExecutionComponent>;
1013
+
703
1014
  /**
704
1015
  * @generated from message world.KinematicsEnu
705
1016
  */
@@ -708,8 +1019,8 @@ export declare type KinematicsEnu = Message<"world.KinematicsEnu"> & {
708
1019
  * Velocity components in the local East-North-Up (ENU) coordinate frame.
709
1020
  * The ENU frame is a right-handed Cartesian coordinate system with origin
710
1021
  * at the entity's position (GeoSpatialComponent), where:
711
- * - East axis: tangent to the latitude line, pointing eastward
712
- * - North axis: tangent to the longitude line, pointing northward
1022
+ * - East axis: tangent to the parallel (line of constant latitude), pointing eastward
1023
+ * - North axis: tangent to the meridian (line of constant longitude), pointing northward
713
1024
  * - Up axis: perpendicular to the WGS84 ellipsoid, pointing away from Earth center
714
1025
  *
715
1026
  * Note: This is NOT a body frame - the axes do not rotate with the entity's
@@ -765,6 +1076,13 @@ export declare type KinematicsComponent = Message<"world.KinematicsComponent"> &
765
1076
  * @generated from field: optional world.KinematicsEnu accelerationEnu = 2;
766
1077
  */
767
1078
  accelerationEnu?: KinematicsEnu;
1079
+
1080
+ /**
1081
+ * Angular velocity around the entity's body axes
1082
+ *
1083
+ * @generated from field: optional world.AngularVelocity angularVelocityBody = 3;
1084
+ */
1085
+ angularVelocityBody?: AngularVelocity;
768
1086
  };
769
1087
 
770
1088
  /**
@@ -2108,6 +2426,13 @@ export declare type RunTaskRequest = Message<"world.RunTaskRequest"> & {
2108
2426
  * @generated from field: string entityId = 1;
2109
2427
  */
2110
2428
  entityId: string;
2429
+
2430
+ /**
2431
+ * priority for PriorityQueue mode (higher = more important)
2432
+ *
2433
+ * @generated from field: optional uint32 priority = 2;
2434
+ */
2435
+ priority?: number;
2111
2436
  };
2112
2437
 
2113
2438
  /**
@@ -2183,44 +2508,158 @@ export enum Priority {
2183
2508
  export declare const PrioritySchema: GenEnum<Priority>;
2184
2509
 
2185
2510
  /**
2186
- * @generated from enum world.CameraProtocol
2511
+ * @generated from enum world.MediaStreamProtocol
2187
2512
  */
2188
- export enum CameraProtocol {
2513
+ export enum MediaStreamProtocol {
2189
2514
  /**
2190
- * @generated from enum value: CameraProtocolUnspecified = 0;
2515
+ * @generated from enum value: MediaStreamProtocolUnspecified = 0;
2191
2516
  */
2192
- CameraProtocolUnspecified = 0,
2517
+ MediaStreamProtocolUnspecified = 0,
2193
2518
 
2194
2519
  /**
2195
- * @generated from enum value: CameraProtocolWebrtc = 1;
2520
+ * @generated from enum value: MediaStreamProtocolWebrtc = 1;
2521
+ */
2522
+ MediaStreamProtocolWebrtc = 1,
2523
+
2524
+ /**
2525
+ * @generated from enum value: MediaStreamProtocolHls = 2;
2526
+ */
2527
+ MediaStreamProtocolHls = 2,
2528
+
2529
+ /**
2530
+ * @generated from enum value: MediaStreamProtocolMjpeg = 3;
2531
+ */
2532
+ MediaStreamProtocolMjpeg = 3,
2533
+
2534
+ /**
2535
+ * @generated from enum value: MediaStreamProtocolImage = 4;
2536
+ */
2537
+ MediaStreamProtocolImage = 4,
2538
+
2539
+ /**
2540
+ * @generated from enum value: MediaStreamProtocolIframe = 5;
2541
+ */
2542
+ MediaStreamProtocolIframe = 5,
2543
+
2544
+ /**
2545
+ * @generated from enum value: MediaStreamProtocolRtsp = 6;
2546
+ */
2547
+ MediaStreamProtocolRtsp = 6,
2548
+ }
2549
+
2550
+ /**
2551
+ * Describes the enum world.MediaStreamProtocol.
2552
+ */
2553
+ export declare const MediaStreamProtocolSchema: GenEnum<MediaStreamProtocol>;
2554
+
2555
+ /**
2556
+ * @generated from enum world.MediaStreamRole
2557
+ */
2558
+ export enum MediaStreamRole {
2559
+ /**
2560
+ * @generated from enum value: MediaStreamRoleUnspecified = 0;
2561
+ */
2562
+ MediaStreamRoleUnspecified = 0,
2563
+
2564
+ /**
2565
+ * primary high-resolution stream
2566
+ *
2567
+ * @generated from enum value: MediaStreamRoleMain = 1;
2568
+ */
2569
+ MediaStreamRoleMain = 1,
2570
+
2571
+ /**
2572
+ * lower-resolution sub stream
2573
+ *
2574
+ * @generated from enum value: MediaStreamRoleSub = 2;
2196
2575
  */
2197
- CameraProtocolWebrtc = 1,
2576
+ MediaStreamRoleSub = 2,
2198
2577
 
2199
2578
  /**
2200
- * @generated from enum value: CameraProtocolHls = 2;
2579
+ * still image capture
2580
+ *
2581
+ * @generated from enum value: MediaStreamRoleSnapshot = 3;
2582
+ */
2583
+ MediaStreamRoleSnapshot = 3,
2584
+ }
2585
+
2586
+ /**
2587
+ * Describes the enum world.MediaStreamRole.
2588
+ */
2589
+ export declare const MediaStreamRoleSchema: GenEnum<MediaStreamRole>;
2590
+
2591
+ /**
2592
+ * @generated from enum world.TaskableMode
2593
+ */
2594
+ export enum TaskableMode {
2595
+ /**
2596
+ * RunTask places the TaskExecutionComponent on the same entity as the
2597
+ * TaskableComponent. Only one execution at a time; a second RunTask while
2598
+ * one is active is rejected.
2599
+ *
2600
+ * @generated from enum value: TaskableModeExclusive = 0;
2601
+ */
2602
+ TaskableModeExclusive = 0,
2603
+
2604
+ /**
2605
+ * Like Exclusive, but a new RunTask replaces the current execution
2606
+ * instead of being rejected.
2607
+ *
2608
+ * @generated from enum value: TaskableModeReconcile = 1;
2609
+ */
2610
+ TaskableModeReconcile = 1,
2611
+
2612
+ /**
2613
+ * RunTask creates a new child entity with the TaskExecutionComponent.
2614
+ * Multiple executions can run in parallel.
2615
+ *
2616
+ * @generated from enum value: TaskableModeSpawn = 2;
2617
+ */
2618
+ TaskableModeSpawn = 2,
2619
+
2620
+ /**
2621
+ * Like Reconcile, but the driver manages a priority queue of active tasks.
2622
+ * RunTask creates child entities; the driver picks the highest-priority one.
2623
+ *
2624
+ * @generated from enum value: TaskableModePriorityQueue = 3;
2625
+ */
2626
+ TaskableModePriorityQueue = 3,
2627
+ }
2628
+
2629
+ /**
2630
+ * Describes the enum world.TaskableMode.
2631
+ */
2632
+ export declare const TaskableModeSchema: GenEnum<TaskableMode>;
2633
+
2634
+ /**
2635
+ * @generated from enum world.TaskExecutionState
2636
+ */
2637
+ export enum TaskExecutionState {
2638
+ /**
2639
+ * @generated from enum value: TaskExecutionStatePending = 0;
2201
2640
  */
2202
- CameraProtocolHls = 2,
2641
+ TaskExecutionStatePending = 0,
2203
2642
 
2204
2643
  /**
2205
- * @generated from enum value: CameraProtocolMjpeg = 3;
2644
+ * @generated from enum value: TaskExecutionStateRunning = 1;
2206
2645
  */
2207
- CameraProtocolMjpeg = 3,
2646
+ TaskExecutionStateRunning = 1,
2208
2647
 
2209
2648
  /**
2210
- * @generated from enum value: CameraProtocolImage = 4;
2649
+ * @generated from enum value: TaskExecutionStateCompleted = 2;
2211
2650
  */
2212
- CameraProtocolImage = 4,
2651
+ TaskExecutionStateCompleted = 2,
2213
2652
 
2214
2653
  /**
2215
- * @generated from enum value: CameraProtocolIframe = 5;
2654
+ * @generated from enum value: TaskExecutionStateFailed = 3;
2216
2655
  */
2217
- CameraProtocolIframe = 5,
2656
+ TaskExecutionStateFailed = 3,
2218
2657
  }
2219
2658
 
2220
2659
  /**
2221
- * Describes the enum world.CameraProtocol.
2660
+ * Describes the enum world.TaskExecutionState.
2222
2661
  */
2223
- export declare const CameraProtocolSchema: GenEnum<CameraProtocol>;
2662
+ export declare const TaskExecutionStateSchema: GenEnum<TaskExecutionState>;
2224
2663
 
2225
2664
  /**
2226
2665
  * @generated from enum world.ClassificationIdentity