@projectqai/proto 0.0.32 → 0.0.34
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/geometry_pb.d.ts +80 -1
- package/dist/geometry_pb.js +34 -8
- package/package.json +1 -1
package/dist/geometry_pb.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// @generated from file geometry.proto (package world, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv2";
|
|
6
6
|
import type { Message } from "@bufbuild/protobuf";
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -113,6 +113,22 @@ export declare type PlanarCircle = Message<"world.PlanarCircle"> & {
|
|
|
113
113
|
*/
|
|
114
114
|
export declare const PlanarCircleSchema: GenMessage<PlanarCircle>;
|
|
115
115
|
|
|
116
|
+
/**
|
|
117
|
+
* @generated from message world.PlanarGeometryCollection
|
|
118
|
+
*/
|
|
119
|
+
export declare type PlanarGeometryCollection = Message<"world.PlanarGeometryCollection"> & {
|
|
120
|
+
/**
|
|
121
|
+
* @generated from field: repeated world.PlanarGeometry geometries = 1;
|
|
122
|
+
*/
|
|
123
|
+
geometries: PlanarGeometry[];
|
|
124
|
+
};
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Describes the message world.PlanarGeometryCollection.
|
|
128
|
+
* Use `create(PlanarGeometryCollectionSchema)` to create a new message.
|
|
129
|
+
*/
|
|
130
|
+
export declare const PlanarGeometryCollectionSchema: GenMessage<PlanarGeometryCollection>;
|
|
131
|
+
|
|
116
132
|
/**
|
|
117
133
|
* @generated from message world.PlanarGeometry
|
|
118
134
|
*/
|
|
@@ -144,7 +160,18 @@ export declare type PlanarGeometry = Message<"world.PlanarGeometry"> & {
|
|
|
144
160
|
*/
|
|
145
161
|
value: PlanarCircle;
|
|
146
162
|
case: "circle";
|
|
163
|
+
} | {
|
|
164
|
+
/**
|
|
165
|
+
* @generated from field: world.PlanarGeometryCollection collection = 5;
|
|
166
|
+
*/
|
|
167
|
+
value: PlanarGeometryCollection;
|
|
168
|
+
case: "collection";
|
|
147
169
|
} | { case: undefined; value?: undefined };
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* @generated from field: optional world.LineStyle line_style = 10;
|
|
173
|
+
*/
|
|
174
|
+
lineStyle?: LineStyle;
|
|
148
175
|
};
|
|
149
176
|
|
|
150
177
|
/**
|
|
@@ -242,6 +269,22 @@ export declare type LocalCircle = Message<"world.LocalCircle"> & {
|
|
|
242
269
|
*/
|
|
243
270
|
export declare const LocalCircleSchema: GenMessage<LocalCircle>;
|
|
244
271
|
|
|
272
|
+
/**
|
|
273
|
+
* @generated from message world.LocalGeometryCollection
|
|
274
|
+
*/
|
|
275
|
+
export declare type LocalGeometryCollection = Message<"world.LocalGeometryCollection"> & {
|
|
276
|
+
/**
|
|
277
|
+
* @generated from field: repeated world.LocalGeometry geometries = 1;
|
|
278
|
+
*/
|
|
279
|
+
geometries: LocalGeometry[];
|
|
280
|
+
};
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* Describes the message world.LocalGeometryCollection.
|
|
284
|
+
* Use `create(LocalGeometryCollectionSchema)` to create a new message.
|
|
285
|
+
*/
|
|
286
|
+
export declare const LocalGeometryCollectionSchema: GenMessage<LocalGeometryCollection>;
|
|
287
|
+
|
|
245
288
|
/**
|
|
246
289
|
* @generated from message world.LocalGeometry
|
|
247
290
|
*/
|
|
@@ -273,7 +316,18 @@ export declare type LocalGeometry = Message<"world.LocalGeometry"> & {
|
|
|
273
316
|
*/
|
|
274
317
|
value: LocalCircle;
|
|
275
318
|
case: "circle";
|
|
319
|
+
} | {
|
|
320
|
+
/**
|
|
321
|
+
* @generated from field: world.LocalGeometryCollection collection = 5;
|
|
322
|
+
*/
|
|
323
|
+
value: LocalGeometryCollection;
|
|
324
|
+
case: "collection";
|
|
276
325
|
} | { case: undefined; value?: undefined };
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* @generated from field: optional world.LineStyle line_style = 10;
|
|
329
|
+
*/
|
|
330
|
+
lineStyle?: LineStyle;
|
|
277
331
|
};
|
|
278
332
|
|
|
279
333
|
/**
|
|
@@ -282,3 +336,28 @@ export declare type LocalGeometry = Message<"world.LocalGeometry"> & {
|
|
|
282
336
|
*/
|
|
283
337
|
export declare const LocalGeometrySchema: GenMessage<LocalGeometry>;
|
|
284
338
|
|
|
339
|
+
/**
|
|
340
|
+
* @generated from enum world.LineStyle
|
|
341
|
+
*/
|
|
342
|
+
export enum LineStyle {
|
|
343
|
+
/**
|
|
344
|
+
* @generated from enum value: LineStyleSolid = 0;
|
|
345
|
+
*/
|
|
346
|
+
LineStyleSolid = 0,
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* @generated from enum value: LineStyleDashed = 1;
|
|
350
|
+
*/
|
|
351
|
+
LineStyleDashed = 1,
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* @generated from enum value: LineStyleDotted = 2;
|
|
355
|
+
*/
|
|
356
|
+
LineStyleDotted = 2,
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
/**
|
|
360
|
+
* Describes the enum world.LineStyle.
|
|
361
|
+
*/
|
|
362
|
+
export declare const LineStyleSchema: GenEnum<LineStyle>;
|
|
363
|
+
|
package/dist/geometry_pb.js
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
// @generated from file geometry.proto (package world, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { enumDesc, fileDesc, messageDesc, tsEnum } from "@bufbuild/protobuf/codegenv2";
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Describes the file geometry.proto.
|
|
9
9
|
*/
|
|
10
10
|
export const file_geometry = /*@__PURE__*/
|
|
11
|
-
fileDesc("
|
|
11
|
+
fileDesc("Cg5nZW9tZXRyeS5wcm90bxIFd29ybGQiVgoLUGxhbmFyUG9pbnQSEQoJbG9uZ2l0dWRlGAEgASgBEhAKCGxhdGl0dWRlGAIgASgBEhUKCGFsdGl0dWRlGAMgASgBSACIAQFCCwoJX2FsdGl0dWRlIjAKClBsYW5hclJpbmcSIgoGcG9pbnRzGAEgAygLMhIud29ybGQuUGxhbmFyUG9pbnQiUwoNUGxhbmFyUG9seWdvbhIgCgVvdXRlchgBIAEoCzIRLndvcmxkLlBsYW5hclJpbmcSIAoFaG9sZXMYAiADKAsyES53b3JsZC5QbGFuYXJSaW5nInQKDFBsYW5hckNpcmNsZRIiCgZjZW50ZXIYASABKAsyEi53b3JsZC5QbGFuYXJQb2ludBIQCghyYWRpdXNfbRgCIAEoARIbCg5pbm5lcl9yYWRpdXNfbRgDIAEoAUgAiAEBQhEKD19pbm5lcl9yYWRpdXNfbSJFChhQbGFuYXJHZW9tZXRyeUNvbGxlY3Rpb24SKQoKZ2VvbWV0cmllcxgBIAMoCzIVLndvcmxkLlBsYW5hckdlb21ldHJ5IqICCg5QbGFuYXJHZW9tZXRyeRIjCgVwb2ludBgBIAEoCzISLndvcmxkLlBsYW5hclBvaW50SAASIQoEbGluZRgCIAEoCzIRLndvcmxkLlBsYW5hclJpbmdIABInCgdwb2x5Z29uGAMgASgLMhQud29ybGQuUGxhbmFyUG9seWdvbkgAEiUKBmNpcmNsZRgEIAEoCzITLndvcmxkLlBsYW5hckNpcmNsZUgAEjUKCmNvbGxlY3Rpb24YBSABKAsyHy53b3JsZC5QbGFuYXJHZW9tZXRyeUNvbGxlY3Rpb25IABIpCgpsaW5lX3N0eWxlGAogASgOMhAud29ybGQuTGluZVN0eWxlSAGIAQFCBwoFcGxhbmVCDQoLX2xpbmVfc3R5bGUiSQoKTG9jYWxQb2ludBIOCgZlYXN0X20YASABKAESDwoHbm9ydGhfbRgCIAEoARIRCgR1cF9tGAMgASgBSACIAQFCBwoFX3VwX20iLgoJTG9jYWxSaW5nEiEKBnBvaW50cxgBIAMoCzIRLndvcmxkLkxvY2FsUG9pbnQiUAoMTG9jYWxQb2x5Z29uEh8KBW91dGVyGAEgASgLMhAud29ybGQuTG9jYWxSaW5nEh8KBWhvbGVzGAIgAygLMhAud29ybGQuTG9jYWxSaW5nInIKC0xvY2FsQ2lyY2xlEiEKBmNlbnRlchgBIAEoCzIRLndvcmxkLkxvY2FsUG9pbnQSEAoIcmFkaXVzX20YAiABKAESGwoOaW5uZXJfcmFkaXVzX20YAyABKAFIAIgBAUIRCg9faW5uZXJfcmFkaXVzX20iQwoXTG9jYWxHZW9tZXRyeUNvbGxlY3Rpb24SKAoKZ2VvbWV0cmllcxgBIAMoCzIULndvcmxkLkxvY2FsR2VvbWV0cnkinAIKDUxvY2FsR2VvbWV0cnkSIgoFcG9pbnQYASABKAsyES53b3JsZC5Mb2NhbFBvaW50SAASIAoEbGluZRgCIAEoCzIQLndvcmxkLkxvY2FsUmluZ0gAEiYKB3BvbHlnb24YAyABKAsyEy53b3JsZC5Mb2NhbFBvbHlnb25IABIkCgZjaXJjbGUYBCABKAsyEi53b3JsZC5Mb2NhbENpcmNsZUgAEjQKCmNvbGxlY3Rpb24YBSABKAsyHi53b3JsZC5Mb2NhbEdlb21ldHJ5Q29sbGVjdGlvbkgAEikKCmxpbmVfc3R5bGUYCiABKA4yEC53b3JsZC5MaW5lU3R5bGVIAYgBAUIHCgVzaGFwZUINCgtfbGluZV9zdHlsZSpJCglMaW5lU3R5bGUSEgoOTGluZVN0eWxlU29saWQQABITCg9MaW5lU3R5bGVEYXNoZWQQARITCg9MaW5lU3R5bGVEb3R0ZWQQAkIgWh5naXRodWIuY29tL3Byb2plY3RxYWkvcHJvdG8vZ29iBnByb3RvMw");
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Describes the message world.PlanarPoint.
|
|
@@ -38,45 +38,71 @@ export const PlanarPolygonSchema = /*@__PURE__*/
|
|
|
38
38
|
export const PlanarCircleSchema = /*@__PURE__*/
|
|
39
39
|
messageDesc(file_geometry, 3);
|
|
40
40
|
|
|
41
|
+
/**
|
|
42
|
+
* Describes the message world.PlanarGeometryCollection.
|
|
43
|
+
* Use `create(PlanarGeometryCollectionSchema)` to create a new message.
|
|
44
|
+
*/
|
|
45
|
+
export const PlanarGeometryCollectionSchema = /*@__PURE__*/
|
|
46
|
+
messageDesc(file_geometry, 4);
|
|
47
|
+
|
|
41
48
|
/**
|
|
42
49
|
* Describes the message world.PlanarGeometry.
|
|
43
50
|
* Use `create(PlanarGeometrySchema)` to create a new message.
|
|
44
51
|
*/
|
|
45
52
|
export const PlanarGeometrySchema = /*@__PURE__*/
|
|
46
|
-
messageDesc(file_geometry,
|
|
53
|
+
messageDesc(file_geometry, 5);
|
|
47
54
|
|
|
48
55
|
/**
|
|
49
56
|
* Describes the message world.LocalPoint.
|
|
50
57
|
* Use `create(LocalPointSchema)` to create a new message.
|
|
51
58
|
*/
|
|
52
59
|
export const LocalPointSchema = /*@__PURE__*/
|
|
53
|
-
messageDesc(file_geometry,
|
|
60
|
+
messageDesc(file_geometry, 6);
|
|
54
61
|
|
|
55
62
|
/**
|
|
56
63
|
* Describes the message world.LocalRing.
|
|
57
64
|
* Use `create(LocalRingSchema)` to create a new message.
|
|
58
65
|
*/
|
|
59
66
|
export const LocalRingSchema = /*@__PURE__*/
|
|
60
|
-
messageDesc(file_geometry,
|
|
67
|
+
messageDesc(file_geometry, 7);
|
|
61
68
|
|
|
62
69
|
/**
|
|
63
70
|
* Describes the message world.LocalPolygon.
|
|
64
71
|
* Use `create(LocalPolygonSchema)` to create a new message.
|
|
65
72
|
*/
|
|
66
73
|
export const LocalPolygonSchema = /*@__PURE__*/
|
|
67
|
-
messageDesc(file_geometry,
|
|
74
|
+
messageDesc(file_geometry, 8);
|
|
68
75
|
|
|
69
76
|
/**
|
|
70
77
|
* Describes the message world.LocalCircle.
|
|
71
78
|
* Use `create(LocalCircleSchema)` to create a new message.
|
|
72
79
|
*/
|
|
73
80
|
export const LocalCircleSchema = /*@__PURE__*/
|
|
74
|
-
messageDesc(file_geometry,
|
|
81
|
+
messageDesc(file_geometry, 9);
|
|
82
|
+
|
|
83
|
+
/**
|
|
84
|
+
* Describes the message world.LocalGeometryCollection.
|
|
85
|
+
* Use `create(LocalGeometryCollectionSchema)` to create a new message.
|
|
86
|
+
*/
|
|
87
|
+
export const LocalGeometryCollectionSchema = /*@__PURE__*/
|
|
88
|
+
messageDesc(file_geometry, 10);
|
|
75
89
|
|
|
76
90
|
/**
|
|
77
91
|
* Describes the message world.LocalGeometry.
|
|
78
92
|
* Use `create(LocalGeometrySchema)` to create a new message.
|
|
79
93
|
*/
|
|
80
94
|
export const LocalGeometrySchema = /*@__PURE__*/
|
|
81
|
-
messageDesc(file_geometry,
|
|
95
|
+
messageDesc(file_geometry, 11);
|
|
96
|
+
|
|
97
|
+
/**
|
|
98
|
+
* Describes the enum world.LineStyle.
|
|
99
|
+
*/
|
|
100
|
+
export const LineStyleSchema = /*@__PURE__*/
|
|
101
|
+
enumDesc(file_geometry, 0);
|
|
102
|
+
|
|
103
|
+
/**
|
|
104
|
+
* @generated from enum world.LineStyle
|
|
105
|
+
*/
|
|
106
|
+
export const LineStyle = /*@__PURE__*/
|
|
107
|
+
tsEnum(LineStyleSchema);
|
|
82
108
|
|