@projectqai/proto 0.0.51 → 0.0.53

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.
@@ -0,0 +1,168 @@
1
+ // @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=.js"
2
+ // @generated from file tasking.proto (package world, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
6
+ import type { Message } from "@bufbuild/protobuf";
7
+ import type { PlanarPoint } from "./geometry_pb.js";
8
+
9
+ /**
10
+ * Describes the file tasking.proto.
11
+ */
12
+ export declare const file_tasking: GenFile;
13
+
14
+ /**
15
+ * @generated from message world.TaskableTarget
16
+ */
17
+ export declare type TaskableTarget = Message<"world.TaskableTarget"> & {
18
+ /**
19
+ * @generated from field: optional world.TaskableTargetPosition position = 1;
20
+ */
21
+ position?: TaskableTargetPosition;
22
+
23
+ /**
24
+ * @generated from field: optional world.TaskableTargetWaypoints waypoints = 2;
25
+ */
26
+ waypoints?: TaskableTargetWaypoints;
27
+
28
+ /**
29
+ * @generated from field: optional world.TaskableTargetEntity entity = 3;
30
+ */
31
+ entity?: TaskableTargetEntity;
32
+ };
33
+
34
+ /**
35
+ * Describes the message world.TaskableTarget.
36
+ * Use `create(TaskableTargetSchema)` to create a new message.
37
+ */
38
+ export declare const TaskableTargetSchema: GenMessage<TaskableTarget>;
39
+
40
+ /**
41
+ * @generated from message world.TaskableTargetPosition
42
+ */
43
+ export declare type TaskableTargetPosition = Message<"world.TaskableTargetPosition"> & {
44
+ };
45
+
46
+ /**
47
+ * Describes the message world.TaskableTargetPosition.
48
+ * Use `create(TaskableTargetPositionSchema)` to create a new message.
49
+ */
50
+ export declare const TaskableTargetPositionSchema: GenMessage<TaskableTargetPosition>;
51
+
52
+ /**
53
+ * @generated from message world.TaskableTargetWaypoints
54
+ */
55
+ export declare type TaskableTargetWaypoints = Message<"world.TaskableTargetWaypoints"> & {
56
+ /**
57
+ * maximum number of waypoints. default unbounded.
58
+ *
59
+ * @generated from field: optional uint32 max = 1;
60
+ */
61
+ max?: number;
62
+
63
+ /**
64
+ * the waypoints form a closed loop (last connects back to first), e.g. patrol.
65
+ *
66
+ * @generated from field: optional bool loop = 2;
67
+ */
68
+ loop?: boolean;
69
+ };
70
+
71
+ /**
72
+ * Describes the message world.TaskableTargetWaypoints.
73
+ * Use `create(TaskableTargetWaypointsSchema)` to create a new message.
74
+ */
75
+ export declare const TaskableTargetWaypointsSchema: GenMessage<TaskableTargetWaypoints>;
76
+
77
+ /**
78
+ * @generated from message world.TaskableTargetEntity
79
+ */
80
+ export declare type TaskableTargetEntity = Message<"world.TaskableTargetEntity"> & {
81
+ /**
82
+ * if non-empty, only these entity IDs are accepted as targets.
83
+ * if empty, any entity is accepted.
84
+ *
85
+ * @generated from field: repeated string entity = 1;
86
+ */
87
+ entity: string[];
88
+
89
+ /**
90
+ * maximum number of entities. default 1.
91
+ *
92
+ * @generated from field: optional uint32 max = 2;
93
+ */
94
+ max?: number;
95
+ };
96
+
97
+ /**
98
+ * Describes the message world.TaskableTargetEntity.
99
+ * Use `create(TaskableTargetEntitySchema)` to create a new message.
100
+ */
101
+ export declare const TaskableTargetEntitySchema: GenMessage<TaskableTargetEntity>;
102
+
103
+ /**
104
+ * @generated from message world.TaskExecutionTarget
105
+ */
106
+ export declare type TaskExecutionTarget = Message<"world.TaskExecutionTarget"> & {
107
+ /**
108
+ * @generated from oneof world.TaskExecutionTarget.kind
109
+ */
110
+ kind: {
111
+ /**
112
+ * @generated from field: world.PlanarPoint position = 1;
113
+ */
114
+ value: PlanarPoint;
115
+ case: "position";
116
+ } | {
117
+ /**
118
+ * @generated from field: world.TaskExecutionTargetWaypoints waypoints = 2;
119
+ */
120
+ value: TaskExecutionTargetWaypoints;
121
+ case: "waypoints";
122
+ } | {
123
+ /**
124
+ * @generated from field: world.TaskExecutionTargetEntity entity = 3;
125
+ */
126
+ value: TaskExecutionTargetEntity;
127
+ case: "entity";
128
+ } | { case: undefined; value?: undefined };
129
+ };
130
+
131
+ /**
132
+ * Describes the message world.TaskExecutionTarget.
133
+ * Use `create(TaskExecutionTargetSchema)` to create a new message.
134
+ */
135
+ export declare const TaskExecutionTargetSchema: GenMessage<TaskExecutionTarget>;
136
+
137
+ /**
138
+ * @generated from message world.TaskExecutionTargetWaypoints
139
+ */
140
+ export declare type TaskExecutionTargetWaypoints = Message<"world.TaskExecutionTargetWaypoints"> & {
141
+ /**
142
+ * @generated from field: repeated world.PlanarPoint waypoint = 1;
143
+ */
144
+ waypoint: PlanarPoint[];
145
+ };
146
+
147
+ /**
148
+ * Describes the message world.TaskExecutionTargetWaypoints.
149
+ * Use `create(TaskExecutionTargetWaypointsSchema)` to create a new message.
150
+ */
151
+ export declare const TaskExecutionTargetWaypointsSchema: GenMessage<TaskExecutionTargetWaypoints>;
152
+
153
+ /**
154
+ * @generated from message world.TaskExecutionTargetEntity
155
+ */
156
+ export declare type TaskExecutionTargetEntity = Message<"world.TaskExecutionTargetEntity"> & {
157
+ /**
158
+ * @generated from field: repeated string entity = 1;
159
+ */
160
+ entity: string[];
161
+ };
162
+
163
+ /**
164
+ * Describes the message world.TaskExecutionTargetEntity.
165
+ * Use `create(TaskExecutionTargetEntitySchema)` to create a new message.
166
+ */
167
+ export declare const TaskExecutionTargetEntitySchema: GenMessage<TaskExecutionTargetEntity>;
168
+
@@ -0,0 +1,62 @@
1
+ // @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=.js"
2
+ // @generated from file tasking.proto (package world, syntax proto3)
3
+ /* eslint-disable */
4
+
5
+ import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
6
+ import { file_geometry } from "./geometry_pb.js";
7
+
8
+ /**
9
+ * Describes the file tasking.proto.
10
+ */
11
+ export const file_tasking = /*@__PURE__*/
12
+ fileDesc("Cg10YXNraW5nLnByb3RvEgV3b3JsZCLWAQoOVGFza2FibGVUYXJnZXQSNAoIcG9zaXRpb24YASABKAsyHS53b3JsZC5UYXNrYWJsZVRhcmdldFBvc2l0aW9uSACIAQESNgoJd2F5cG9pbnRzGAIgASgLMh4ud29ybGQuVGFza2FibGVUYXJnZXRXYXlwb2ludHNIAYgBARIwCgZlbnRpdHkYAyABKAsyGy53b3JsZC5UYXNrYWJsZVRhcmdldEVudGl0eUgCiAEBQgsKCV9wb3NpdGlvbkIMCgpfd2F5cG9pbnRzQgkKB19lbnRpdHkiGAoWVGFza2FibGVUYXJnZXRQb3NpdGlvbiJPChdUYXNrYWJsZVRhcmdldFdheXBvaW50cxIQCgNtYXgYASABKA1IAIgBARIRCgRsb29wGAIgASgISAGIAQFCBgoEX21heEIHCgVfbG9vcCJAChRUYXNrYWJsZVRhcmdldEVudGl0eRIOCgZlbnRpdHkYASADKAkSEAoDbWF4GAIgASgNSACIAQFCBgoEX21heCKzAQoTVGFza0V4ZWN1dGlvblRhcmdldBImCghwb3NpdGlvbhgBIAEoCzISLndvcmxkLlBsYW5hclBvaW50SAASOAoJd2F5cG9pbnRzGAIgASgLMiMud29ybGQuVGFza0V4ZWN1dGlvblRhcmdldFdheXBvaW50c0gAEjIKBmVudGl0eRgDIAEoCzIgLndvcmxkLlRhc2tFeGVjdXRpb25UYXJnZXRFbnRpdHlIAEIGCgRraW5kIkQKHFRhc2tFeGVjdXRpb25UYXJnZXRXYXlwb2ludHMSJAoId2F5cG9pbnQYASADKAsyEi53b3JsZC5QbGFuYXJQb2ludCIrChlUYXNrRXhlY3V0aW9uVGFyZ2V0RW50aXR5Eg4KBmVudGl0eRgBIAMoCUIgWh5naXRodWIuY29tL3Byb2plY3RxYWkvcHJvdG8vZ29iBnByb3RvMw", [file_geometry]);
13
+
14
+ /**
15
+ * Describes the message world.TaskableTarget.
16
+ * Use `create(TaskableTargetSchema)` to create a new message.
17
+ */
18
+ export const TaskableTargetSchema = /*@__PURE__*/
19
+ messageDesc(file_tasking, 0);
20
+
21
+ /**
22
+ * Describes the message world.TaskableTargetPosition.
23
+ * Use `create(TaskableTargetPositionSchema)` to create a new message.
24
+ */
25
+ export const TaskableTargetPositionSchema = /*@__PURE__*/
26
+ messageDesc(file_tasking, 1);
27
+
28
+ /**
29
+ * Describes the message world.TaskableTargetWaypoints.
30
+ * Use `create(TaskableTargetWaypointsSchema)` to create a new message.
31
+ */
32
+ export const TaskableTargetWaypointsSchema = /*@__PURE__*/
33
+ messageDesc(file_tasking, 2);
34
+
35
+ /**
36
+ * Describes the message world.TaskableTargetEntity.
37
+ * Use `create(TaskableTargetEntitySchema)` to create a new message.
38
+ */
39
+ export const TaskableTargetEntitySchema = /*@__PURE__*/
40
+ messageDesc(file_tasking, 3);
41
+
42
+ /**
43
+ * Describes the message world.TaskExecutionTarget.
44
+ * Use `create(TaskExecutionTargetSchema)` to create a new message.
45
+ */
46
+ export const TaskExecutionTargetSchema = /*@__PURE__*/
47
+ messageDesc(file_tasking, 4);
48
+
49
+ /**
50
+ * Describes the message world.TaskExecutionTargetWaypoints.
51
+ * Use `create(TaskExecutionTargetWaypointsSchema)` to create a new message.
52
+ */
53
+ export const TaskExecutionTargetWaypointsSchema = /*@__PURE__*/
54
+ messageDesc(file_tasking, 5);
55
+
56
+ /**
57
+ * Describes the message world.TaskExecutionTargetEntity.
58
+ * Use `create(TaskExecutionTargetEntitySchema)` to create a new message.
59
+ */
60
+ export const TaskExecutionTargetEntitySchema = /*@__PURE__*/
61
+ messageDesc(file_tasking, 6);
62
+