@projectqai/proto 0.0.1
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/README.md +35 -0
- package/dist/timeline_pb.d.ts +115 -0
- package/dist/timeline_pb.js +47 -0
- package/dist/world_pb.d.ts +806 -0
- package/dist/world_pb.js +253 -0
- package/package.json +33 -0
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# @projectqai/proto-ts
|
|
2
|
+
|
|
3
|
+
TypeScript bindings for [projectqai/proto](https://github.com/projectqai/proto).
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
bun add @projectqai/proto-ts @bufbuild/protobuf
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { EntitySchema, WorldService } from "@projectqai/proto-ts/world";
|
|
15
|
+
import { create } from "@bufbuild/protobuf";
|
|
16
|
+
|
|
17
|
+
// Create an entity
|
|
18
|
+
const entity = create(EntitySchema, {
|
|
19
|
+
id: "entity-123",
|
|
20
|
+
label: "My Entity",
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
// Use with ConnectRPC
|
|
24
|
+
import { createClient } from "@connectrpc/connect";
|
|
25
|
+
import { createConnectTransport } from "@connectrpc/connect-web";
|
|
26
|
+
|
|
27
|
+
const transport = createConnectTransport({ baseUrl: "http://localhost:50051" });
|
|
28
|
+
const client = createClient(WorldService, transport);
|
|
29
|
+
|
|
30
|
+
const response = await client.listEntities({});
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
## Exports
|
|
34
|
+
|
|
35
|
+
- `@projectqai/proto-ts/world` - Entity types and WorldService
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
|
|
2
|
+
// @generated from file timeline.proto (package timeline, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file timeline.proto.
|
|
11
|
+
*/
|
|
12
|
+
export declare const file_timeline: GenFile;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* @generated from message timeline.GetTimelineRequest
|
|
16
|
+
*/
|
|
17
|
+
export declare type GetTimelineRequest = Message<"timeline.GetTimelineRequest"> & {
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* Describes the message timeline.GetTimelineRequest.
|
|
22
|
+
* Use `create(GetTimelineRequestSchema)` to create a new message.
|
|
23
|
+
*/
|
|
24
|
+
export declare const GetTimelineRequestSchema: GenMessage<GetTimelineRequest>;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* @generated from message timeline.GetTimelineResponse
|
|
28
|
+
*/
|
|
29
|
+
export declare type GetTimelineResponse = Message<"timeline.GetTimelineResponse"> & {
|
|
30
|
+
/**
|
|
31
|
+
* @generated from field: google.protobuf.Timestamp min = 1;
|
|
32
|
+
*/
|
|
33
|
+
min?: Timestamp;
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* @generated from field: google.protobuf.Timestamp max = 2;
|
|
37
|
+
*/
|
|
38
|
+
max?: Timestamp;
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* @generated from field: bool frozen = 3;
|
|
42
|
+
*/
|
|
43
|
+
frozen: boolean;
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* @generated from field: google.protobuf.Timestamp at = 4;
|
|
47
|
+
*/
|
|
48
|
+
at?: Timestamp;
|
|
49
|
+
};
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Describes the message timeline.GetTimelineResponse.
|
|
53
|
+
* Use `create(GetTimelineResponseSchema)` to create a new message.
|
|
54
|
+
*/
|
|
55
|
+
export declare const GetTimelineResponseSchema: GenMessage<GetTimelineResponse>;
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* @generated from message timeline.MoveTimelineRequest
|
|
59
|
+
*/
|
|
60
|
+
export declare type MoveTimelineRequest = Message<"timeline.MoveTimelineRequest"> & {
|
|
61
|
+
/**
|
|
62
|
+
* @generated from field: bool freeze = 1;
|
|
63
|
+
*/
|
|
64
|
+
freeze: boolean;
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* @generated from field: google.protobuf.Timestamp at = 2;
|
|
68
|
+
*/
|
|
69
|
+
at?: Timestamp;
|
|
70
|
+
};
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* Describes the message timeline.MoveTimelineRequest.
|
|
74
|
+
* Use `create(MoveTimelineRequestSchema)` to create a new message.
|
|
75
|
+
*/
|
|
76
|
+
export declare const MoveTimelineRequestSchema: GenMessage<MoveTimelineRequest>;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @generated from message timeline.MoveTimelineResponse
|
|
80
|
+
*/
|
|
81
|
+
export declare type MoveTimelineResponse = Message<"timeline.MoveTimelineResponse"> & {
|
|
82
|
+
/**
|
|
83
|
+
* @generated from field: google.protobuf.Timestamp current = 1;
|
|
84
|
+
*/
|
|
85
|
+
current?: Timestamp;
|
|
86
|
+
};
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* Describes the message timeline.MoveTimelineResponse.
|
|
90
|
+
* Use `create(MoveTimelineResponseSchema)` to create a new message.
|
|
91
|
+
*/
|
|
92
|
+
export declare const MoveTimelineResponseSchema: GenMessage<MoveTimelineResponse>;
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* @generated from service timeline.TimelineService
|
|
96
|
+
*/
|
|
97
|
+
export declare const TimelineService: GenService<{
|
|
98
|
+
/**
|
|
99
|
+
* @generated from rpc timeline.TimelineService.MoveTimeline
|
|
100
|
+
*/
|
|
101
|
+
moveTimeline: {
|
|
102
|
+
methodKind: "unary";
|
|
103
|
+
input: typeof MoveTimelineRequestSchema;
|
|
104
|
+
output: typeof MoveTimelineResponseSchema;
|
|
105
|
+
},
|
|
106
|
+
/**
|
|
107
|
+
* @generated from rpc timeline.TimelineService.GetTimeline
|
|
108
|
+
*/
|
|
109
|
+
getTimeline: {
|
|
110
|
+
methodKind: "server_streaming";
|
|
111
|
+
input: typeof GetTimelineRequestSchema;
|
|
112
|
+
output: typeof GetTimelineResponseSchema;
|
|
113
|
+
},
|
|
114
|
+
}>;
|
|
115
|
+
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
|
|
2
|
+
// @generated from file timeline.proto (package timeline, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file timeline.proto.
|
|
10
|
+
*/
|
|
11
|
+
export const file_timeline = /*@__PURE__*/
|
|
12
|
+
fileDesc("Cg50aW1lbGluZS5wcm90bxIIdGltZWxpbmUiFAoSR2V0VGltZWxpbmVSZXF1ZXN0Ip8BChNHZXRUaW1lbGluZVJlc3BvbnNlEicKA21pbhgBIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASJwoDbWF4GAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBIOCgZmcm96ZW4YAyABKAgSJgoCYXQYBCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIk0KE01vdmVUaW1lbGluZVJlcXVlc3QSDgoGZnJlZXplGAEgASgIEiYKAmF0GAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCJDChRNb3ZlVGltZWxpbmVSZXNwb25zZRIrCgdjdXJyZW50GAEgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcDKuAQoPVGltZWxpbmVTZXJ2aWNlEk0KDE1vdmVUaW1lbGluZRIdLnRpbWVsaW5lLk1vdmVUaW1lbGluZVJlcXVlc3QaHi50aW1lbGluZS5Nb3ZlVGltZWxpbmVSZXNwb25zZRJMCgtHZXRUaW1lbGluZRIcLnRpbWVsaW5lLkdldFRpbWVsaW5lUmVxdWVzdBodLnRpbWVsaW5lLkdldFRpbWVsaW5lUmVzcG9uc2UwAUIgWh5naXRodWIuY29tL3Byb2plY3RxYWkvcHJvdG8vZ29iBnByb3RvMw", [file_google_protobuf_timestamp]);
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Describes the message timeline.GetTimelineRequest.
|
|
16
|
+
* Use `create(GetTimelineRequestSchema)` to create a new message.
|
|
17
|
+
*/
|
|
18
|
+
export const GetTimelineRequestSchema = /*@__PURE__*/
|
|
19
|
+
messageDesc(file_timeline, 0);
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message timeline.GetTimelineResponse.
|
|
23
|
+
* Use `create(GetTimelineResponseSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const GetTimelineResponseSchema = /*@__PURE__*/
|
|
26
|
+
messageDesc(file_timeline, 1);
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Describes the message timeline.MoveTimelineRequest.
|
|
30
|
+
* Use `create(MoveTimelineRequestSchema)` to create a new message.
|
|
31
|
+
*/
|
|
32
|
+
export const MoveTimelineRequestSchema = /*@__PURE__*/
|
|
33
|
+
messageDesc(file_timeline, 2);
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message timeline.MoveTimelineResponse.
|
|
37
|
+
* Use `create(MoveTimelineResponseSchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
export const MoveTimelineResponseSchema = /*@__PURE__*/
|
|
40
|
+
messageDesc(file_timeline, 3);
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* @generated from service timeline.TimelineService
|
|
44
|
+
*/
|
|
45
|
+
export const TimelineService = /*@__PURE__*/
|
|
46
|
+
serviceDesc(file_timeline, 0);
|
|
47
|
+
|
|
@@ -0,0 +1,806 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
|
|
2
|
+
// @generated from file world.proto (package world, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenEnum, GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { Timestamp } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file world.proto.
|
|
11
|
+
*/
|
|
12
|
+
export declare const file_world: GenFile;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* @generated from message world.Entity
|
|
16
|
+
*/
|
|
17
|
+
export declare type Entity = Message<"world.Entity"> & {
|
|
18
|
+
/**
|
|
19
|
+
* @generated from field: string id = 1;
|
|
20
|
+
*/
|
|
21
|
+
id: string;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: optional string label = 2;
|
|
25
|
+
*/
|
|
26
|
+
label?: string;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: optional world.ControllerRef controller = 3;
|
|
30
|
+
*/
|
|
31
|
+
controller?: ControllerRef;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @generated from field: optional world.Lifetime lifetime = 4;
|
|
35
|
+
*/
|
|
36
|
+
lifetime?: Lifetime;
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* @generated from field: optional world.Priority priority = 5;
|
|
40
|
+
*/
|
|
41
|
+
priority?: Priority;
|
|
42
|
+
|
|
43
|
+
/**
|
|
44
|
+
* @generated from field: optional world.GeoSpatialComponent geo = 11;
|
|
45
|
+
*/
|
|
46
|
+
geo?: GeoSpatialComponent;
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: optional world.SymbolComponent symbol = 12;
|
|
50
|
+
*/
|
|
51
|
+
symbol?: SymbolComponent;
|
|
52
|
+
|
|
53
|
+
/**
|
|
54
|
+
* @generated from field: optional world.CameraComponent camera = 15;
|
|
55
|
+
*/
|
|
56
|
+
camera?: CameraComponent;
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
* @generated from field: optional world.DetectionComponent detection = 16;
|
|
60
|
+
*/
|
|
61
|
+
detection?: DetectionComponent;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* @generated from field: optional world.BearingComponent bearing = 17;
|
|
65
|
+
*/
|
|
66
|
+
bearing?: BearingComponent;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* @generated from field: optional world.LocationUncertaintyComponent locationUncertainty = 20;
|
|
70
|
+
*/
|
|
71
|
+
locationUncertainty?: LocationUncertaintyComponent;
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* @generated from field: optional world.TrackComponent track = 21;
|
|
75
|
+
*/
|
|
76
|
+
track?: TrackComponent;
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: optional world.LocatorComponent locator = 22;
|
|
80
|
+
*/
|
|
81
|
+
locator?: LocatorComponent;
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* @generated from field: optional world.TaskableComponent taskable = 23;
|
|
85
|
+
*/
|
|
86
|
+
taskable?: TaskableComponent;
|
|
87
|
+
};
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Describes the message world.Entity.
|
|
91
|
+
* Use `create(EntitySchema)` to create a new message.
|
|
92
|
+
*/
|
|
93
|
+
export declare const EntitySchema: GenMessage<Entity>;
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* @generated from message world.ControllerRef
|
|
97
|
+
*/
|
|
98
|
+
export declare type ControllerRef = Message<"world.ControllerRef"> & {
|
|
99
|
+
/**
|
|
100
|
+
* @generated from field: string id = 1;
|
|
101
|
+
*/
|
|
102
|
+
id: string;
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* @generated from field: string name = 2;
|
|
106
|
+
*/
|
|
107
|
+
name: string;
|
|
108
|
+
};
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* Describes the message world.ControllerRef.
|
|
112
|
+
* Use `create(ControllerRefSchema)` to create a new message.
|
|
113
|
+
*/
|
|
114
|
+
export declare const ControllerRefSchema: GenMessage<ControllerRef>;
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* @generated from message world.Lifetime
|
|
118
|
+
*/
|
|
119
|
+
export declare type Lifetime = Message<"world.Lifetime"> & {
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: optional google.protobuf.Timestamp from = 1;
|
|
122
|
+
*/
|
|
123
|
+
from?: Timestamp;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* @generated from field: optional google.protobuf.Timestamp until = 2;
|
|
127
|
+
*/
|
|
128
|
+
until?: Timestamp;
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Describes the message world.Lifetime.
|
|
133
|
+
* Use `create(LifetimeSchema)` to create a new message.
|
|
134
|
+
*/
|
|
135
|
+
export declare const LifetimeSchema: GenMessage<Lifetime>;
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* @generated from message world.GeoSpatialComponent
|
|
139
|
+
*/
|
|
140
|
+
export declare type GeoSpatialComponent = Message<"world.GeoSpatialComponent"> & {
|
|
141
|
+
/**
|
|
142
|
+
* @generated from field: double longitude = 1;
|
|
143
|
+
*/
|
|
144
|
+
longitude: number;
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* @generated from field: double latitude = 2;
|
|
148
|
+
*/
|
|
149
|
+
latitude: number;
|
|
150
|
+
|
|
151
|
+
/**
|
|
152
|
+
* @generated from field: double altitude = 3;
|
|
153
|
+
*/
|
|
154
|
+
altitude: number;
|
|
155
|
+
};
|
|
156
|
+
|
|
157
|
+
/**
|
|
158
|
+
* Describes the message world.GeoSpatialComponent.
|
|
159
|
+
* Use `create(GeoSpatialComponentSchema)` to create a new message.
|
|
160
|
+
*/
|
|
161
|
+
export declare const GeoSpatialComponentSchema: GenMessage<GeoSpatialComponent>;
|
|
162
|
+
|
|
163
|
+
/**
|
|
164
|
+
* @generated from message world.SymbolComponent
|
|
165
|
+
*/
|
|
166
|
+
export declare type SymbolComponent = Message<"world.SymbolComponent"> & {
|
|
167
|
+
/**
|
|
168
|
+
* @generated from field: string milStd2525C = 1;
|
|
169
|
+
*/
|
|
170
|
+
milStd2525C: string;
|
|
171
|
+
};
|
|
172
|
+
|
|
173
|
+
/**
|
|
174
|
+
* Describes the message world.SymbolComponent.
|
|
175
|
+
* Use `create(SymbolComponentSchema)` to create a new message.
|
|
176
|
+
*/
|
|
177
|
+
export declare const SymbolComponentSchema: GenMessage<SymbolComponent>;
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* @generated from message world.Camera
|
|
181
|
+
*/
|
|
182
|
+
export declare type Camera = Message<"world.Camera"> & {
|
|
183
|
+
/**
|
|
184
|
+
* @generated from field: string label = 1;
|
|
185
|
+
*/
|
|
186
|
+
label: string;
|
|
187
|
+
|
|
188
|
+
/**
|
|
189
|
+
* @generated from field: string url = 2;
|
|
190
|
+
*/
|
|
191
|
+
url: string;
|
|
192
|
+
};
|
|
193
|
+
|
|
194
|
+
/**
|
|
195
|
+
* Describes the message world.Camera.
|
|
196
|
+
* Use `create(CameraSchema)` to create a new message.
|
|
197
|
+
*/
|
|
198
|
+
export declare const CameraSchema: GenMessage<Camera>;
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* @generated from message world.CameraComponent
|
|
202
|
+
*/
|
|
203
|
+
export declare type CameraComponent = Message<"world.CameraComponent"> & {
|
|
204
|
+
/**
|
|
205
|
+
* @generated from field: repeated world.Camera cameras = 1;
|
|
206
|
+
*/
|
|
207
|
+
cameras: Camera[];
|
|
208
|
+
};
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Describes the message world.CameraComponent.
|
|
212
|
+
* Use `create(CameraComponentSchema)` to create a new message.
|
|
213
|
+
*/
|
|
214
|
+
export declare const CameraComponentSchema: GenMessage<CameraComponent>;
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* @generated from message world.DetectionComponent
|
|
218
|
+
*/
|
|
219
|
+
export declare type DetectionComponent = Message<"world.DetectionComponent"> & {
|
|
220
|
+
/**
|
|
221
|
+
* @generated from field: optional string detectorEntityID = 1;
|
|
222
|
+
*/
|
|
223
|
+
detectorEntityID?: string;
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* @generated from field: optional string classification = 2;
|
|
227
|
+
*/
|
|
228
|
+
classification?: string;
|
|
229
|
+
|
|
230
|
+
/**
|
|
231
|
+
* @generated from field: optional google.protobuf.Timestamp lastMeasured = 3;
|
|
232
|
+
*/
|
|
233
|
+
lastMeasured?: Timestamp;
|
|
234
|
+
};
|
|
235
|
+
|
|
236
|
+
/**
|
|
237
|
+
* Describes the message world.DetectionComponent.
|
|
238
|
+
* Use `create(DetectionComponentSchema)` to create a new message.
|
|
239
|
+
*/
|
|
240
|
+
export declare const DetectionComponentSchema: GenMessage<DetectionComponent>;
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* @generated from message world.BearingComponent
|
|
244
|
+
*/
|
|
245
|
+
export declare type BearingComponent = Message<"world.BearingComponent"> & {
|
|
246
|
+
/**
|
|
247
|
+
* @generated from field: optional double azimuth = 1;
|
|
248
|
+
*/
|
|
249
|
+
azimuth?: number;
|
|
250
|
+
|
|
251
|
+
/**
|
|
252
|
+
* @generated from field: optional double elevation = 2;
|
|
253
|
+
*/
|
|
254
|
+
elevation?: number;
|
|
255
|
+
};
|
|
256
|
+
|
|
257
|
+
/**
|
|
258
|
+
* Describes the message world.BearingComponent.
|
|
259
|
+
* Use `create(BearingComponentSchema)` to create a new message.
|
|
260
|
+
*/
|
|
261
|
+
export declare const BearingComponentSchema: GenMessage<BearingComponent>;
|
|
262
|
+
|
|
263
|
+
/**
|
|
264
|
+
* @generated from message world.CovarianceMatrix
|
|
265
|
+
*/
|
|
266
|
+
export declare type CovarianceMatrix = Message<"world.CovarianceMatrix"> & {
|
|
267
|
+
/**
|
|
268
|
+
* @generated from field: optional double mxx = 1;
|
|
269
|
+
*/
|
|
270
|
+
mxx?: number;
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* @generated from field: optional double mxy = 2;
|
|
274
|
+
*/
|
|
275
|
+
mxy?: number;
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* @generated from field: optional double mxz = 3;
|
|
279
|
+
*/
|
|
280
|
+
mxz?: number;
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* @generated from field: optional double myy = 4;
|
|
284
|
+
*/
|
|
285
|
+
myy?: number;
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* @generated from field: optional double myz = 5;
|
|
289
|
+
*/
|
|
290
|
+
myz?: number;
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* @generated from field: optional double mzz = 6;
|
|
294
|
+
*/
|
|
295
|
+
mzz?: number;
|
|
296
|
+
};
|
|
297
|
+
|
|
298
|
+
/**
|
|
299
|
+
* Describes the message world.CovarianceMatrix.
|
|
300
|
+
* Use `create(CovarianceMatrixSchema)` to create a new message.
|
|
301
|
+
*/
|
|
302
|
+
export declare const CovarianceMatrixSchema: GenMessage<CovarianceMatrix>;
|
|
303
|
+
|
|
304
|
+
/**
|
|
305
|
+
* @generated from message world.LocationUncertaintyComponent
|
|
306
|
+
*/
|
|
307
|
+
export declare type LocationUncertaintyComponent = Message<"world.LocationUncertaintyComponent"> & {
|
|
308
|
+
/**
|
|
309
|
+
* @generated from field: optional world.CovarianceMatrix positionEnuCov = 1;
|
|
310
|
+
*/
|
|
311
|
+
positionEnuCov?: CovarianceMatrix;
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* @generated from field: optional world.CovarianceMatrix velocityEnuCov = 2;
|
|
315
|
+
*/
|
|
316
|
+
velocityEnuCov?: CovarianceMatrix;
|
|
317
|
+
};
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* Describes the message world.LocationUncertaintyComponent.
|
|
321
|
+
* Use `create(LocationUncertaintyComponentSchema)` to create a new message.
|
|
322
|
+
*/
|
|
323
|
+
export declare const LocationUncertaintyComponentSchema: GenMessage<LocationUncertaintyComponent>;
|
|
324
|
+
|
|
325
|
+
/**
|
|
326
|
+
* @generated from message world.TrackComponent
|
|
327
|
+
*/
|
|
328
|
+
export declare type TrackComponent = Message<"world.TrackComponent"> & {
|
|
329
|
+
};
|
|
330
|
+
|
|
331
|
+
/**
|
|
332
|
+
* Describes the message world.TrackComponent.
|
|
333
|
+
* Use `create(TrackComponentSchema)` to create a new message.
|
|
334
|
+
*/
|
|
335
|
+
export declare const TrackComponentSchema: GenMessage<TrackComponent>;
|
|
336
|
+
|
|
337
|
+
/**
|
|
338
|
+
* @generated from message world.LocatorComponent
|
|
339
|
+
*/
|
|
340
|
+
export declare type LocatorComponent = Message<"world.LocatorComponent"> & {
|
|
341
|
+
/**
|
|
342
|
+
* @generated from field: string locatedEntityID = 1;
|
|
343
|
+
*/
|
|
344
|
+
locatedEntityID: string;
|
|
345
|
+
};
|
|
346
|
+
|
|
347
|
+
/**
|
|
348
|
+
* Describes the message world.LocatorComponent.
|
|
349
|
+
* Use `create(LocatorComponentSchema)` to create a new message.
|
|
350
|
+
*/
|
|
351
|
+
export declare const LocatorComponentSchema: GenMessage<LocatorComponent>;
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* @generated from message world.TaskableContext
|
|
355
|
+
*/
|
|
356
|
+
export declare type TaskableContext = Message<"world.TaskableContext"> & {
|
|
357
|
+
/**
|
|
358
|
+
* @generated from field: optional string entityId = 1;
|
|
359
|
+
*/
|
|
360
|
+
entityId?: string;
|
|
361
|
+
};
|
|
362
|
+
|
|
363
|
+
/**
|
|
364
|
+
* Describes the message world.TaskableContext.
|
|
365
|
+
* Use `create(TaskableContextSchema)` to create a new message.
|
|
366
|
+
*/
|
|
367
|
+
export declare const TaskableContextSchema: GenMessage<TaskableContext>;
|
|
368
|
+
|
|
369
|
+
/**
|
|
370
|
+
* @generated from message world.TaskableAssignee
|
|
371
|
+
*/
|
|
372
|
+
export declare type TaskableAssignee = Message<"world.TaskableAssignee"> & {
|
|
373
|
+
/**
|
|
374
|
+
* @generated from field: optional string entityId = 1;
|
|
375
|
+
*/
|
|
376
|
+
entityId?: string;
|
|
377
|
+
};
|
|
378
|
+
|
|
379
|
+
/**
|
|
380
|
+
* Describes the message world.TaskableAssignee.
|
|
381
|
+
* Use `create(TaskableAssigneeSchema)` to create a new message.
|
|
382
|
+
*/
|
|
383
|
+
export declare const TaskableAssigneeSchema: GenMessage<TaskableAssignee>;
|
|
384
|
+
|
|
385
|
+
/**
|
|
386
|
+
* @generated from message world.TaskableComponent
|
|
387
|
+
*/
|
|
388
|
+
export declare type TaskableComponent = Message<"world.TaskableComponent"> & {
|
|
389
|
+
/**
|
|
390
|
+
* @generated from field: optional string reserved = 1;
|
|
391
|
+
*/
|
|
392
|
+
reserved?: string;
|
|
393
|
+
|
|
394
|
+
/**
|
|
395
|
+
* @generated from field: optional string label = 2;
|
|
396
|
+
*/
|
|
397
|
+
label?: string;
|
|
398
|
+
|
|
399
|
+
/**
|
|
400
|
+
* @generated from field: repeated world.TaskableContext context = 3;
|
|
401
|
+
*/
|
|
402
|
+
context: TaskableContext[];
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* @generated from field: repeated world.TaskableAssignee assignee = 4;
|
|
406
|
+
*/
|
|
407
|
+
assignee: TaskableAssignee[];
|
|
408
|
+
};
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* Describes the message world.TaskableComponent.
|
|
412
|
+
* Use `create(TaskableComponentSchema)` to create a new message.
|
|
413
|
+
*/
|
|
414
|
+
export declare const TaskableComponentSchema: GenMessage<TaskableComponent>;
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* @generated from message world.Geometry
|
|
418
|
+
*/
|
|
419
|
+
export declare type Geometry = Message<"world.Geometry"> & {
|
|
420
|
+
/**
|
|
421
|
+
* @generated from field: bytes wkb = 1;
|
|
422
|
+
*/
|
|
423
|
+
wkb: Uint8Array;
|
|
424
|
+
};
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* Describes the message world.Geometry.
|
|
428
|
+
* Use `create(GeometrySchema)` to create a new message.
|
|
429
|
+
*/
|
|
430
|
+
export declare const GeometrySchema: GenMessage<Geometry>;
|
|
431
|
+
|
|
432
|
+
/**
|
|
433
|
+
* @generated from message world.ListEntitiesRequest
|
|
434
|
+
*/
|
|
435
|
+
export declare type ListEntitiesRequest = Message<"world.ListEntitiesRequest"> & {
|
|
436
|
+
/**
|
|
437
|
+
* @generated from field: optional world.Geometry geo = 2;
|
|
438
|
+
*/
|
|
439
|
+
geo?: Geometry;
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* @generated from field: optional world.TaskableContext taskableContext = 3;
|
|
443
|
+
*/
|
|
444
|
+
taskableContext?: TaskableContext;
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* @generated from field: optional world.TaskableAssignee TaskableAssignee = 4;
|
|
448
|
+
*/
|
|
449
|
+
TaskableAssignee?: TaskableAssignee;
|
|
450
|
+
};
|
|
451
|
+
|
|
452
|
+
/**
|
|
453
|
+
* Describes the message world.ListEntitiesRequest.
|
|
454
|
+
* Use `create(ListEntitiesRequestSchema)` to create a new message.
|
|
455
|
+
*/
|
|
456
|
+
export declare const ListEntitiesRequestSchema: GenMessage<ListEntitiesRequest>;
|
|
457
|
+
|
|
458
|
+
/**
|
|
459
|
+
* @generated from message world.ListEntitiesResponse
|
|
460
|
+
*/
|
|
461
|
+
export declare type ListEntitiesResponse = Message<"world.ListEntitiesResponse"> & {
|
|
462
|
+
/**
|
|
463
|
+
* @generated from field: repeated world.Entity entities = 1;
|
|
464
|
+
*/
|
|
465
|
+
entities: Entity[];
|
|
466
|
+
};
|
|
467
|
+
|
|
468
|
+
/**
|
|
469
|
+
* Describes the message world.ListEntitiesResponse.
|
|
470
|
+
* Use `create(ListEntitiesResponseSchema)` to create a new message.
|
|
471
|
+
*/
|
|
472
|
+
export declare const ListEntitiesResponseSchema: GenMessage<ListEntitiesResponse>;
|
|
473
|
+
|
|
474
|
+
/**
|
|
475
|
+
* @generated from message world.EntityChangeRequest
|
|
476
|
+
*/
|
|
477
|
+
export declare type EntityChangeRequest = Message<"world.EntityChangeRequest"> & {
|
|
478
|
+
/**
|
|
479
|
+
* @generated from field: repeated world.Entity changes = 1;
|
|
480
|
+
*/
|
|
481
|
+
changes: Entity[];
|
|
482
|
+
};
|
|
483
|
+
|
|
484
|
+
/**
|
|
485
|
+
* Describes the message world.EntityChangeRequest.
|
|
486
|
+
* Use `create(EntityChangeRequestSchema)` to create a new message.
|
|
487
|
+
*/
|
|
488
|
+
export declare const EntityChangeRequestSchema: GenMessage<EntityChangeRequest>;
|
|
489
|
+
|
|
490
|
+
/**
|
|
491
|
+
* @generated from message world.EntityChangeResponse
|
|
492
|
+
*/
|
|
493
|
+
export declare type EntityChangeResponse = Message<"world.EntityChangeResponse"> & {
|
|
494
|
+
/**
|
|
495
|
+
* @generated from field: bool accepted = 1;
|
|
496
|
+
*/
|
|
497
|
+
accepted: boolean;
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* @generated from field: string debug = 2;
|
|
501
|
+
*/
|
|
502
|
+
debug: string;
|
|
503
|
+
};
|
|
504
|
+
|
|
505
|
+
/**
|
|
506
|
+
* Describes the message world.EntityChangeResponse.
|
|
507
|
+
* Use `create(EntityChangeResponseSchema)` to create a new message.
|
|
508
|
+
*/
|
|
509
|
+
export declare const EntityChangeResponseSchema: GenMessage<EntityChangeResponse>;
|
|
510
|
+
|
|
511
|
+
/**
|
|
512
|
+
* @generated from message world.EntityChangeEvent
|
|
513
|
+
*/
|
|
514
|
+
export declare type EntityChangeEvent = Message<"world.EntityChangeEvent"> & {
|
|
515
|
+
/**
|
|
516
|
+
* @generated from field: world.Entity entity = 1;
|
|
517
|
+
*/
|
|
518
|
+
entity?: Entity;
|
|
519
|
+
|
|
520
|
+
/**
|
|
521
|
+
* @generated from field: world.EntityChange t = 2;
|
|
522
|
+
*/
|
|
523
|
+
t: EntityChange;
|
|
524
|
+
};
|
|
525
|
+
|
|
526
|
+
/**
|
|
527
|
+
* Describes the message world.EntityChangeEvent.
|
|
528
|
+
* Use `create(EntityChangeEventSchema)` to create a new message.
|
|
529
|
+
*/
|
|
530
|
+
export declare const EntityChangeEventSchema: GenMessage<EntityChangeEvent>;
|
|
531
|
+
|
|
532
|
+
/**
|
|
533
|
+
* @generated from message world.GetEntityRequest
|
|
534
|
+
*/
|
|
535
|
+
export declare type GetEntityRequest = Message<"world.GetEntityRequest"> & {
|
|
536
|
+
/**
|
|
537
|
+
* @generated from field: string id = 1;
|
|
538
|
+
*/
|
|
539
|
+
id: string;
|
|
540
|
+
};
|
|
541
|
+
|
|
542
|
+
/**
|
|
543
|
+
* Describes the message world.GetEntityRequest.
|
|
544
|
+
* Use `create(GetEntityRequestSchema)` to create a new message.
|
|
545
|
+
*/
|
|
546
|
+
export declare const GetEntityRequestSchema: GenMessage<GetEntityRequest>;
|
|
547
|
+
|
|
548
|
+
/**
|
|
549
|
+
* @generated from message world.GetEntityResponse
|
|
550
|
+
*/
|
|
551
|
+
export declare type GetEntityResponse = Message<"world.GetEntityResponse"> & {
|
|
552
|
+
/**
|
|
553
|
+
* @generated from field: world.Entity entity = 1;
|
|
554
|
+
*/
|
|
555
|
+
entity?: Entity;
|
|
556
|
+
};
|
|
557
|
+
|
|
558
|
+
/**
|
|
559
|
+
* Describes the message world.GetEntityResponse.
|
|
560
|
+
* Use `create(GetEntityResponseSchema)` to create a new message.
|
|
561
|
+
*/
|
|
562
|
+
export declare const GetEntityResponseSchema: GenMessage<GetEntityResponse>;
|
|
563
|
+
|
|
564
|
+
/**
|
|
565
|
+
* @generated from message world.ObserverRequest
|
|
566
|
+
*/
|
|
567
|
+
export declare type ObserverRequest = Message<"world.ObserverRequest"> & {
|
|
568
|
+
};
|
|
569
|
+
|
|
570
|
+
/**
|
|
571
|
+
* Describes the message world.ObserverRequest.
|
|
572
|
+
* Use `create(ObserverRequestSchema)` to create a new message.
|
|
573
|
+
*/
|
|
574
|
+
export declare const ObserverRequestSchema: GenMessage<ObserverRequest>;
|
|
575
|
+
|
|
576
|
+
/**
|
|
577
|
+
* @generated from message world.ObserverState
|
|
578
|
+
*/
|
|
579
|
+
export declare type ObserverState = Message<"world.ObserverState"> & {
|
|
580
|
+
/**
|
|
581
|
+
* @generated from field: world.Geometry geo = 1;
|
|
582
|
+
*/
|
|
583
|
+
geo?: Geometry;
|
|
584
|
+
|
|
585
|
+
/**
|
|
586
|
+
* @generated from field: optional google.protobuf.Timestamp viewHistory = 2;
|
|
587
|
+
*/
|
|
588
|
+
viewHistory?: Timestamp;
|
|
589
|
+
};
|
|
590
|
+
|
|
591
|
+
/**
|
|
592
|
+
* Describes the message world.ObserverState.
|
|
593
|
+
* Use `create(ObserverStateSchema)` to create a new message.
|
|
594
|
+
*/
|
|
595
|
+
export declare const ObserverStateSchema: GenMessage<ObserverState>;
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* @generated from message world.RunTaskRequest
|
|
599
|
+
*/
|
|
600
|
+
export declare type RunTaskRequest = Message<"world.RunTaskRequest"> & {
|
|
601
|
+
/**
|
|
602
|
+
* @generated from field: string entityId = 1;
|
|
603
|
+
*/
|
|
604
|
+
entityId: string;
|
|
605
|
+
};
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* Describes the message world.RunTaskRequest.
|
|
609
|
+
* Use `create(RunTaskRequestSchema)` to create a new message.
|
|
610
|
+
*/
|
|
611
|
+
export declare const RunTaskRequestSchema: GenMessage<RunTaskRequest>;
|
|
612
|
+
|
|
613
|
+
/**
|
|
614
|
+
* @generated from message world.RunTaskResponse
|
|
615
|
+
*/
|
|
616
|
+
export declare type RunTaskResponse = Message<"world.RunTaskResponse"> & {
|
|
617
|
+
/**
|
|
618
|
+
* @generated from field: string executionId = 1;
|
|
619
|
+
*/
|
|
620
|
+
executionId: string;
|
|
621
|
+
|
|
622
|
+
/**
|
|
623
|
+
* @generated from field: world.TaskStatus status = 2;
|
|
624
|
+
*/
|
|
625
|
+
status: TaskStatus;
|
|
626
|
+
|
|
627
|
+
/**
|
|
628
|
+
* @generated from field: optional string humanReadableReason = 3;
|
|
629
|
+
*/
|
|
630
|
+
humanReadableReason?: string;
|
|
631
|
+
};
|
|
632
|
+
|
|
633
|
+
/**
|
|
634
|
+
* Describes the message world.RunTaskResponse.
|
|
635
|
+
* Use `create(RunTaskResponseSchema)` to create a new message.
|
|
636
|
+
*/
|
|
637
|
+
export declare const RunTaskResponseSchema: GenMessage<RunTaskResponse>;
|
|
638
|
+
|
|
639
|
+
/**
|
|
640
|
+
* @generated from enum world.Priority
|
|
641
|
+
*/
|
|
642
|
+
export enum Priority {
|
|
643
|
+
/**
|
|
644
|
+
* @generated from enum value: PriorityReserved0 = 0;
|
|
645
|
+
*/
|
|
646
|
+
PriorityReserved0 = 0,
|
|
647
|
+
|
|
648
|
+
/**
|
|
649
|
+
* only send when there's enough bandwidth available
|
|
650
|
+
* meta or auxiliary information where loss is tolerable
|
|
651
|
+
*
|
|
652
|
+
* @generated from enum value: PriorityLow = 1;
|
|
653
|
+
*/
|
|
654
|
+
PriorityLow = 1,
|
|
655
|
+
|
|
656
|
+
/**
|
|
657
|
+
* send before low, but stay within bandwidth limits
|
|
658
|
+
* this is typically used for detections and other urgent information
|
|
659
|
+
*
|
|
660
|
+
* @generated from enum value: PriorityHigh = 2;
|
|
661
|
+
*/
|
|
662
|
+
PriorityHigh = 2,
|
|
663
|
+
|
|
664
|
+
/**
|
|
665
|
+
* Ignore bandwidth limit, send as hard as physically possible.
|
|
666
|
+
* Use this only if absolutely sure you understand the operational consequences.
|
|
667
|
+
* Doing this wrong can jeopardize missions
|
|
668
|
+
*
|
|
669
|
+
* @generated from enum value: PriorityBurst = 3;
|
|
670
|
+
*/
|
|
671
|
+
PriorityBurst = 3,
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
/**
|
|
675
|
+
* Describes the enum world.Priority.
|
|
676
|
+
*/
|
|
677
|
+
export declare const PrioritySchema: GenEnum<Priority>;
|
|
678
|
+
|
|
679
|
+
/**
|
|
680
|
+
* @generated from enum world.EntityChange
|
|
681
|
+
*/
|
|
682
|
+
export enum EntityChange {
|
|
683
|
+
/**
|
|
684
|
+
* @generated from enum value: EntityChangeInvalid = 0;
|
|
685
|
+
*/
|
|
686
|
+
EntityChangeInvalid = 0,
|
|
687
|
+
|
|
688
|
+
/**
|
|
689
|
+
* @generated from enum value: EntityChangeUpdated = 1;
|
|
690
|
+
*/
|
|
691
|
+
EntityChangeUpdated = 1,
|
|
692
|
+
|
|
693
|
+
/**
|
|
694
|
+
* @generated from enum value: EntityChangeExpired = 2;
|
|
695
|
+
*/
|
|
696
|
+
EntityChangeExpired = 2,
|
|
697
|
+
|
|
698
|
+
/**
|
|
699
|
+
* @generated from enum value: EntityChangeUnobserved = 3;
|
|
700
|
+
*/
|
|
701
|
+
EntityChangeUnobserved = 3,
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
/**
|
|
705
|
+
* Describes the enum world.EntityChange.
|
|
706
|
+
*/
|
|
707
|
+
export declare const EntityChangeSchema: GenEnum<EntityChange>;
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* @generated from enum world.TaskStatus
|
|
711
|
+
*/
|
|
712
|
+
export enum TaskStatus {
|
|
713
|
+
/**
|
|
714
|
+
* @generated from enum value: TaskStatusInvalid = 0;
|
|
715
|
+
*/
|
|
716
|
+
TaskStatusInvalid = 0,
|
|
717
|
+
|
|
718
|
+
/**
|
|
719
|
+
* @generated from enum value: TaskStatusRunning = 1;
|
|
720
|
+
*/
|
|
721
|
+
TaskStatusRunning = 1,
|
|
722
|
+
|
|
723
|
+
/**
|
|
724
|
+
* @generated from enum value: TaskStatusCompleted = 2;
|
|
725
|
+
*/
|
|
726
|
+
TaskStatusCompleted = 2,
|
|
727
|
+
|
|
728
|
+
/**
|
|
729
|
+
* @generated from enum value: TaskStatusFailed = 3;
|
|
730
|
+
*/
|
|
731
|
+
TaskStatusFailed = 3,
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
/**
|
|
735
|
+
* Describes the enum world.TaskStatus.
|
|
736
|
+
*/
|
|
737
|
+
export declare const TaskStatusSchema: GenEnum<TaskStatus>;
|
|
738
|
+
|
|
739
|
+
/**
|
|
740
|
+
* interact with the world model
|
|
741
|
+
*
|
|
742
|
+
* @generated from service world.WorldService
|
|
743
|
+
*/
|
|
744
|
+
export declare const WorldService: GenService<{
|
|
745
|
+
/**
|
|
746
|
+
* list entities present in the world once
|
|
747
|
+
*
|
|
748
|
+
* @generated from rpc world.WorldService.ListEntities
|
|
749
|
+
*/
|
|
750
|
+
listEntities: {
|
|
751
|
+
methodKind: "unary";
|
|
752
|
+
input: typeof ListEntitiesRequestSchema;
|
|
753
|
+
output: typeof ListEntitiesResponseSchema;
|
|
754
|
+
},
|
|
755
|
+
/**
|
|
756
|
+
* request every detail about one entity
|
|
757
|
+
*
|
|
758
|
+
* @generated from rpc world.WorldService.GetEntity
|
|
759
|
+
*/
|
|
760
|
+
getEntity: {
|
|
761
|
+
methodKind: "unary";
|
|
762
|
+
input: typeof GetEntityRequestSchema;
|
|
763
|
+
output: typeof GetEntityResponseSchema;
|
|
764
|
+
},
|
|
765
|
+
/**
|
|
766
|
+
* continously monitor entities present in the world. this is used by downstream C2.
|
|
767
|
+
*
|
|
768
|
+
* @generated from rpc world.WorldService.WatchEntities
|
|
769
|
+
*/
|
|
770
|
+
watchEntities: {
|
|
771
|
+
methodKind: "server_streaming";
|
|
772
|
+
input: typeof ListEntitiesRequestSchema;
|
|
773
|
+
output: typeof EntityChangeEventSchema;
|
|
774
|
+
},
|
|
775
|
+
/**
|
|
776
|
+
* create or update an entity. used by capabilities
|
|
777
|
+
*
|
|
778
|
+
* @generated from rpc world.WorldService.Push
|
|
779
|
+
*/
|
|
780
|
+
push: {
|
|
781
|
+
methodKind: "unary";
|
|
782
|
+
input: typeof EntityChangeRequestSchema;
|
|
783
|
+
output: typeof EntityChangeResponseSchema;
|
|
784
|
+
},
|
|
785
|
+
/**
|
|
786
|
+
* observe all observers so controllers can pause georegions nobody is looking at
|
|
787
|
+
*
|
|
788
|
+
* @generated from rpc world.WorldService.Observe
|
|
789
|
+
*/
|
|
790
|
+
observe: {
|
|
791
|
+
methodKind: "server_streaming";
|
|
792
|
+
input: typeof ObserverRequestSchema;
|
|
793
|
+
output: typeof ObserverStateSchema;
|
|
794
|
+
},
|
|
795
|
+
/**
|
|
796
|
+
* create an instance of a specific task entity
|
|
797
|
+
*
|
|
798
|
+
* @generated from rpc world.WorldService.RunTask
|
|
799
|
+
*/
|
|
800
|
+
runTask: {
|
|
801
|
+
methodKind: "unary";
|
|
802
|
+
input: typeof RunTaskRequestSchema;
|
|
803
|
+
output: typeof RunTaskResponseSchema;
|
|
804
|
+
},
|
|
805
|
+
}>;
|
|
806
|
+
|
package/dist/world_pb.js
ADDED
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.10.2 with parameter "target=js+dts,import_extension=none"
|
|
2
|
+
// @generated from file world.proto (package world, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { enumDesc, fileDesc, messageDesc, serviceDesc, tsEnum } from "@bufbuild/protobuf/codegenv2";
|
|
6
|
+
import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Describes the file world.proto.
|
|
10
|
+
*/
|
|
11
|
+
export const file_world = /*@__PURE__*/
|
|
12
|
+
fileDesc("Cgt3b3JsZC5wcm90bxIFd29ybGQiiQYKBkVudGl0eRIKCgJpZBgBIAEoCRISCgVsYWJlbBgCIAEoCUgAiAEBEi0KCmNvbnRyb2xsZXIYAyABKAsyFC53b3JsZC5Db250cm9sbGVyUmVmSAGIAQESJgoIbGlmZXRpbWUYBCABKAsyDy53b3JsZC5MaWZldGltZUgCiAEBEiYKCHByaW9yaXR5GAUgASgOMg8ud29ybGQuUHJpb3JpdHlIA4gBARIsCgNnZW8YCyABKAsyGi53b3JsZC5HZW9TcGF0aWFsQ29tcG9uZW50SASIAQESKwoGc3ltYm9sGAwgASgLMhYud29ybGQuU3ltYm9sQ29tcG9uZW50SAWIAQESKwoGY2FtZXJhGA8gASgLMhYud29ybGQuQ2FtZXJhQ29tcG9uZW50SAaIAQESMQoJZGV0ZWN0aW9uGBAgASgLMhkud29ybGQuRGV0ZWN0aW9uQ29tcG9uZW50SAeIAQESLQoHYmVhcmluZxgRIAEoCzIXLndvcmxkLkJlYXJpbmdDb21wb25lbnRICIgBARJFChNsb2NhdGlvblVuY2VydGFpbnR5GBQgASgLMiMud29ybGQuTG9jYXRpb25VbmNlcnRhaW50eUNvbXBvbmVudEgJiAEBEikKBXRyYWNrGBUgASgLMhUud29ybGQuVHJhY2tDb21wb25lbnRICogBARItCgdsb2NhdG9yGBYgASgLMhcud29ybGQuTG9jYXRvckNvbXBvbmVudEgLiAEBEi8KCHRhc2thYmxlGBcgASgLMhgud29ybGQuVGFza2FibGVDb21wb25lbnRIDIgBAUIICgZfbGFiZWxCDQoLX2NvbnRyb2xsZXJCCwoJX2xpZmV0aW1lQgsKCV9wcmlvcml0eUIGCgRfZ2VvQgkKB19zeW1ib2xCCQoHX2NhbWVyYUIMCgpfZGV0ZWN0aW9uQgoKCF9iZWFyaW5nQhYKFF9sb2NhdGlvblVuY2VydGFpbnR5QggKBl90cmFja0IKCghfbG9jYXRvckILCglfdGFza2FibGUiKQoNQ29udHJvbGxlclJlZhIKCgJpZBgBIAEoCRIMCgRuYW1lGAIgASgJInwKCExpZmV0aW1lEi0KBGZyb20YASABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSACIAQESLgoFdW50aWwYAiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wSAGIAQFCBwoFX2Zyb21CCAoGX3VudGlsIkwKE0dlb1NwYXRpYWxDb21wb25lbnQSEQoJbG9uZ2l0dWRlGAEgASgBEhAKCGxhdGl0dWRlGAIgASgBEhAKCGFsdGl0dWRlGAMgASgBIiYKD1N5bWJvbENvbXBvbmVudBITCgttaWxTdGQyNTI1QxgBIAEoCSIkCgZDYW1lcmESDQoFbGFiZWwYASABKAkSCwoDdXJsGAIgASgJIjEKD0NhbWVyYUNvbXBvbmVudBIeCgdjYW1lcmFzGAEgAygLMg0ud29ybGQuQ2FtZXJhIsABChJEZXRlY3Rpb25Db21wb25lbnQSHQoQZGV0ZWN0b3JFbnRpdHlJRBgBIAEoCUgAiAEBEhsKDmNsYXNzaWZpY2F0aW9uGAIgASgJSAGIAQESNQoMbGFzdE1lYXN1cmVkGAMgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgCiAEBQhMKEV9kZXRlY3RvckVudGl0eUlEQhEKD19jbGFzc2lmaWNhdGlvbkIPCg1fbGFzdE1lYXN1cmVkIloKEEJlYXJpbmdDb21wb25lbnQSFAoHYXppbXV0aBgBIAEoAUgAiAEBEhYKCWVsZXZhdGlvbhgCIAEoAUgBiAEBQgoKCF9hemltdXRoQgwKCl9lbGV2YXRpb24irgEKEENvdmFyaWFuY2VNYXRyaXgSEAoDbXh4GAEgASgBSACIAQESEAoDbXh5GAIgASgBSAGIAQESEAoDbXh6GAMgASgBSAKIAQESEAoDbXl5GAQgASgBSAOIAQESEAoDbXl6GAUgASgBSASIAQESEAoDbXp6GAYgASgBSAWIAQFCBgoEX214eEIGCgRfbXh5QgYKBF9teHpCBgoEX215eUIGCgRfbXl6QgYKBF9tenoisAEKHExvY2F0aW9uVW5jZXJ0YWludHlDb21wb25lbnQSNAoOcG9zaXRpb25FbnVDb3YYASABKAsyFy53b3JsZC5Db3ZhcmlhbmNlTWF0cml4SACIAQESNAoOdmVsb2NpdHlFbnVDb3YYAiABKAsyFy53b3JsZC5Db3ZhcmlhbmNlTWF0cml4SAGIAQFCEQoPX3Bvc2l0aW9uRW51Q292QhEKD192ZWxvY2l0eUVudUNvdiIQCg5UcmFja0NvbXBvbmVudCIrChBMb2NhdG9yQ29tcG9uZW50EhcKD2xvY2F0ZWRFbnRpdHlJRBgBIAEoCSI1Cg9UYXNrYWJsZUNvbnRleHQSFQoIZW50aXR5SWQYASABKAlIAIgBAUILCglfZW50aXR5SWQiNgoQVGFza2FibGVBc3NpZ25lZRIVCghlbnRpdHlJZBgBIAEoCUgAiAEBQgsKCV9lbnRpdHlJZCKpAQoRVGFza2FibGVDb21wb25lbnQSFQoIcmVzZXJ2ZWQYASABKAlIAIgBARISCgVsYWJlbBgCIAEoCUgBiAEBEicKB2NvbnRleHQYAyADKAsyFi53b3JsZC5UYXNrYWJsZUNvbnRleHQSKQoIYXNzaWduZWUYBCADKAsyFy53b3JsZC5UYXNrYWJsZUFzc2lnbmVlQgsKCV9yZXNlcnZlZEIICgZfbGFiZWwiFwoIR2VvbWV0cnkSCwoDd2tiGAEgASgMItcBChNMaXN0RW50aXRpZXNSZXF1ZXN0EiEKA2dlbxgCIAEoCzIPLndvcmxkLkdlb21ldHJ5SACIAQESNAoPdGFza2FibGVDb250ZXh0GAMgASgLMhYud29ybGQuVGFza2FibGVDb250ZXh0SAGIAQESNgoQVGFza2FibGVBc3NpZ25lZRgEIAEoCzIXLndvcmxkLlRhc2thYmxlQXNzaWduZWVIAogBAUIGCgRfZ2VvQhIKEF90YXNrYWJsZUNvbnRleHRCEwoRX1Rhc2thYmxlQXNzaWduZWUiNwoUTGlzdEVudGl0aWVzUmVzcG9uc2USHwoIZW50aXRpZXMYASADKAsyDS53b3JsZC5FbnRpdHkiNQoTRW50aXR5Q2hhbmdlUmVxdWVzdBIeCgdjaGFuZ2VzGAEgAygLMg0ud29ybGQuRW50aXR5IjcKFEVudGl0eUNoYW5nZVJlc3BvbnNlEhAKCGFjY2VwdGVkGAEgASgIEg0KBWRlYnVnGAIgASgJIlIKEUVudGl0eUNoYW5nZUV2ZW50Eh0KBmVudGl0eRgBIAEoCzINLndvcmxkLkVudGl0eRIeCgF0GAIgASgOMhMud29ybGQuRW50aXR5Q2hhbmdlIh4KEEdldEVudGl0eVJlcXVlc3QSCgoCaWQYASABKAkiMgoRR2V0RW50aXR5UmVzcG9uc2USHQoGZW50aXR5GAEgASgLMg0ud29ybGQuRW50aXR5IhEKD09ic2VydmVyUmVxdWVzdCJzCg1PYnNlcnZlclN0YXRlEhwKA2dlbxgBIAEoCzIPLndvcmxkLkdlb21ldHJ5EjQKC3ZpZXdIaXN0b3J5GAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcEgAiAEBQg4KDF92aWV3SGlzdG9yeSIiCg5SdW5UYXNrUmVxdWVzdBIQCghlbnRpdHlJZBgBIAEoCSKDAQoPUnVuVGFza1Jlc3BvbnNlEhMKC2V4ZWN1dGlvbklkGAEgASgJEiEKBnN0YXR1cxgCIAEoDjIRLndvcmxkLlRhc2tTdGF0dXMSIAoTaHVtYW5SZWFkYWJsZVJlYXNvbhgDIAEoCUgAiAEBQhYKFF9odW1hblJlYWRhYmxlUmVhc29uKlcKCFByaW9yaXR5EhUKEVByaW9yaXR5UmVzZXJ2ZWQwEAASDwoLUHJpb3JpdHlMb3cQARIQCgxQcmlvcml0eUhpZ2gQAhIRCg1Qcmlvcml0eUJ1cnN0EAMqdQoMRW50aXR5Q2hhbmdlEhcKE0VudGl0eUNoYW5nZUludmFsaWQQABIXChNFbnRpdHlDaGFuZ2VVcGRhdGVkEAESFwoTRW50aXR5Q2hhbmdlRXhwaXJlZBACEhoKFkVudGl0eUNoYW5nZVVub2JzZXJ2ZWQQAyppCgpUYXNrU3RhdHVzEhUKEVRhc2tTdGF0dXNJbnZhbGlkEAASFQoRVGFza1N0YXR1c1J1bm5pbmcQARIXChNUYXNrU3RhdHVzQ29tcGxldGVkEAISFAoQVGFza1N0YXR1c0ZhaWxlZBADMpYDCgxXb3JsZFNlcnZpY2USRwoMTGlzdEVudGl0aWVzEhoud29ybGQuTGlzdEVudGl0aWVzUmVxdWVzdBobLndvcmxkLkxpc3RFbnRpdGllc1Jlc3BvbnNlEj4KCUdldEVudGl0eRIXLndvcmxkLkdldEVudGl0eVJlcXVlc3QaGC53b3JsZC5HZXRFbnRpdHlSZXNwb25zZRJHCg1XYXRjaEVudGl0aWVzEhoud29ybGQuTGlzdEVudGl0aWVzUmVxdWVzdBoYLndvcmxkLkVudGl0eUNoYW5nZUV2ZW50MAESPwoEUHVzaBIaLndvcmxkLkVudGl0eUNoYW5nZVJlcXVlc3QaGy53b3JsZC5FbnRpdHlDaGFuZ2VSZXNwb25zZRI5CgdPYnNlcnZlEhYud29ybGQuT2JzZXJ2ZXJSZXF1ZXN0GhQud29ybGQuT2JzZXJ2ZXJTdGF0ZTABEjgKB1J1blRhc2sSFS53b3JsZC5SdW5UYXNrUmVxdWVzdBoWLndvcmxkLlJ1blRhc2tSZXNwb25zZUIgWh5naXRodWIuY29tL3Byb2plY3RxYWkvcHJvdG8vZ29iBnByb3RvMw", [file_google_protobuf_timestamp]);
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Describes the message world.Entity.
|
|
16
|
+
* Use `create(EntitySchema)` to create a new message.
|
|
17
|
+
*/
|
|
18
|
+
export const EntitySchema = /*@__PURE__*/
|
|
19
|
+
messageDesc(file_world, 0);
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* Describes the message world.ControllerRef.
|
|
23
|
+
* Use `create(ControllerRefSchema)` to create a new message.
|
|
24
|
+
*/
|
|
25
|
+
export const ControllerRefSchema = /*@__PURE__*/
|
|
26
|
+
messageDesc(file_world, 1);
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Describes the message world.Lifetime.
|
|
30
|
+
* Use `create(LifetimeSchema)` to create a new message.
|
|
31
|
+
*/
|
|
32
|
+
export const LifetimeSchema = /*@__PURE__*/
|
|
33
|
+
messageDesc(file_world, 2);
|
|
34
|
+
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message world.GeoSpatialComponent.
|
|
37
|
+
* Use `create(GeoSpatialComponentSchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
export const GeoSpatialComponentSchema = /*@__PURE__*/
|
|
40
|
+
messageDesc(file_world, 3);
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Describes the message world.SymbolComponent.
|
|
44
|
+
* Use `create(SymbolComponentSchema)` to create a new message.
|
|
45
|
+
*/
|
|
46
|
+
export const SymbolComponentSchema = /*@__PURE__*/
|
|
47
|
+
messageDesc(file_world, 4);
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Describes the message world.Camera.
|
|
51
|
+
* Use `create(CameraSchema)` to create a new message.
|
|
52
|
+
*/
|
|
53
|
+
export const CameraSchema = /*@__PURE__*/
|
|
54
|
+
messageDesc(file_world, 5);
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Describes the message world.CameraComponent.
|
|
58
|
+
* Use `create(CameraComponentSchema)` to create a new message.
|
|
59
|
+
*/
|
|
60
|
+
export const CameraComponentSchema = /*@__PURE__*/
|
|
61
|
+
messageDesc(file_world, 6);
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Describes the message world.DetectionComponent.
|
|
65
|
+
* Use `create(DetectionComponentSchema)` to create a new message.
|
|
66
|
+
*/
|
|
67
|
+
export const DetectionComponentSchema = /*@__PURE__*/
|
|
68
|
+
messageDesc(file_world, 7);
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* Describes the message world.BearingComponent.
|
|
72
|
+
* Use `create(BearingComponentSchema)` to create a new message.
|
|
73
|
+
*/
|
|
74
|
+
export const BearingComponentSchema = /*@__PURE__*/
|
|
75
|
+
messageDesc(file_world, 8);
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Describes the message world.CovarianceMatrix.
|
|
79
|
+
* Use `create(CovarianceMatrixSchema)` to create a new message.
|
|
80
|
+
*/
|
|
81
|
+
export const CovarianceMatrixSchema = /*@__PURE__*/
|
|
82
|
+
messageDesc(file_world, 9);
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Describes the message world.LocationUncertaintyComponent.
|
|
86
|
+
* Use `create(LocationUncertaintyComponentSchema)` to create a new message.
|
|
87
|
+
*/
|
|
88
|
+
export const LocationUncertaintyComponentSchema = /*@__PURE__*/
|
|
89
|
+
messageDesc(file_world, 10);
|
|
90
|
+
|
|
91
|
+
/**
|
|
92
|
+
* Describes the message world.TrackComponent.
|
|
93
|
+
* Use `create(TrackComponentSchema)` to create a new message.
|
|
94
|
+
*/
|
|
95
|
+
export const TrackComponentSchema = /*@__PURE__*/
|
|
96
|
+
messageDesc(file_world, 11);
|
|
97
|
+
|
|
98
|
+
/**
|
|
99
|
+
* Describes the message world.LocatorComponent.
|
|
100
|
+
* Use `create(LocatorComponentSchema)` to create a new message.
|
|
101
|
+
*/
|
|
102
|
+
export const LocatorComponentSchema = /*@__PURE__*/
|
|
103
|
+
messageDesc(file_world, 12);
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Describes the message world.TaskableContext.
|
|
107
|
+
* Use `create(TaskableContextSchema)` to create a new message.
|
|
108
|
+
*/
|
|
109
|
+
export const TaskableContextSchema = /*@__PURE__*/
|
|
110
|
+
messageDesc(file_world, 13);
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* Describes the message world.TaskableAssignee.
|
|
114
|
+
* Use `create(TaskableAssigneeSchema)` to create a new message.
|
|
115
|
+
*/
|
|
116
|
+
export const TaskableAssigneeSchema = /*@__PURE__*/
|
|
117
|
+
messageDesc(file_world, 14);
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Describes the message world.TaskableComponent.
|
|
121
|
+
* Use `create(TaskableComponentSchema)` to create a new message.
|
|
122
|
+
*/
|
|
123
|
+
export const TaskableComponentSchema = /*@__PURE__*/
|
|
124
|
+
messageDesc(file_world, 15);
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Describes the message world.Geometry.
|
|
128
|
+
* Use `create(GeometrySchema)` to create a new message.
|
|
129
|
+
*/
|
|
130
|
+
export const GeometrySchema = /*@__PURE__*/
|
|
131
|
+
messageDesc(file_world, 16);
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* Describes the message world.ListEntitiesRequest.
|
|
135
|
+
* Use `create(ListEntitiesRequestSchema)` to create a new message.
|
|
136
|
+
*/
|
|
137
|
+
export const ListEntitiesRequestSchema = /*@__PURE__*/
|
|
138
|
+
messageDesc(file_world, 17);
|
|
139
|
+
|
|
140
|
+
/**
|
|
141
|
+
* Describes the message world.ListEntitiesResponse.
|
|
142
|
+
* Use `create(ListEntitiesResponseSchema)` to create a new message.
|
|
143
|
+
*/
|
|
144
|
+
export const ListEntitiesResponseSchema = /*@__PURE__*/
|
|
145
|
+
messageDesc(file_world, 18);
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
* Describes the message world.EntityChangeRequest.
|
|
149
|
+
* Use `create(EntityChangeRequestSchema)` to create a new message.
|
|
150
|
+
*/
|
|
151
|
+
export const EntityChangeRequestSchema = /*@__PURE__*/
|
|
152
|
+
messageDesc(file_world, 19);
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* Describes the message world.EntityChangeResponse.
|
|
156
|
+
* Use `create(EntityChangeResponseSchema)` to create a new message.
|
|
157
|
+
*/
|
|
158
|
+
export const EntityChangeResponseSchema = /*@__PURE__*/
|
|
159
|
+
messageDesc(file_world, 20);
|
|
160
|
+
|
|
161
|
+
/**
|
|
162
|
+
* Describes the message world.EntityChangeEvent.
|
|
163
|
+
* Use `create(EntityChangeEventSchema)` to create a new message.
|
|
164
|
+
*/
|
|
165
|
+
export const EntityChangeEventSchema = /*@__PURE__*/
|
|
166
|
+
messageDesc(file_world, 21);
|
|
167
|
+
|
|
168
|
+
/**
|
|
169
|
+
* Describes the message world.GetEntityRequest.
|
|
170
|
+
* Use `create(GetEntityRequestSchema)` to create a new message.
|
|
171
|
+
*/
|
|
172
|
+
export const GetEntityRequestSchema = /*@__PURE__*/
|
|
173
|
+
messageDesc(file_world, 22);
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* Describes the message world.GetEntityResponse.
|
|
177
|
+
* Use `create(GetEntityResponseSchema)` to create a new message.
|
|
178
|
+
*/
|
|
179
|
+
export const GetEntityResponseSchema = /*@__PURE__*/
|
|
180
|
+
messageDesc(file_world, 23);
|
|
181
|
+
|
|
182
|
+
/**
|
|
183
|
+
* Describes the message world.ObserverRequest.
|
|
184
|
+
* Use `create(ObserverRequestSchema)` to create a new message.
|
|
185
|
+
*/
|
|
186
|
+
export const ObserverRequestSchema = /*@__PURE__*/
|
|
187
|
+
messageDesc(file_world, 24);
|
|
188
|
+
|
|
189
|
+
/**
|
|
190
|
+
* Describes the message world.ObserverState.
|
|
191
|
+
* Use `create(ObserverStateSchema)` to create a new message.
|
|
192
|
+
*/
|
|
193
|
+
export const ObserverStateSchema = /*@__PURE__*/
|
|
194
|
+
messageDesc(file_world, 25);
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* Describes the message world.RunTaskRequest.
|
|
198
|
+
* Use `create(RunTaskRequestSchema)` to create a new message.
|
|
199
|
+
*/
|
|
200
|
+
export const RunTaskRequestSchema = /*@__PURE__*/
|
|
201
|
+
messageDesc(file_world, 26);
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Describes the message world.RunTaskResponse.
|
|
205
|
+
* Use `create(RunTaskResponseSchema)` to create a new message.
|
|
206
|
+
*/
|
|
207
|
+
export const RunTaskResponseSchema = /*@__PURE__*/
|
|
208
|
+
messageDesc(file_world, 27);
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Describes the enum world.Priority.
|
|
212
|
+
*/
|
|
213
|
+
export const PrioritySchema = /*@__PURE__*/
|
|
214
|
+
enumDesc(file_world, 0);
|
|
215
|
+
|
|
216
|
+
/**
|
|
217
|
+
* @generated from enum world.Priority
|
|
218
|
+
*/
|
|
219
|
+
export const Priority = /*@__PURE__*/
|
|
220
|
+
tsEnum(PrioritySchema);
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* Describes the enum world.EntityChange.
|
|
224
|
+
*/
|
|
225
|
+
export const EntityChangeSchema = /*@__PURE__*/
|
|
226
|
+
enumDesc(file_world, 1);
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
* @generated from enum world.EntityChange
|
|
230
|
+
*/
|
|
231
|
+
export const EntityChange = /*@__PURE__*/
|
|
232
|
+
tsEnum(EntityChangeSchema);
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* Describes the enum world.TaskStatus.
|
|
236
|
+
*/
|
|
237
|
+
export const TaskStatusSchema = /*@__PURE__*/
|
|
238
|
+
enumDesc(file_world, 2);
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* @generated from enum world.TaskStatus
|
|
242
|
+
*/
|
|
243
|
+
export const TaskStatus = /*@__PURE__*/
|
|
244
|
+
tsEnum(TaskStatusSchema);
|
|
245
|
+
|
|
246
|
+
/**
|
|
247
|
+
* interact with the world model
|
|
248
|
+
*
|
|
249
|
+
* @generated from service world.WorldService
|
|
250
|
+
*/
|
|
251
|
+
export const WorldService = /*@__PURE__*/
|
|
252
|
+
serviceDesc(file_world, 0);
|
|
253
|
+
|
package/package.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@projectqai/proto",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"author": "projectq-release-bot",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
"./world": {
|
|
8
|
+
"types": "./dist/world_pb.d.ts",
|
|
9
|
+
"import": "./dist/world_pb.js",
|
|
10
|
+
"default": "./dist/world_pb.js"
|
|
11
|
+
},
|
|
12
|
+
"./timeline": {
|
|
13
|
+
"types": "./dist/timeline_pb.d.ts",
|
|
14
|
+
"import": "./dist/timeline_pb.js",
|
|
15
|
+
"default": "./dist/timeline_pb.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"license": "Apache-2.0",
|
|
22
|
+
"peerDependencies": {
|
|
23
|
+
"@bufbuild/protobuf": "^2.10.1"
|
|
24
|
+
},
|
|
25
|
+
"devDependencies": {
|
|
26
|
+
"@bufbuild/protoc-gen-es": "^2.10.1"
|
|
27
|
+
},
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "buf generate",
|
|
30
|
+
"prepublishOnly": "bun run build",
|
|
31
|
+
"release": "bun run build && npm version patch && npm publish --access public"
|
|
32
|
+
}
|
|
33
|
+
}
|