@projectqai/proto 0.0.52 → 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.
- package/dist/tasking_pb.d.ts +168 -0
- package/dist/tasking_pb.js +62 -0
- package/dist/taxonomy_pb.d.ts +805 -0
- package/dist/taxonomy_pb.js +313 -0
- package/dist/world_pb.d.ts +99 -69
- package/dist/world_pb.js +98 -91
- package/package.json +1 -1
|
@@ -0,0 +1,805 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=.js"
|
|
2
|
+
// @generated from file taxonomy.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
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file taxonomy.proto.
|
|
10
|
+
*/
|
|
11
|
+
export declare const file_taxonomy: GenFile;
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @generated from message world.ClassificationTaxonomy
|
|
15
|
+
*/
|
|
16
|
+
export declare type ClassificationTaxonomy = Message<"world.ClassificationTaxonomy"> & {
|
|
17
|
+
/**
|
|
18
|
+
* @generated from field: world.ClassificationConfidence confidence = 1;
|
|
19
|
+
*/
|
|
20
|
+
confidence?: ClassificationConfidence;
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* @generated from oneof world.ClassificationTaxonomy.kind
|
|
24
|
+
*/
|
|
25
|
+
kind: {
|
|
26
|
+
/**
|
|
27
|
+
* @generated from field: world.PersonTaxonomy person = 10;
|
|
28
|
+
*/
|
|
29
|
+
value: PersonTaxonomy;
|
|
30
|
+
case: "person";
|
|
31
|
+
} | {
|
|
32
|
+
/**
|
|
33
|
+
* @generated from field: world.AnimalTaxonomy animal = 11;
|
|
34
|
+
*/
|
|
35
|
+
value: AnimalTaxonomy;
|
|
36
|
+
case: "animal";
|
|
37
|
+
} | {
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: world.InfrastructureTaxonomy infrastructure = 12;
|
|
40
|
+
*/
|
|
41
|
+
value: InfrastructureTaxonomy;
|
|
42
|
+
case: "infrastructure";
|
|
43
|
+
} | {
|
|
44
|
+
/**
|
|
45
|
+
* @generated from field: world.VehicleTaxonomy vehicle = 13;
|
|
46
|
+
*/
|
|
47
|
+
value: VehicleTaxonomy;
|
|
48
|
+
case: "vehicle";
|
|
49
|
+
} | {
|
|
50
|
+
/**
|
|
51
|
+
* @generated from field: world.EquipmentTaxonomy equipment = 14;
|
|
52
|
+
*/
|
|
53
|
+
value: EquipmentTaxonomy;
|
|
54
|
+
case: "equipment";
|
|
55
|
+
} | {
|
|
56
|
+
/**
|
|
57
|
+
* @generated from field: world.EmitterTaxonomy emitter = 15;
|
|
58
|
+
*/
|
|
59
|
+
value: EmitterTaxonomy;
|
|
60
|
+
case: "emitter";
|
|
61
|
+
} | { case: undefined; value?: undefined };
|
|
62
|
+
};
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Describes the message world.ClassificationTaxonomy.
|
|
66
|
+
* Use `create(ClassificationTaxonomySchema)` to create a new message.
|
|
67
|
+
*/
|
|
68
|
+
export declare const ClassificationTaxonomySchema: GenMessage<ClassificationTaxonomy>;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* @generated from message world.ClassificationConfidence
|
|
72
|
+
*/
|
|
73
|
+
export declare type ClassificationConfidence = Message<"world.ClassificationConfidence"> & {
|
|
74
|
+
/**
|
|
75
|
+
* @generated from field: float confidence = 1;
|
|
76
|
+
*/
|
|
77
|
+
confidence: number;
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* @generated from field: bool pending = 2;
|
|
81
|
+
*/
|
|
82
|
+
pending: boolean;
|
|
83
|
+
};
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Describes the message world.ClassificationConfidence.
|
|
87
|
+
* Use `create(ClassificationConfidenceSchema)` to create a new message.
|
|
88
|
+
*/
|
|
89
|
+
export declare const ClassificationConfidenceSchema: GenMessage<ClassificationConfidence>;
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* @generated from message world.PersonTaxonomy
|
|
93
|
+
*/
|
|
94
|
+
export declare type PersonTaxonomy = Message<"world.PersonTaxonomy"> & {
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Describes the message world.PersonTaxonomy.
|
|
99
|
+
* Use `create(PersonTaxonomySchema)` to create a new message.
|
|
100
|
+
*/
|
|
101
|
+
export declare const PersonTaxonomySchema: GenMessage<PersonTaxonomy>;
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* @generated from message world.AnimalTaxonomy
|
|
105
|
+
*/
|
|
106
|
+
export declare type AnimalTaxonomy = Message<"world.AnimalTaxonomy"> & {
|
|
107
|
+
/**
|
|
108
|
+
* @generated from oneof world.AnimalTaxonomy.kind
|
|
109
|
+
*/
|
|
110
|
+
kind: {
|
|
111
|
+
/**
|
|
112
|
+
* @generated from field: world.AnimalTaxonomyAir air = 1;
|
|
113
|
+
*/
|
|
114
|
+
value: AnimalTaxonomyAir;
|
|
115
|
+
case: "air";
|
|
116
|
+
} | {
|
|
117
|
+
/**
|
|
118
|
+
* @generated from field: world.AnimalTaxonomyLand land = 2;
|
|
119
|
+
*/
|
|
120
|
+
value: AnimalTaxonomyLand;
|
|
121
|
+
case: "land";
|
|
122
|
+
} | { case: undefined; value?: undefined };
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* Describes the message world.AnimalTaxonomy.
|
|
127
|
+
* Use `create(AnimalTaxonomySchema)` to create a new message.
|
|
128
|
+
*/
|
|
129
|
+
export declare const AnimalTaxonomySchema: GenMessage<AnimalTaxonomy>;
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* @generated from message world.AnimalTaxonomyBird
|
|
133
|
+
*/
|
|
134
|
+
export declare type AnimalTaxonomyBird = Message<"world.AnimalTaxonomyBird"> & {
|
|
135
|
+
};
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* Describes the message world.AnimalTaxonomyBird.
|
|
139
|
+
* Use `create(AnimalTaxonomyBirdSchema)` to create a new message.
|
|
140
|
+
*/
|
|
141
|
+
export declare const AnimalTaxonomyBirdSchema: GenMessage<AnimalTaxonomyBird>;
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* @generated from message world.AnimalTaxonomyAir
|
|
145
|
+
*/
|
|
146
|
+
export declare type AnimalTaxonomyAir = Message<"world.AnimalTaxonomyAir"> & {
|
|
147
|
+
/**
|
|
148
|
+
* @generated from field: optional world.AnimalTaxonomyBird bird = 1;
|
|
149
|
+
*/
|
|
150
|
+
bird?: AnimalTaxonomyBird;
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
/**
|
|
154
|
+
* Describes the message world.AnimalTaxonomyAir.
|
|
155
|
+
* Use `create(AnimalTaxonomyAirSchema)` to create a new message.
|
|
156
|
+
*/
|
|
157
|
+
export declare const AnimalTaxonomyAirSchema: GenMessage<AnimalTaxonomyAir>;
|
|
158
|
+
|
|
159
|
+
/**
|
|
160
|
+
* @generated from message world.AnimalTaxonomyHorse
|
|
161
|
+
*/
|
|
162
|
+
export declare type AnimalTaxonomyHorse = Message<"world.AnimalTaxonomyHorse"> & {
|
|
163
|
+
};
|
|
164
|
+
|
|
165
|
+
/**
|
|
166
|
+
* Describes the message world.AnimalTaxonomyHorse.
|
|
167
|
+
* Use `create(AnimalTaxonomyHorseSchema)` to create a new message.
|
|
168
|
+
*/
|
|
169
|
+
export declare const AnimalTaxonomyHorseSchema: GenMessage<AnimalTaxonomyHorse>;
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* @generated from message world.AnimalTaxonomyLand
|
|
173
|
+
*/
|
|
174
|
+
export declare type AnimalTaxonomyLand = Message<"world.AnimalTaxonomyLand"> & {
|
|
175
|
+
/**
|
|
176
|
+
* @generated from field: optional world.AnimalTaxonomyHorse horse = 1;
|
|
177
|
+
*/
|
|
178
|
+
horse?: AnimalTaxonomyHorse;
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Describes the message world.AnimalTaxonomyLand.
|
|
183
|
+
* Use `create(AnimalTaxonomyLandSchema)` to create a new message.
|
|
184
|
+
*/
|
|
185
|
+
export declare const AnimalTaxonomyLandSchema: GenMessage<AnimalTaxonomyLand>;
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* @generated from message world.InfrastructureTaxonomy
|
|
189
|
+
*/
|
|
190
|
+
export declare type InfrastructureTaxonomy = Message<"world.InfrastructureTaxonomy"> & {
|
|
191
|
+
/**
|
|
192
|
+
* @generated from field: optional world.InfrastructureTaxonomyTower tower = 1;
|
|
193
|
+
*/
|
|
194
|
+
tower?: InfrastructureTaxonomyTower;
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* @generated from field: optional world.InfrastructureTaxonomyBridge bridge = 2;
|
|
198
|
+
*/
|
|
199
|
+
bridge?: InfrastructureTaxonomyBridge;
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* @generated from field: optional world.InfrastructureTaxonomyRoad road = 3;
|
|
203
|
+
*/
|
|
204
|
+
road?: InfrastructureTaxonomyRoad;
|
|
205
|
+
|
|
206
|
+
/**
|
|
207
|
+
* @generated from field: optional world.InfrastructureTaxonomyDam dam = 4;
|
|
208
|
+
*/
|
|
209
|
+
dam?: InfrastructureTaxonomyDam;
|
|
210
|
+
};
|
|
211
|
+
|
|
212
|
+
/**
|
|
213
|
+
* Describes the message world.InfrastructureTaxonomy.
|
|
214
|
+
* Use `create(InfrastructureTaxonomySchema)` to create a new message.
|
|
215
|
+
*/
|
|
216
|
+
export declare const InfrastructureTaxonomySchema: GenMessage<InfrastructureTaxonomy>;
|
|
217
|
+
|
|
218
|
+
/**
|
|
219
|
+
* @generated from message world.InfrastructureTaxonomyTower
|
|
220
|
+
*/
|
|
221
|
+
export declare type InfrastructureTaxonomyTower = Message<"world.InfrastructureTaxonomyTower"> & {
|
|
222
|
+
};
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Describes the message world.InfrastructureTaxonomyTower.
|
|
226
|
+
* Use `create(InfrastructureTaxonomyTowerSchema)` to create a new message.
|
|
227
|
+
*/
|
|
228
|
+
export declare const InfrastructureTaxonomyTowerSchema: GenMessage<InfrastructureTaxonomyTower>;
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* @generated from message world.InfrastructureTaxonomyBridge
|
|
232
|
+
*/
|
|
233
|
+
export declare type InfrastructureTaxonomyBridge = Message<"world.InfrastructureTaxonomyBridge"> & {
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Describes the message world.InfrastructureTaxonomyBridge.
|
|
238
|
+
* Use `create(InfrastructureTaxonomyBridgeSchema)` to create a new message.
|
|
239
|
+
*/
|
|
240
|
+
export declare const InfrastructureTaxonomyBridgeSchema: GenMessage<InfrastructureTaxonomyBridge>;
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* @generated from message world.InfrastructureTaxonomyRoad
|
|
244
|
+
*/
|
|
245
|
+
export declare type InfrastructureTaxonomyRoad = Message<"world.InfrastructureTaxonomyRoad"> & {
|
|
246
|
+
};
|
|
247
|
+
|
|
248
|
+
/**
|
|
249
|
+
* Describes the message world.InfrastructureTaxonomyRoad.
|
|
250
|
+
* Use `create(InfrastructureTaxonomyRoadSchema)` to create a new message.
|
|
251
|
+
*/
|
|
252
|
+
export declare const InfrastructureTaxonomyRoadSchema: GenMessage<InfrastructureTaxonomyRoad>;
|
|
253
|
+
|
|
254
|
+
/**
|
|
255
|
+
* @generated from message world.InfrastructureTaxonomyDam
|
|
256
|
+
*/
|
|
257
|
+
export declare type InfrastructureTaxonomyDam = Message<"world.InfrastructureTaxonomyDam"> & {
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
/**
|
|
261
|
+
* Describes the message world.InfrastructureTaxonomyDam.
|
|
262
|
+
* Use `create(InfrastructureTaxonomyDamSchema)` to create a new message.
|
|
263
|
+
*/
|
|
264
|
+
export declare const InfrastructureTaxonomyDamSchema: GenMessage<InfrastructureTaxonomyDam>;
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* @generated from message world.VehicleTaxonomy
|
|
268
|
+
*/
|
|
269
|
+
export declare type VehicleTaxonomy = Message<"world.VehicleTaxonomy"> & {
|
|
270
|
+
/**
|
|
271
|
+
* @generated from field: optional world.VehicleTaxonomyUnmanned unmanned = 1;
|
|
272
|
+
*/
|
|
273
|
+
unmanned?: VehicleTaxonomyUnmanned;
|
|
274
|
+
|
|
275
|
+
/**
|
|
276
|
+
* @generated from oneof world.VehicleTaxonomy.domain
|
|
277
|
+
*/
|
|
278
|
+
domain: {
|
|
279
|
+
/**
|
|
280
|
+
* @generated from field: world.VehicleTaxonomyLand land = 10;
|
|
281
|
+
*/
|
|
282
|
+
value: VehicleTaxonomyLand;
|
|
283
|
+
case: "land";
|
|
284
|
+
} | {
|
|
285
|
+
/**
|
|
286
|
+
* @generated from field: world.VehicleTaxonomyAir air = 11;
|
|
287
|
+
*/
|
|
288
|
+
value: VehicleTaxonomyAir;
|
|
289
|
+
case: "air";
|
|
290
|
+
} | {
|
|
291
|
+
/**
|
|
292
|
+
* @generated from field: world.VehicleTaxonomySea sea = 12;
|
|
293
|
+
*/
|
|
294
|
+
value: VehicleTaxonomySea;
|
|
295
|
+
case: "sea";
|
|
296
|
+
} | {
|
|
297
|
+
/**
|
|
298
|
+
* @generated from field: world.VehicleTaxonomySubsurface subsurface = 13;
|
|
299
|
+
*/
|
|
300
|
+
value: VehicleTaxonomySubsurface;
|
|
301
|
+
case: "subsurface";
|
|
302
|
+
} | { case: undefined; value?: undefined };
|
|
303
|
+
};
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
* Describes the message world.VehicleTaxonomy.
|
|
307
|
+
* Use `create(VehicleTaxonomySchema)` to create a new message.
|
|
308
|
+
*/
|
|
309
|
+
export declare const VehicleTaxonomySchema: GenMessage<VehicleTaxonomy>;
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* @generated from message world.VehicleTaxonomyUnmanned
|
|
313
|
+
*/
|
|
314
|
+
export declare type VehicleTaxonomyUnmanned = Message<"world.VehicleTaxonomyUnmanned"> & {
|
|
315
|
+
};
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* Describes the message world.VehicleTaxonomyUnmanned.
|
|
319
|
+
* Use `create(VehicleTaxonomyUnmannedSchema)` to create a new message.
|
|
320
|
+
*/
|
|
321
|
+
export declare const VehicleTaxonomyUnmannedSchema: GenMessage<VehicleTaxonomyUnmanned>;
|
|
322
|
+
|
|
323
|
+
/**
|
|
324
|
+
* @generated from message world.VehicleTaxonomyLand
|
|
325
|
+
*/
|
|
326
|
+
export declare type VehicleTaxonomyLand = Message<"world.VehicleTaxonomyLand"> & {
|
|
327
|
+
/**
|
|
328
|
+
* @generated from oneof world.VehicleTaxonomyLand.kind
|
|
329
|
+
*/
|
|
330
|
+
kind: {
|
|
331
|
+
/**
|
|
332
|
+
* @generated from field: world.VehicleTaxonomyTracked tracked = 1;
|
|
333
|
+
*/
|
|
334
|
+
value: VehicleTaxonomyTracked;
|
|
335
|
+
case: "tracked";
|
|
336
|
+
} | {
|
|
337
|
+
/**
|
|
338
|
+
* @generated from field: world.VehicleTaxonomyTwoWheeled two_wheeled = 2;
|
|
339
|
+
*/
|
|
340
|
+
value: VehicleTaxonomyTwoWheeled;
|
|
341
|
+
case: "twoWheeled";
|
|
342
|
+
} | {
|
|
343
|
+
/**
|
|
344
|
+
* @generated from field: world.VehicleTaxonomyMultiWheeled multi_wheeled = 3;
|
|
345
|
+
*/
|
|
346
|
+
value: VehicleTaxonomyMultiWheeled;
|
|
347
|
+
case: "multiWheeled";
|
|
348
|
+
} | { case: undefined; value?: undefined };
|
|
349
|
+
};
|
|
350
|
+
|
|
351
|
+
/**
|
|
352
|
+
* Describes the message world.VehicleTaxonomyLand.
|
|
353
|
+
* Use `create(VehicleTaxonomyLandSchema)` to create a new message.
|
|
354
|
+
*/
|
|
355
|
+
export declare const VehicleTaxonomyLandSchema: GenMessage<VehicleTaxonomyLand>;
|
|
356
|
+
|
|
357
|
+
/**
|
|
358
|
+
* @generated from message world.VehicleTaxonomyTracked
|
|
359
|
+
*/
|
|
360
|
+
export declare type VehicleTaxonomyTracked = Message<"world.VehicleTaxonomyTracked"> & {
|
|
361
|
+
};
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* Describes the message world.VehicleTaxonomyTracked.
|
|
365
|
+
* Use `create(VehicleTaxonomyTrackedSchema)` to create a new message.
|
|
366
|
+
*/
|
|
367
|
+
export declare const VehicleTaxonomyTrackedSchema: GenMessage<VehicleTaxonomyTracked>;
|
|
368
|
+
|
|
369
|
+
/**
|
|
370
|
+
* @generated from message world.VehicleTaxonomyTwoWheeled
|
|
371
|
+
*/
|
|
372
|
+
export declare type VehicleTaxonomyTwoWheeled = Message<"world.VehicleTaxonomyTwoWheeled"> & {
|
|
373
|
+
};
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* Describes the message world.VehicleTaxonomyTwoWheeled.
|
|
377
|
+
* Use `create(VehicleTaxonomyTwoWheeledSchema)` to create a new message.
|
|
378
|
+
*/
|
|
379
|
+
export declare const VehicleTaxonomyTwoWheeledSchema: GenMessage<VehicleTaxonomyTwoWheeled>;
|
|
380
|
+
|
|
381
|
+
/**
|
|
382
|
+
* @generated from message world.VehicleTaxonomyMultiWheeled
|
|
383
|
+
*/
|
|
384
|
+
export declare type VehicleTaxonomyMultiWheeled = Message<"world.VehicleTaxonomyMultiWheeled"> & {
|
|
385
|
+
};
|
|
386
|
+
|
|
387
|
+
/**
|
|
388
|
+
* Describes the message world.VehicleTaxonomyMultiWheeled.
|
|
389
|
+
* Use `create(VehicleTaxonomyMultiWheeledSchema)` to create a new message.
|
|
390
|
+
*/
|
|
391
|
+
export declare const VehicleTaxonomyMultiWheeledSchema: GenMessage<VehicleTaxonomyMultiWheeled>;
|
|
392
|
+
|
|
393
|
+
/**
|
|
394
|
+
* @generated from message world.VehicleTaxonomyAir
|
|
395
|
+
*/
|
|
396
|
+
export declare type VehicleTaxonomyAir = Message<"world.VehicleTaxonomyAir"> & {
|
|
397
|
+
/**
|
|
398
|
+
* @generated from oneof world.VehicleTaxonomyAir.kind
|
|
399
|
+
*/
|
|
400
|
+
kind: {
|
|
401
|
+
/**
|
|
402
|
+
* @generated from field: world.VehicleTaxonomyAirFixedWing fixed_wing = 1;
|
|
403
|
+
*/
|
|
404
|
+
value: VehicleTaxonomyAirFixedWing;
|
|
405
|
+
case: "fixedWing";
|
|
406
|
+
} | {
|
|
407
|
+
/**
|
|
408
|
+
* @generated from field: world.VehicleTaxonomyAirLighterThanAir lighter_than_air = 2;
|
|
409
|
+
*/
|
|
410
|
+
value: VehicleTaxonomyAirLighterThanAir;
|
|
411
|
+
case: "lighterThanAir";
|
|
412
|
+
} | {
|
|
413
|
+
/**
|
|
414
|
+
* @generated from field: world.VehicleTaxonomyAirRotary rotary = 3;
|
|
415
|
+
*/
|
|
416
|
+
value: VehicleTaxonomyAirRotary;
|
|
417
|
+
case: "rotary";
|
|
418
|
+
} | { case: undefined; value?: undefined };
|
|
419
|
+
};
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* Describes the message world.VehicleTaxonomyAir.
|
|
423
|
+
* Use `create(VehicleTaxonomyAirSchema)` to create a new message.
|
|
424
|
+
*/
|
|
425
|
+
export declare const VehicleTaxonomyAirSchema: GenMessage<VehicleTaxonomyAir>;
|
|
426
|
+
|
|
427
|
+
/**
|
|
428
|
+
* @generated from message world.VehicleTaxonomyAirRotary
|
|
429
|
+
*/
|
|
430
|
+
export declare type VehicleTaxonomyAirRotary = Message<"world.VehicleTaxonomyAirRotary"> & {
|
|
431
|
+
};
|
|
432
|
+
|
|
433
|
+
/**
|
|
434
|
+
* Describes the message world.VehicleTaxonomyAirRotary.
|
|
435
|
+
* Use `create(VehicleTaxonomyAirRotarySchema)` to create a new message.
|
|
436
|
+
*/
|
|
437
|
+
export declare const VehicleTaxonomyAirRotarySchema: GenMessage<VehicleTaxonomyAirRotary>;
|
|
438
|
+
|
|
439
|
+
/**
|
|
440
|
+
* @generated from message world.VehicleTaxonomyAirFixedWing
|
|
441
|
+
*/
|
|
442
|
+
export declare type VehicleTaxonomyAirFixedWing = Message<"world.VehicleTaxonomyAirFixedWing"> & {
|
|
443
|
+
};
|
|
444
|
+
|
|
445
|
+
/**
|
|
446
|
+
* Describes the message world.VehicleTaxonomyAirFixedWing.
|
|
447
|
+
* Use `create(VehicleTaxonomyAirFixedWingSchema)` to create a new message.
|
|
448
|
+
*/
|
|
449
|
+
export declare const VehicleTaxonomyAirFixedWingSchema: GenMessage<VehicleTaxonomyAirFixedWing>;
|
|
450
|
+
|
|
451
|
+
/**
|
|
452
|
+
* @generated from message world.VehicleTaxonomyAirLighterThanAir
|
|
453
|
+
*/
|
|
454
|
+
export declare type VehicleTaxonomyAirLighterThanAir = Message<"world.VehicleTaxonomyAirLighterThanAir"> & {
|
|
455
|
+
};
|
|
456
|
+
|
|
457
|
+
/**
|
|
458
|
+
* Describes the message world.VehicleTaxonomyAirLighterThanAir.
|
|
459
|
+
* Use `create(VehicleTaxonomyAirLighterThanAirSchema)` to create a new message.
|
|
460
|
+
*/
|
|
461
|
+
export declare const VehicleTaxonomyAirLighterThanAirSchema: GenMessage<VehicleTaxonomyAirLighterThanAir>;
|
|
462
|
+
|
|
463
|
+
/**
|
|
464
|
+
* @generated from message world.VehicleTaxonomySea
|
|
465
|
+
*/
|
|
466
|
+
export declare type VehicleTaxonomySea = Message<"world.VehicleTaxonomySea"> & {
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
/**
|
|
470
|
+
* Describes the message world.VehicleTaxonomySea.
|
|
471
|
+
* Use `create(VehicleTaxonomySeaSchema)` to create a new message.
|
|
472
|
+
*/
|
|
473
|
+
export declare const VehicleTaxonomySeaSchema: GenMessage<VehicleTaxonomySea>;
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* @generated from message world.VehicleTaxonomySubsurface
|
|
477
|
+
*/
|
|
478
|
+
export declare type VehicleTaxonomySubsurface = Message<"world.VehicleTaxonomySubsurface"> & {
|
|
479
|
+
};
|
|
480
|
+
|
|
481
|
+
/**
|
|
482
|
+
* Describes the message world.VehicleTaxonomySubsurface.
|
|
483
|
+
* Use `create(VehicleTaxonomySubsurfaceSchema)` to create a new message.
|
|
484
|
+
*/
|
|
485
|
+
export declare const VehicleTaxonomySubsurfaceSchema: GenMessage<VehicleTaxonomySubsurface>;
|
|
486
|
+
|
|
487
|
+
/**
|
|
488
|
+
* @generated from message world.EquipmentTaxonomy
|
|
489
|
+
*/
|
|
490
|
+
export declare type EquipmentTaxonomy = Message<"world.EquipmentTaxonomy"> & {
|
|
491
|
+
/**
|
|
492
|
+
* @generated from field: optional world.EquipmentTaxonomySensor sensor = 1;
|
|
493
|
+
*/
|
|
494
|
+
sensor?: EquipmentTaxonomySensor;
|
|
495
|
+
};
|
|
496
|
+
|
|
497
|
+
/**
|
|
498
|
+
* Describes the message world.EquipmentTaxonomy.
|
|
499
|
+
* Use `create(EquipmentTaxonomySchema)` to create a new message.
|
|
500
|
+
*/
|
|
501
|
+
export declare const EquipmentTaxonomySchema: GenMessage<EquipmentTaxonomy>;
|
|
502
|
+
|
|
503
|
+
/**
|
|
504
|
+
* @generated from message world.EquipmentTaxonomySensor
|
|
505
|
+
*/
|
|
506
|
+
export declare type EquipmentTaxonomySensor = Message<"world.EquipmentTaxonomySensor"> & {
|
|
507
|
+
/**
|
|
508
|
+
* @generated from field: optional world.EquipmentTaxonomySensorEmplaced emplaced = 1;
|
|
509
|
+
*/
|
|
510
|
+
emplaced?: EquipmentTaxonomySensorEmplaced;
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* @generated from oneof world.EquipmentTaxonomySensor.kind
|
|
514
|
+
*/
|
|
515
|
+
kind: {
|
|
516
|
+
/**
|
|
517
|
+
* @generated from field: world.EquipmentTaxonomySensorRadar radar = 10;
|
|
518
|
+
*/
|
|
519
|
+
value: EquipmentTaxonomySensorRadar;
|
|
520
|
+
case: "radar";
|
|
521
|
+
} | {
|
|
522
|
+
/**
|
|
523
|
+
* @generated from field: world.EquipmentTaxonomySensorEW ew = 11;
|
|
524
|
+
*/
|
|
525
|
+
value: EquipmentTaxonomySensorEW;
|
|
526
|
+
case: "ew";
|
|
527
|
+
} | {
|
|
528
|
+
/**
|
|
529
|
+
* @generated from field: world.EquipmentTaxonomySensorCBRN cbrn = 12;
|
|
530
|
+
*/
|
|
531
|
+
value: EquipmentTaxonomySensorCBRN;
|
|
532
|
+
case: "cbrn";
|
|
533
|
+
} | {
|
|
534
|
+
/**
|
|
535
|
+
* @generated from field: world.EquipmentTaxonomySensorAcoustic acoustic = 13;
|
|
536
|
+
*/
|
|
537
|
+
value: EquipmentTaxonomySensorAcoustic;
|
|
538
|
+
case: "acoustic";
|
|
539
|
+
} | {
|
|
540
|
+
/**
|
|
541
|
+
* @generated from field: world.EquipmentTaxonomySensorElectroOptical electro_optical = 14;
|
|
542
|
+
*/
|
|
543
|
+
value: EquipmentTaxonomySensorElectroOptical;
|
|
544
|
+
case: "electroOptical";
|
|
545
|
+
} | { case: undefined; value?: undefined };
|
|
546
|
+
};
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* Describes the message world.EquipmentTaxonomySensor.
|
|
550
|
+
* Use `create(EquipmentTaxonomySensorSchema)` to create a new message.
|
|
551
|
+
*/
|
|
552
|
+
export declare const EquipmentTaxonomySensorSchema: GenMessage<EquipmentTaxonomySensor>;
|
|
553
|
+
|
|
554
|
+
/**
|
|
555
|
+
* @generated from message world.EquipmentTaxonomySensorRadar
|
|
556
|
+
*/
|
|
557
|
+
export declare type EquipmentTaxonomySensorRadar = Message<"world.EquipmentTaxonomySensorRadar"> & {
|
|
558
|
+
};
|
|
559
|
+
|
|
560
|
+
/**
|
|
561
|
+
* Describes the message world.EquipmentTaxonomySensorRadar.
|
|
562
|
+
* Use `create(EquipmentTaxonomySensorRadarSchema)` to create a new message.
|
|
563
|
+
*/
|
|
564
|
+
export declare const EquipmentTaxonomySensorRadarSchema: GenMessage<EquipmentTaxonomySensorRadar>;
|
|
565
|
+
|
|
566
|
+
/**
|
|
567
|
+
* @generated from message world.EquipmentTaxonomySensorEW
|
|
568
|
+
*/
|
|
569
|
+
export declare type EquipmentTaxonomySensorEW = Message<"world.EquipmentTaxonomySensorEW"> & {
|
|
570
|
+
};
|
|
571
|
+
|
|
572
|
+
/**
|
|
573
|
+
* Describes the message world.EquipmentTaxonomySensorEW.
|
|
574
|
+
* Use `create(EquipmentTaxonomySensorEWSchema)` to create a new message.
|
|
575
|
+
*/
|
|
576
|
+
export declare const EquipmentTaxonomySensorEWSchema: GenMessage<EquipmentTaxonomySensorEW>;
|
|
577
|
+
|
|
578
|
+
/**
|
|
579
|
+
* @generated from message world.EquipmentTaxonomySensorCBRN
|
|
580
|
+
*/
|
|
581
|
+
export declare type EquipmentTaxonomySensorCBRN = Message<"world.EquipmentTaxonomySensorCBRN"> & {
|
|
582
|
+
};
|
|
583
|
+
|
|
584
|
+
/**
|
|
585
|
+
* Describes the message world.EquipmentTaxonomySensorCBRN.
|
|
586
|
+
* Use `create(EquipmentTaxonomySensorCBRNSchema)` to create a new message.
|
|
587
|
+
*/
|
|
588
|
+
export declare const EquipmentTaxonomySensorCBRNSchema: GenMessage<EquipmentTaxonomySensorCBRN>;
|
|
589
|
+
|
|
590
|
+
/**
|
|
591
|
+
* @generated from message world.EquipmentTaxonomySensorAcoustic
|
|
592
|
+
*/
|
|
593
|
+
export declare type EquipmentTaxonomySensorAcoustic = Message<"world.EquipmentTaxonomySensorAcoustic"> & {
|
|
594
|
+
};
|
|
595
|
+
|
|
596
|
+
/**
|
|
597
|
+
* Describes the message world.EquipmentTaxonomySensorAcoustic.
|
|
598
|
+
* Use `create(EquipmentTaxonomySensorAcousticSchema)` to create a new message.
|
|
599
|
+
*/
|
|
600
|
+
export declare const EquipmentTaxonomySensorAcousticSchema: GenMessage<EquipmentTaxonomySensorAcoustic>;
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* @generated from message world.EquipmentTaxonomySensorElectroOptical
|
|
604
|
+
*/
|
|
605
|
+
export declare type EquipmentTaxonomySensorElectroOptical = Message<"world.EquipmentTaxonomySensorElectroOptical"> & {
|
|
606
|
+
};
|
|
607
|
+
|
|
608
|
+
/**
|
|
609
|
+
* Describes the message world.EquipmentTaxonomySensorElectroOptical.
|
|
610
|
+
* Use `create(EquipmentTaxonomySensorElectroOpticalSchema)` to create a new message.
|
|
611
|
+
*/
|
|
612
|
+
export declare const EquipmentTaxonomySensorElectroOpticalSchema: GenMessage<EquipmentTaxonomySensorElectroOptical>;
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* @generated from message world.EquipmentTaxonomySensorEmplaced
|
|
616
|
+
*/
|
|
617
|
+
export declare type EquipmentTaxonomySensorEmplaced = Message<"world.EquipmentTaxonomySensorEmplaced"> & {
|
|
618
|
+
};
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* Describes the message world.EquipmentTaxonomySensorEmplaced.
|
|
622
|
+
* Use `create(EquipmentTaxonomySensorEmplacedSchema)` to create a new message.
|
|
623
|
+
*/
|
|
624
|
+
export declare const EquipmentTaxonomySensorEmplacedSchema: GenMessage<EquipmentTaxonomySensorEmplaced>;
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* @generated from message world.EmitterTaxonomy
|
|
628
|
+
*/
|
|
629
|
+
export declare type EmitterTaxonomy = Message<"world.EmitterTaxonomy"> & {
|
|
630
|
+
};
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* Describes the message world.EmitterTaxonomy.
|
|
634
|
+
* Use `create(EmitterTaxonomySchema)` to create a new message.
|
|
635
|
+
*/
|
|
636
|
+
export declare const EmitterTaxonomySchema: GenMessage<EmitterTaxonomy>;
|
|
637
|
+
|
|
638
|
+
/**
|
|
639
|
+
* @generated from message world.TaskingTaxonomy
|
|
640
|
+
*/
|
|
641
|
+
export declare type TaskingTaxonomy = Message<"world.TaskingTaxonomy"> & {
|
|
642
|
+
/**
|
|
643
|
+
* @generated from oneof world.TaskingTaxonomy.kind
|
|
644
|
+
*/
|
|
645
|
+
kind: {
|
|
646
|
+
/**
|
|
647
|
+
* @generated from field: world.TaskingTaxonomyObserve observe = 10;
|
|
648
|
+
*/
|
|
649
|
+
value: TaskingTaxonomyObserve;
|
|
650
|
+
case: "observe";
|
|
651
|
+
} | {
|
|
652
|
+
/**
|
|
653
|
+
* @generated from field: world.TaskingTaxonomyMovement movement = 11;
|
|
654
|
+
*/
|
|
655
|
+
value: TaskingTaxonomyMovement;
|
|
656
|
+
case: "movement";
|
|
657
|
+
} | {
|
|
658
|
+
/**
|
|
659
|
+
* @generated from field: world.TaskingTaxonomyEffect effect = 12;
|
|
660
|
+
*/
|
|
661
|
+
value: TaskingTaxonomyEffect;
|
|
662
|
+
case: "effect";
|
|
663
|
+
} | { case: undefined; value?: undefined };
|
|
664
|
+
};
|
|
665
|
+
|
|
666
|
+
/**
|
|
667
|
+
* Describes the message world.TaskingTaxonomy.
|
|
668
|
+
* Use `create(TaskingTaxonomySchema)` to create a new message.
|
|
669
|
+
*/
|
|
670
|
+
export declare const TaskingTaxonomySchema: GenMessage<TaskingTaxonomy>;
|
|
671
|
+
|
|
672
|
+
/**
|
|
673
|
+
* @generated from message world.TaskingTaxonomyObserve
|
|
674
|
+
*/
|
|
675
|
+
export declare type TaskingTaxonomyObserve = Message<"world.TaskingTaxonomyObserve"> & {
|
|
676
|
+
/**
|
|
677
|
+
* @generated from oneof world.TaskingTaxonomyObserve.kind
|
|
678
|
+
*/
|
|
679
|
+
kind: {
|
|
680
|
+
/**
|
|
681
|
+
* @generated from field: world.TaskingTaxonomyLookAt look_at = 1;
|
|
682
|
+
*/
|
|
683
|
+
value: TaskingTaxonomyLookAt;
|
|
684
|
+
case: "lookAt";
|
|
685
|
+
} | {
|
|
686
|
+
/**
|
|
687
|
+
* @generated from field: world.TaskingTaxonomyScan scan = 2;
|
|
688
|
+
*/
|
|
689
|
+
value: TaskingTaxonomyScan;
|
|
690
|
+
case: "scan";
|
|
691
|
+
} | { case: undefined; value?: undefined };
|
|
692
|
+
};
|
|
693
|
+
|
|
694
|
+
/**
|
|
695
|
+
* Describes the message world.TaskingTaxonomyObserve.
|
|
696
|
+
* Use `create(TaskingTaxonomyObserveSchema)` to create a new message.
|
|
697
|
+
*/
|
|
698
|
+
export declare const TaskingTaxonomyObserveSchema: GenMessage<TaskingTaxonomyObserve>;
|
|
699
|
+
|
|
700
|
+
/**
|
|
701
|
+
* @generated from message world.TaskingTaxonomyMovement
|
|
702
|
+
*/
|
|
703
|
+
export declare type TaskingTaxonomyMovement = Message<"world.TaskingTaxonomyMovement"> & {
|
|
704
|
+
/**
|
|
705
|
+
* @generated from oneof world.TaskingTaxonomyMovement.kind
|
|
706
|
+
*/
|
|
707
|
+
kind: {
|
|
708
|
+
/**
|
|
709
|
+
* @generated from field: world.TaskingTaxonomyMoveTo move_to = 1;
|
|
710
|
+
*/
|
|
711
|
+
value: TaskingTaxonomyMoveTo;
|
|
712
|
+
case: "moveTo";
|
|
713
|
+
} | {
|
|
714
|
+
/**
|
|
715
|
+
* @generated from field: world.TaskingTaxonomyPatrol patrol = 2;
|
|
716
|
+
*/
|
|
717
|
+
value: TaskingTaxonomyPatrol;
|
|
718
|
+
case: "patrol";
|
|
719
|
+
} | {
|
|
720
|
+
/**
|
|
721
|
+
* @generated from field: world.TaskingTaxonomyFollow follow = 3;
|
|
722
|
+
*/
|
|
723
|
+
value: TaskingTaxonomyFollow;
|
|
724
|
+
case: "follow";
|
|
725
|
+
} | { case: undefined; value?: undefined };
|
|
726
|
+
};
|
|
727
|
+
|
|
728
|
+
/**
|
|
729
|
+
* Describes the message world.TaskingTaxonomyMovement.
|
|
730
|
+
* Use `create(TaskingTaxonomyMovementSchema)` to create a new message.
|
|
731
|
+
*/
|
|
732
|
+
export declare const TaskingTaxonomyMovementSchema: GenMessage<TaskingTaxonomyMovement>;
|
|
733
|
+
|
|
734
|
+
/**
|
|
735
|
+
* @generated from message world.TaskingTaxonomyEffect
|
|
736
|
+
*/
|
|
737
|
+
export declare type TaskingTaxonomyEffect = Message<"world.TaskingTaxonomyEffect"> & {
|
|
738
|
+
};
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* Describes the message world.TaskingTaxonomyEffect.
|
|
742
|
+
* Use `create(TaskingTaxonomyEffectSchema)` to create a new message.
|
|
743
|
+
*/
|
|
744
|
+
export declare const TaskingTaxonomyEffectSchema: GenMessage<TaskingTaxonomyEffect>;
|
|
745
|
+
|
|
746
|
+
/**
|
|
747
|
+
* @generated from message world.TaskingTaxonomyLookAt
|
|
748
|
+
*/
|
|
749
|
+
export declare type TaskingTaxonomyLookAt = Message<"world.TaskingTaxonomyLookAt"> & {
|
|
750
|
+
};
|
|
751
|
+
|
|
752
|
+
/**
|
|
753
|
+
* Describes the message world.TaskingTaxonomyLookAt.
|
|
754
|
+
* Use `create(TaskingTaxonomyLookAtSchema)` to create a new message.
|
|
755
|
+
*/
|
|
756
|
+
export declare const TaskingTaxonomyLookAtSchema: GenMessage<TaskingTaxonomyLookAt>;
|
|
757
|
+
|
|
758
|
+
/**
|
|
759
|
+
* @generated from message world.TaskingTaxonomyScan
|
|
760
|
+
*/
|
|
761
|
+
export declare type TaskingTaxonomyScan = Message<"world.TaskingTaxonomyScan"> & {
|
|
762
|
+
};
|
|
763
|
+
|
|
764
|
+
/**
|
|
765
|
+
* Describes the message world.TaskingTaxonomyScan.
|
|
766
|
+
* Use `create(TaskingTaxonomyScanSchema)` to create a new message.
|
|
767
|
+
*/
|
|
768
|
+
export declare const TaskingTaxonomyScanSchema: GenMessage<TaskingTaxonomyScan>;
|
|
769
|
+
|
|
770
|
+
/**
|
|
771
|
+
* @generated from message world.TaskingTaxonomyMoveTo
|
|
772
|
+
*/
|
|
773
|
+
export declare type TaskingTaxonomyMoveTo = Message<"world.TaskingTaxonomyMoveTo"> & {
|
|
774
|
+
};
|
|
775
|
+
|
|
776
|
+
/**
|
|
777
|
+
* Describes the message world.TaskingTaxonomyMoveTo.
|
|
778
|
+
* Use `create(TaskingTaxonomyMoveToSchema)` to create a new message.
|
|
779
|
+
*/
|
|
780
|
+
export declare const TaskingTaxonomyMoveToSchema: GenMessage<TaskingTaxonomyMoveTo>;
|
|
781
|
+
|
|
782
|
+
/**
|
|
783
|
+
* @generated from message world.TaskingTaxonomyPatrol
|
|
784
|
+
*/
|
|
785
|
+
export declare type TaskingTaxonomyPatrol = Message<"world.TaskingTaxonomyPatrol"> & {
|
|
786
|
+
};
|
|
787
|
+
|
|
788
|
+
/**
|
|
789
|
+
* Describes the message world.TaskingTaxonomyPatrol.
|
|
790
|
+
* Use `create(TaskingTaxonomyPatrolSchema)` to create a new message.
|
|
791
|
+
*/
|
|
792
|
+
export declare const TaskingTaxonomyPatrolSchema: GenMessage<TaskingTaxonomyPatrol>;
|
|
793
|
+
|
|
794
|
+
/**
|
|
795
|
+
* @generated from message world.TaskingTaxonomyFollow
|
|
796
|
+
*/
|
|
797
|
+
export declare type TaskingTaxonomyFollow = Message<"world.TaskingTaxonomyFollow"> & {
|
|
798
|
+
};
|
|
799
|
+
|
|
800
|
+
/**
|
|
801
|
+
* Describes the message world.TaskingTaxonomyFollow.
|
|
802
|
+
* Use `create(TaskingTaxonomyFollowSchema)` to create a new message.
|
|
803
|
+
*/
|
|
804
|
+
export declare const TaskingTaxonomyFollowSchema: GenMessage<TaskingTaxonomyFollow>;
|
|
805
|
+
|