@anduril-industries/lattice-sdk 1.3.1 → 1.5.0
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/package.json +1 -1
- package/src/anduril/entitymanager/v1/group.pub_pb.d.ts +124 -1
- package/src/anduril/entitymanager/v1/group.pub_pb.js +23 -2
- package/src/anduril/entitymanager/v1/relationship.pub_pb.d.ts +21 -0
- package/src/anduril/entitymanager/v1/relationship.pub_pb.js +8 -1
- package/src/anduril/taskmanager/v1/task.pub_pb.d.ts +3 -2
- package/src/anduril/taskmanager/v1/task.pub_pb.js +1 -1
- package/src/anduril/tasks/ads/thirdparty/v1/formation.pub_pb.d.ts +47 -0
- package/src/anduril/tasks/ads/thirdparty/v1/formation.pub_pb.js +21 -0
- package/src/anduril/tasks/ads/thirdparty/v1/marshal.pub_pb.d.ts +41 -0
- package/src/anduril/tasks/ads/thirdparty/v1/marshal.pub_pb.js +21 -0
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// @generated from file anduril/entitymanager/v1/group.pub.proto (package anduril.entitymanager.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
6
6
|
import type { Message } from "@bufbuild/protobuf";
|
|
7
7
|
|
|
8
8
|
/**
|
|
@@ -16,6 +16,16 @@ export declare const file_anduril_entitymanager_v1_group_pub: GenFile;
|
|
|
16
16
|
* @generated from message anduril.entitymanager.v1.GroupDetails
|
|
17
17
|
*/
|
|
18
18
|
export declare type GroupDetails = Message<"anduril.entitymanager.v1.GroupDetails"> & {
|
|
19
|
+
/**
|
|
20
|
+
* @generated from oneof anduril.entitymanager.v1.GroupDetails.group_type
|
|
21
|
+
*/
|
|
22
|
+
groupType: {
|
|
23
|
+
/**
|
|
24
|
+
* @generated from field: anduril.entitymanager.v1.Echelon echelon = 3;
|
|
25
|
+
*/
|
|
26
|
+
value: Echelon;
|
|
27
|
+
case: "echelon";
|
|
28
|
+
} | { case: undefined; value?: undefined };
|
|
19
29
|
};
|
|
20
30
|
|
|
21
31
|
/**
|
|
@@ -24,3 +34,116 @@ export declare type GroupDetails = Message<"anduril.entitymanager.v1.GroupDetail
|
|
|
24
34
|
*/
|
|
25
35
|
export declare const GroupDetailsSchema: GenMessage<GroupDetails>;
|
|
26
36
|
|
|
37
|
+
/**
|
|
38
|
+
* Describes a Echelon group type. Comprised of entities which are members of the
|
|
39
|
+
* same unit or echelon. Ex: A group of tanks within a armored company or that same company
|
|
40
|
+
* as a member of a battalion.
|
|
41
|
+
*
|
|
42
|
+
* @generated from message anduril.entitymanager.v1.Echelon
|
|
43
|
+
*/
|
|
44
|
+
export declare type Echelon = Message<"anduril.entitymanager.v1.Echelon"> & {
|
|
45
|
+
/**
|
|
46
|
+
* @generated from oneof anduril.entitymanager.v1.Echelon.echelon_type
|
|
47
|
+
*/
|
|
48
|
+
echelonType: {
|
|
49
|
+
/**
|
|
50
|
+
* @generated from field: anduril.entitymanager.v1.ArmyEchelon army_echelon = 1;
|
|
51
|
+
*/
|
|
52
|
+
value: ArmyEchelon;
|
|
53
|
+
case: "armyEchelon";
|
|
54
|
+
} | { case: undefined; value?: undefined };
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
/**
|
|
58
|
+
* Describes the message anduril.entitymanager.v1.Echelon.
|
|
59
|
+
* Use `create(EchelonSchema)` to create a new message.
|
|
60
|
+
*/
|
|
61
|
+
export declare const EchelonSchema: GenMessage<Echelon>;
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Military units defined by the Army.
|
|
65
|
+
*
|
|
66
|
+
* @generated from enum anduril.entitymanager.v1.ArmyEchelon
|
|
67
|
+
*/
|
|
68
|
+
export enum ArmyEchelon {
|
|
69
|
+
/**
|
|
70
|
+
* @generated from enum value: ARMY_ECHELON_INVALID = 0;
|
|
71
|
+
*/
|
|
72
|
+
INVALID = 0,
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Smallest unit group, e.g., a few soldiers
|
|
76
|
+
*
|
|
77
|
+
* @generated from enum value: ARMY_ECHELON_FIRE_TEAM = 1;
|
|
78
|
+
*/
|
|
79
|
+
FIRE_TEAM = 1,
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* E.g., a group of fire teams
|
|
83
|
+
*
|
|
84
|
+
* @generated from enum value: ARMY_ECHELON_SQUAD = 2;
|
|
85
|
+
*/
|
|
86
|
+
SQUAD = 2,
|
|
87
|
+
|
|
88
|
+
/**
|
|
89
|
+
* E.g., several squads
|
|
90
|
+
*
|
|
91
|
+
* @generated from enum value: ARMY_ECHELON_PLATOON = 3;
|
|
92
|
+
*/
|
|
93
|
+
PLATOON = 3,
|
|
94
|
+
|
|
95
|
+
/**
|
|
96
|
+
* E.g., several platoons
|
|
97
|
+
*
|
|
98
|
+
* @generated from enum value: ARMY_ECHELON_COMPANY = 4;
|
|
99
|
+
*/
|
|
100
|
+
COMPANY = 4,
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* E.g., several companies
|
|
104
|
+
*
|
|
105
|
+
* @generated from enum value: ARMY_ECHELON_BATTALION = 5;
|
|
106
|
+
*/
|
|
107
|
+
BATTALION = 5,
|
|
108
|
+
|
|
109
|
+
/**
|
|
110
|
+
* E.g., several battalions
|
|
111
|
+
*
|
|
112
|
+
* @generated from enum value: ARMY_ECHELON_REGIMENT = 6;
|
|
113
|
+
*/
|
|
114
|
+
REGIMENT = 6,
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* E.g., several regiments or battalions
|
|
118
|
+
*
|
|
119
|
+
* @generated from enum value: ARMY_ECHELON_BRIGADE = 7;
|
|
120
|
+
*/
|
|
121
|
+
BRIGADE = 7,
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* E.g., several brigades
|
|
125
|
+
*
|
|
126
|
+
* @generated from enum value: ARMY_ECHELON_DIVISION = 8;
|
|
127
|
+
*/
|
|
128
|
+
DIVISION = 8,
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* E.g., several divisions
|
|
132
|
+
*
|
|
133
|
+
* @generated from enum value: ARMY_ECHELON_CORPS = 9;
|
|
134
|
+
*/
|
|
135
|
+
CORPS = 9,
|
|
136
|
+
|
|
137
|
+
/**
|
|
138
|
+
* E.g., several corps
|
|
139
|
+
*
|
|
140
|
+
* @generated from enum value: ARMY_ECHELON_ARMY = 10;
|
|
141
|
+
*/
|
|
142
|
+
ARMY = 10,
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
/**
|
|
146
|
+
* Describes the enum anduril.entitymanager.v1.ArmyEchelon.
|
|
147
|
+
*/
|
|
148
|
+
export declare const ArmyEchelonSchema: GenEnum<ArmyEchelon>;
|
|
149
|
+
|
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
// @generated from file anduril/entitymanager/v1/group.pub.proto (package anduril.entitymanager.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
|
|
5
|
-
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
5
|
+
import { enumDesc, fileDesc, messageDesc, tsEnum } from "@bufbuild/protobuf/codegenv1";
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
8
|
* Describes the file anduril/entitymanager/v1/group.pub.proto.
|
|
9
9
|
*/
|
|
10
10
|
export const file_anduril_entitymanager_v1_group_pub = /*@__PURE__*/
|
|
11
|
-
fileDesc("
|
|
11
|
+
fileDesc("CihhbmR1cmlsL2VudGl0eW1hbmFnZXIvdjEvZ3JvdXAucHViLnByb3RvEhhhbmR1cmlsLmVudGl0eW1hbmFnZXIudjEiUgoMR3JvdXBEZXRhaWxzEjQKB2VjaGVsb24YAyABKAsyIS5hbmR1cmlsLmVudGl0eW1hbmFnZXIudjEuRWNoZWxvbkgAQgwKCmdyb3VwX3R5cGUiWAoHRWNoZWxvbhI9Cgxhcm15X2VjaGVsb24YASABKA4yJS5hbmR1cmlsLmVudGl0eW1hbmFnZXIudjEuQXJteUVjaGVsb25IAEIOCgxlY2hlbG9uX3R5cGUqqgIKC0FybXlFY2hlbG9uEhgKFEFSTVlfRUNIRUxPTl9JTlZBTElEEAASGgoWQVJNWV9FQ0hFTE9OX0ZJUkVfVEVBTRABEhYKEkFSTVlfRUNIRUxPTl9TUVVBRBACEhgKFEFSTVlfRUNIRUxPTl9QTEFUT09OEAMSGAoUQVJNWV9FQ0hFTE9OX0NPTVBBTlkQBBIaChZBUk1ZX0VDSEVMT05fQkFUVEFMSU9OEAUSGQoVQVJNWV9FQ0hFTE9OX1JFR0lNRU5UEAYSGAoUQVJNWV9FQ0hFTE9OX0JSSUdBREUQBxIZChVBUk1ZX0VDSEVMT05fRElWSVNJT04QCBIWChJBUk1ZX0VDSEVMT05fQ09SUFMQCRIVChFBUk1ZX0VDSEVMT05fQVJNWRAKQv4BChxjb20uYW5kdXJpbC5lbnRpdHltYW5hZ2VyLnYxQg1Hcm91cFB1YlByb3RvUAFaTWdoZS5hbmR1cmlsLmRldi9hbmR1cmlsL2FuZHVyaWxhcGlzLWdvL2FuZHVyaWwvZW50aXR5bWFuYWdlci92MTtlbnRpdHltYW5hZ2VyogIDQUVYqgIYQW5kdXJpbC5FbnRpdHltYW5hZ2VyLlYxygIYQW5kdXJpbFxFbnRpdHltYW5hZ2VyXFYx4gIkQW5kdXJpbFxFbnRpdHltYW5hZ2VyXFYxXEdQQk1ldGFkYXRh6gIaQW5kdXJpbDo6RW50aXR5bWFuYWdlcjo6VjFiBnByb3RvMw");
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* Describes the message anduril.entitymanager.v1.GroupDetails.
|
|
@@ -17,3 +17,24 @@ export const file_anduril_entitymanager_v1_group_pub = /*@__PURE__*/
|
|
|
17
17
|
export const GroupDetailsSchema = /*@__PURE__*/
|
|
18
18
|
messageDesc(file_anduril_entitymanager_v1_group_pub, 0);
|
|
19
19
|
|
|
20
|
+
/**
|
|
21
|
+
* Describes the message anduril.entitymanager.v1.Echelon.
|
|
22
|
+
* Use `create(EchelonSchema)` to create a new message.
|
|
23
|
+
*/
|
|
24
|
+
export const EchelonSchema = /*@__PURE__*/
|
|
25
|
+
messageDesc(file_anduril_entitymanager_v1_group_pub, 1);
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Describes the enum anduril.entitymanager.v1.ArmyEchelon.
|
|
29
|
+
*/
|
|
30
|
+
export const ArmyEchelonSchema = /*@__PURE__*/
|
|
31
|
+
enumDesc(file_anduril_entitymanager_v1_group_pub, 0);
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* Military units defined by the Army.
|
|
35
|
+
*
|
|
36
|
+
* @generated from enum anduril.entitymanager.v1.ArmyEchelon
|
|
37
|
+
*/
|
|
38
|
+
export const ArmyEchelon = /*@__PURE__*/
|
|
39
|
+
tsEnum(ArmyEchelonSchema);
|
|
40
|
+
|
|
@@ -97,6 +97,12 @@ export declare type RelationshipType = Message<"anduril.entitymanager.v1.Relatio
|
|
|
97
97
|
*/
|
|
98
98
|
value: MergedFrom;
|
|
99
99
|
case: "mergedFrom";
|
|
100
|
+
} | {
|
|
101
|
+
/**
|
|
102
|
+
* @generated from field: anduril.entitymanager.v1.ActiveTarget active_target = 7;
|
|
103
|
+
*/
|
|
104
|
+
value: ActiveTarget;
|
|
105
|
+
case: "activeTarget";
|
|
100
106
|
} | { case: undefined; value?: undefined };
|
|
101
107
|
};
|
|
102
108
|
|
|
@@ -182,3 +188,18 @@ export declare type MergedFrom = Message<"anduril.entitymanager.v1.MergedFrom">
|
|
|
182
188
|
*/
|
|
183
189
|
export declare const MergedFromSchema: GenMessage<MergedFrom>;
|
|
184
190
|
|
|
191
|
+
/**
|
|
192
|
+
* A target relationship is the inverse of TrackedBy; a one-way relation
|
|
193
|
+
* from sensor to target, indicating track(s) currently prioritized by a robot.
|
|
194
|
+
*
|
|
195
|
+
* @generated from message anduril.entitymanager.v1.ActiveTarget
|
|
196
|
+
*/
|
|
197
|
+
export declare type ActiveTarget = Message<"anduril.entitymanager.v1.ActiveTarget"> & {
|
|
198
|
+
};
|
|
199
|
+
|
|
200
|
+
/**
|
|
201
|
+
* Describes the message anduril.entitymanager.v1.ActiveTarget.
|
|
202
|
+
* Use `create(ActiveTargetSchema)` to create a new message.
|
|
203
|
+
*/
|
|
204
|
+
export declare const ActiveTargetSchema: GenMessage<ActiveTarget>;
|
|
205
|
+
|
|
@@ -10,7 +10,7 @@ import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt";
|
|
|
10
10
|
* Describes the file anduril/entitymanager/v1/relationship.pub.proto.
|
|
11
11
|
*/
|
|
12
12
|
export const file_anduril_entitymanager_v1_relationship_pub = /*@__PURE__*/
|
|
13
|
-
fileDesc("
|
|
13
|
+
fileDesc("Ci9hbmR1cmlsL2VudGl0eW1hbmFnZXIvdjEvcmVsYXRpb25zaGlwLnB1Yi5wcm90bxIYYW5kdXJpbC5lbnRpdHltYW5hZ2VyLnYxIk4KDVJlbGF0aW9uc2hpcHMSPQoNcmVsYXRpb25zaGlwcxgBIAMoCzImLmFuZHVyaWwuZW50aXR5bWFuYWdlci52MS5SZWxhdGlvbnNoaXAiiQEKDFJlbGF0aW9uc2hpcBIZChFyZWxhdGVkX2VudGl0eV9pZBgBIAEoCRIXCg9yZWxhdGlvbnNoaXBfaWQYAiABKAkSRQoRcmVsYXRpb25zaGlwX3R5cGUYAyABKAsyKi5hbmR1cmlsLmVudGl0eW1hbmFnZXIudjEuUmVsYXRpb25zaGlwVHlwZSLPAgoQUmVsYXRpb25zaGlwVHlwZRI5Cgp0cmFja2VkX2J5GAIgASgLMiMuYW5kdXJpbC5lbnRpdHltYW5hZ2VyLnYxLlRyYWNrZWRCeUgAEjsKC2dyb3VwX2NoaWxkGAQgASgLMiQuYW5kdXJpbC5lbnRpdHltYW5hZ2VyLnYxLkdyb3VwQ2hpbGRIABI9Cgxncm91cF9wYXJlbnQYBSABKAsyJS5hbmR1cmlsLmVudGl0eW1hbmFnZXIudjEuR3JvdXBQYXJlbnRIABI7CgttZXJnZWRfZnJvbRgGIAEoCzIkLmFuZHVyaWwuZW50aXR5bWFuYWdlci52MS5NZXJnZWRGcm9tSAASPwoNYWN0aXZlX3RhcmdldBgHIAEoCzImLmFuZHVyaWwuZW50aXR5bWFuYWdlci52MS5BY3RpdmVUYXJnZXRIAEIGCgR0eXBlIpEBCglUcmFja2VkQnkSRAoZYWN0aXZlbHlfdHJhY2tpbmdfc2Vuc29ycxgBIAEoCzIhLmFuZHVyaWwuZW50aXR5bWFuYWdlci52MS5TZW5zb3JzEj4KGmxhc3RfbWVhc3VyZW1lbnRfdGltZXN0YW1wGAIgASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcCIMCgpHcm91cENoaWxkIg0KC0dyb3VwUGFyZW50IgwKCk1lcmdlZEZyb20iDgoMQWN0aXZlVGFyZ2V0QoUCChxjb20uYW5kdXJpbC5lbnRpdHltYW5hZ2VyLnYxQhRSZWxhdGlvbnNoaXBQdWJQcm90b1ABWk1naGUuYW5kdXJpbC5kZXYvYW5kdXJpbC9hbmR1cmlsYXBpcy1nby9hbmR1cmlsL2VudGl0eW1hbmFnZXIvdjE7ZW50aXR5bWFuYWdlcqICA0FFWKoCGEFuZHVyaWwuRW50aXR5bWFuYWdlci5WMcoCGEFuZHVyaWxcRW50aXR5bWFuYWdlclxWMeICJEFuZHVyaWxcRW50aXR5bWFuYWdlclxWMVxHUEJNZXRhZGF0YeoCGkFuZHVyaWw6OkVudGl0eW1hbmFnZXI6OlYxYgZwcm90bzM", [file_anduril_entitymanager_v1_sensors_pub, file_google_protobuf_timestamp]);
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* Describes the message anduril.entitymanager.v1.Relationships.
|
|
@@ -61,3 +61,10 @@ export const GroupParentSchema = /*@__PURE__*/
|
|
|
61
61
|
export const MergedFromSchema = /*@__PURE__*/
|
|
62
62
|
messageDesc(file_anduril_entitymanager_v1_relationship_pub, 6);
|
|
63
63
|
|
|
64
|
+
/**
|
|
65
|
+
* Describes the message anduril.entitymanager.v1.ActiveTarget.
|
|
66
|
+
* Use `create(ActiveTargetSchema)` to create a new message.
|
|
67
|
+
*/
|
|
68
|
+
export const ActiveTargetSchema = /*@__PURE__*/
|
|
69
|
+
messageDesc(file_anduril_entitymanager_v1_relationship_pub, 7);
|
|
70
|
+
|
|
@@ -26,9 +26,10 @@ export declare type Task = Message<"anduril.taskmanager.v1.Task"> & {
|
|
|
26
26
|
version?: TaskVersion;
|
|
27
27
|
|
|
28
28
|
/**
|
|
29
|
-
* Human readable display name for this Task, should be short (<100 chars).
|
|
29
|
+
* DEPRECATED: Human readable display name for this Task, should be short (<100 chars).
|
|
30
30
|
*
|
|
31
|
-
* @generated from field: string display_name = 2;
|
|
31
|
+
* @generated from field: string display_name = 2 [deprecated = true];
|
|
32
|
+
* @deprecated
|
|
32
33
|
*/
|
|
33
34
|
displayName: string;
|
|
34
35
|
|
|
@@ -10,7 +10,7 @@ import { file_google_protobuf_any, file_google_protobuf_timestamp } from "@bufbu
|
|
|
10
10
|
* Describes the file anduril/taskmanager/v1/task.pub.proto.
|
|
11
11
|
*/
|
|
12
12
|
export const file_anduril_taskmanager_v1_task_pub = /*@__PURE__*/
|
|
13
|
-
fileDesc("
|
|
13
|
+
fileDesc("CiVhbmR1cmlsL3Rhc2ttYW5hZ2VyL3YxL3Rhc2sucHViLnByb3RvEhZhbmR1cmlsLnRhc2ttYW5hZ2VyLnYxItsFCgRUYXNrEjQKB3ZlcnNpb24YASABKAsyIy5hbmR1cmlsLnRhc2ttYW5hZ2VyLnYxLlRhc2tWZXJzaW9uEhgKDGRpc3BsYXlfbmFtZRgCIAEoCUICGAESKwoNc3BlY2lmaWNhdGlvbhgDIAEoCzIULmdvb2dsZS5wcm90b2J1Zi5BbnkSNQoKY3JlYXRlZF9ieRgQIAEoCzIhLmFuZHVyaWwudGFza21hbmFnZXIudjEuUHJpbmNpcGFsEjoKD2xhc3RfdXBkYXRlZF9ieRgEIAEoCzIhLmFuZHVyaWwudGFza21hbmFnZXIudjEuUHJpbmNpcGFsEjQKEGxhc3RfdXBkYXRlX3RpbWUYCSABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEjIKBnN0YXR1cxgFIAEoCzIiLmFuZHVyaWwudGFza21hbmFnZXIudjEuVGFza1N0YXR1cxIyCg5zY2hlZHVsZWRfdGltZRgGIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXASNAoJcmVsYXRpb25zGAggASgLMiEuYW5kdXJpbC50YXNrbWFuYWdlci52MS5SZWxhdGlvbnMSEwoLZGVzY3JpcHRpb24YCiABKAkSHQoVaXNfZXhlY3V0ZWRfZWxzZXdoZXJlGAsgASgIEi8KC2NyZWF0ZV90aW1lGA0gASgLMhouZ29vZ2xlLnByb3RvYnVmLlRpbWVzdGFtcBI4CgtyZXBsaWNhdGlvbhgOIAEoCzIjLmFuZHVyaWwudGFza21hbmFnZXIudjEuUmVwbGljYXRpb24SPAoQaW5pdGlhbF9lbnRpdGllcxgPIAMoCzIiLmFuZHVyaWwudGFza21hbmFnZXIudjEuVGFza0VudGl0eRIsCgVvd25lchgMIAEoCzIdLmFuZHVyaWwudGFza21hbmFnZXIudjEuT3duZXJKBAgHEAgi0QIKClRhc2tTdGF0dXMSLgoGc3RhdHVzGAEgASgOMh4uYW5kdXJpbC50YXNrbWFuYWdlci52MS5TdGF0dXMSNQoKdGFza19lcnJvchgCIAEoCzIhLmFuZHVyaWwudGFza21hbmFnZXIudjEuVGFza0Vycm9yEiYKCHByb2dyZXNzGAQgASgLMhQuZ29vZ2xlLnByb3RvYnVmLkFueRIkCgZyZXN1bHQYBSABKAsyFC5nb29nbGUucHJvdG9idWYuQW55Ei4KCnN0YXJ0X3RpbWUYBiABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wEiYKCGVzdGltYXRlGAcgASgLMhQuZ29vZ2xlLnByb3RvYnVmLkFueRI2CgphbGxvY2F0aW9uGAggASgLMiIuYW5kdXJpbC50YXNrbWFuYWdlci52MS5BbGxvY2F0aW9uInoKCVRhc2tFcnJvchIvCgRjb2RlGAEgASgOMiEuYW5kdXJpbC50YXNrbWFuYWdlci52MS5FcnJvckNvZGUSDwoHbWVzc2FnZRgCIAEoCRIrCg1lcnJvcl9kZXRhaWxzGAMgASgLMhQuZ29vZ2xlLnByb3RvYnVmLkFueSLbAQoJUHJpbmNpcGFsEjAKBnN5c3RlbRgBIAEoCzIeLmFuZHVyaWwudGFza21hbmFnZXIudjEuU3lzdGVtSAASLAoEdXNlchgCIAEoCzIcLmFuZHVyaWwudGFza21hbmFnZXIudjEuVXNlckgAEiwKBHRlYW0YBCABKAsyHC5hbmR1cmlsLnRhc2ttYW5hZ2VyLnYxLlRlYW1IABI3Cgxvbl9iZWhhbGZfb2YYAyABKAsyIS5hbmR1cmlsLnRhc2ttYW5hZ2VyLnYxLlByaW5jaXBhbEIHCgVhZ2VudCJXCgZTeXN0ZW0SFAoMc2VydmljZV9uYW1lGAEgASgJEhEKCWVudGl0eV9pZBgCIAEoCRIeChZtYW5hZ2VzX293bl9zY2hlZHVsaW5nGAQgASgISgQIAxAEIhcKBFVzZXISDwoHdXNlcl9pZBgBIAEoCSJYCglSZWxhdGlvbnMSMwoIYXNzaWduZWUYASABKAsyIS5hbmR1cmlsLnRhc2ttYW5hZ2VyLnYxLlByaW5jaXBhbBIWCg5wYXJlbnRfdGFza19pZBgCIAEoCSLNAQoJVGFza0V2ZW50EjUKCmV2ZW50X3R5cGUYASABKA4yIS5hbmR1cmlsLnRhc2ttYW5hZ2VyLnYxLkV2ZW50VHlwZRIqCgR0YXNrGAIgASgLMhwuYW5kdXJpbC50YXNrbWFuYWdlci52MS5UYXNrEjMKCXRhc2tfdmlldxgDIAEoDjIgLmFuZHVyaWwudGFza21hbmFnZXIudjEuVGFza1ZpZXcSKAoEdGltZRgEIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiUgoLVGFza1ZlcnNpb24SDwoHdGFza19pZBgBIAEoCRIaChJkZWZpbml0aW9uX3ZlcnNpb24YAiABKA0SFgoOc3RhdHVzX3ZlcnNpb24YAyABKA0i3wEKDFN0YXR1c1VwZGF0ZRI0Cgd2ZXJzaW9uGAEgASgLMiMuYW5kdXJpbC50YXNrbWFuYWdlci52MS5UYXNrVmVyc2lvbhIyCgZzdGF0dXMYAiABKAsyIi5hbmR1cmlsLnRhc2ttYW5hZ2VyLnYxLlRhc2tTdGF0dXMSMQoGYXV0aG9yGAMgASgLMiEuYW5kdXJpbC50YXNrbWFuYWdlci52MS5QcmluY2lwYWwSMgoOc2NoZWR1bGVkX3RpbWUYBCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIj4KEERlZmluaXRpb25VcGRhdGUSKgoEdGFzaxgBIAEoCzIcLmFuZHVyaWwudGFza21hbmFnZXIudjEuVGFzayIgCgVPd25lchIRCgllbnRpdHlfaWQYAiABKAlKBAgBEAIiPQoLUmVwbGljYXRpb24SLgoKc3RhbGVfdGltZRgBIAEoCzIaLmdvb2dsZS5wcm90b2J1Zi5UaW1lc3RhbXAiQgoKQWxsb2NhdGlvbhI0Cg1hY3RpdmVfYWdlbnRzGAEgAygLMh0uYW5kdXJpbC50YXNrbWFuYWdlci52MS5BZ2VudCJJCgRUZWFtEhEKCWVudGl0eV9pZBgBIAEoCRIuCgdtZW1iZXJzGAIgAygLMh0uYW5kdXJpbC50YXNrbWFuYWdlci52MS5BZ2VudCIgCgVBZ2VudBIRCgllbnRpdHlfaWQYAiABKAlKBAgBEAIiUAoKVGFza0VudGl0eRIwCgZlbnRpdHkYASABKAsyIC5hbmR1cmlsLmVudGl0eW1hbmFnZXIudjEuRW50aXR5EhAKCHNuYXBzaG90GAIgASgIKu8CCgZTdGF0dXMSEgoOU1RBVFVTX0lOVkFMSUQQABISCg5TVEFUVVNfQ1JFQVRFRBABEh8KG1NUQVRVU19TQ0hFRFVMRURfSU5fTUFOQUdFUhACEg8KC1NUQVRVU19TRU5UEAMSGgoWU1RBVFVTX01BQ0hJTkVfUkVDRUlQVBAEEg4KClNUQVRVU19BQ0sQBRIQCgxTVEFUVVNfV0lMQ08QBhIUChBTVEFUVVNfRVhFQ1VUSU5HEAcSHQoZU1RBVFVTX1dBSVRJTkdfRk9SX1VQREFURRAIEhIKDlNUQVRVU19ET05FX09LEAkSFgoSU1RBVFVTX0RPTkVfTk9UX09LEAoSEwoPU1RBVFVTX1JFUExBQ0VEEAsSGwoXU1RBVFVTX0NBTkNFTF9SRVFVRVNURUQQDBIdChlTVEFUVVNfQ09NUExFVEVfUkVRVUVTVEVEEA0SGwoXU1RBVFVTX1ZFUlNJT05fUkVKRUNURUQQDiqFAQoJRXJyb3JDb2RlEhYKEkVSUk9SX0NPREVfSU5WQUxJRBAAEhgKFEVSUk9SX0NPREVfQ0FOQ0VMTEVEEAESFwoTRVJST1JfQ09ERV9SRUpFQ1RFRBACEhYKEkVSUk9SX0NPREVfVElNRU9VVBADEhUKEUVSUk9SX0NPREVfRkFJTEVEEAQqbgoJRXZlbnRUeXBlEhYKEkVWRU5UX1RZUEVfSU5WQUxJRBAAEhYKEkVWRU5UX1RZUEVfQ1JFQVRFRBABEhUKEUVWRU5UX1RZUEVfVVBEQVRFEAISGgoWRVZFTlRfVFlQRV9QUkVFWElTVElORxADKk0KCFRhc2tWaWV3EhUKEVRBU0tfVklFV19JTlZBTElEEAASFQoRVEFTS19WSUVXX01BTkFHRVIQARITCg9UQVNLX1ZJRVdfQUdFTlQQAkLvAQoaY29tLmFuZHVyaWwudGFza21hbmFnZXIudjFCDFRhc2tQdWJQcm90b1ABWklnaGUuYW5kdXJpbC5kZXYvYW5kdXJpbC9hbmR1cmlsYXBpcy1nby9hbmR1cmlsL3Rhc2ttYW5hZ2VyL3YxO3Rhc2ttYW5hZ2VyogIDQVRYqgIWQW5kdXJpbC5UYXNrbWFuYWdlci5WMcoCFkFuZHVyaWxcVGFza21hbmFnZXJcVjHiAiJBbmR1cmlsXFRhc2ttYW5hZ2VyXFYxXEdQQk1ldGFkYXRh6gIYQW5kdXJpbDo6VGFza21hbmFnZXI6OlYxYgZwcm90bzM", [file_anduril_entitymanager_v1_entity_pub, file_google_protobuf_any, file_google_protobuf_timestamp]);
|
|
14
14
|
|
|
15
15
|
/**
|
|
16
16
|
* Describes the message anduril.taskmanager.v1.Task.
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js"
|
|
2
|
+
// @generated from file anduril/tasks/ads/thirdparty/v1/formation.pub.proto (package anduril.tasks.ads.thirdparty.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { Objective } from "../../../v2/objective.pub_pb.js";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file anduril/tasks/ads/thirdparty/v1/formation.pub.proto.
|
|
11
|
+
*/
|
|
12
|
+
export declare const file_anduril_tasks_ads_thirdparty_v1_formation_pub: GenFile;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Maps to a Line formation of assets with a speed. This is a simple line with two LLAs.
|
|
16
|
+
*
|
|
17
|
+
* @generated from message anduril.tasks.ads.thirdparty.v1.LineFormation
|
|
18
|
+
*/
|
|
19
|
+
export declare type LineFormation = Message<"anduril.tasks.ads.thirdparty.v1.LineFormation"> & {
|
|
20
|
+
/**
|
|
21
|
+
* Line start
|
|
22
|
+
*
|
|
23
|
+
* @generated from field: anduril.tasks.v2.Objective line_start = 1;
|
|
24
|
+
*/
|
|
25
|
+
lineStart?: Objective;
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Line end
|
|
29
|
+
*
|
|
30
|
+
* @generated from field: anduril.tasks.v2.Objective line_end = 2;
|
|
31
|
+
*/
|
|
32
|
+
lineEnd?: Objective;
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Speed in Meters/Second to get in Line Formation
|
|
36
|
+
*
|
|
37
|
+
* @generated from field: google.protobuf.DoubleValue surface_speed_ms = 3;
|
|
38
|
+
*/
|
|
39
|
+
surfaceSpeedMs?: number;
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Describes the message anduril.tasks.ads.thirdparty.v1.LineFormation.
|
|
44
|
+
* Use `create(LineFormationSchema)` to create a new message.
|
|
45
|
+
*/
|
|
46
|
+
export declare const LineFormationSchema: GenMessage<LineFormation>;
|
|
47
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js"
|
|
2
|
+
// @generated from file anduril/tasks/ads/thirdparty/v1/formation.pub.proto (package anduril.tasks.ads.thirdparty.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
6
|
+
import { file_anduril_tasks_v2_objective_pub } from "../../../v2/objective.pub_pb.js";
|
|
7
|
+
import { file_google_protobuf_wrappers } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file anduril/tasks/ads/thirdparty/v1/formation.pub.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_anduril_tasks_ads_thirdparty_v1_formation_pub = /*@__PURE__*/
|
|
13
|
+
fileDesc("CjNhbmR1cmlsL3Rhc2tzL2Fkcy90aGlyZHBhcnR5L3YxL2Zvcm1hdGlvbi5wdWIucHJvdG8SH2FuZHVyaWwudGFza3MuYWRzLnRoaXJkcGFydHkudjEipwEKDUxpbmVGb3JtYXRpb24SLwoKbGluZV9zdGFydBgBIAEoCzIbLmFuZHVyaWwudGFza3MudjIuT2JqZWN0aXZlEi0KCGxpbmVfZW5kGAIgASgLMhsuYW5kdXJpbC50YXNrcy52Mi5PYmplY3RpdmUSNgoQc3VyZmFjZV9zcGVlZF9tcxgDIAEoCzIcLmdvb2dsZS5wcm90b2J1Zi5Eb3VibGVWYWx1ZUKpAgojY29tLmFuZHVyaWwudGFza3MuYWRzLnRoaXJkcGFydHkudjFCEUZvcm1hdGlvblB1YlByb3RvUAFaTmdoZS5hbmR1cmlsLmRldi9hbmR1cmlsL2FuZHVyaWxhcGlzLWdvL2FuZHVyaWwvdGFza3MvYWRzL3RoaXJkcGFydHkvdjE7dGFza3N2MaICBEFUQVSqAh9BbmR1cmlsLlRhc2tzLkFkcy5UaGlyZHBhcnR5LlYxygIfQW5kdXJpbFxUYXNrc1xBZHNcVGhpcmRwYXJ0eVxWMeICK0FuZHVyaWxcVGFza3NcQWRzXFRoaXJkcGFydHlcVjFcR1BCTWV0YWRhdGHqAiNBbmR1cmlsOjpUYXNrczo6QWRzOjpUaGlyZHBhcnR5OjpWMWIGcHJvdG8z", [file_anduril_tasks_v2_objective_pub, file_google_protobuf_wrappers]);
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message anduril.tasks.ads.thirdparty.v1.LineFormation.
|
|
17
|
+
* Use `create(LineFormationSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const LineFormationSchema = /*@__PURE__*/
|
|
20
|
+
messageDesc(file_anduril_tasks_ads_thirdparty_v1_formation_pub, 0);
|
|
21
|
+
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js"
|
|
2
|
+
// @generated from file anduril/tasks/ads/thirdparty/v1/marshal.pub.proto (package anduril.tasks.ads.thirdparty.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1";
|
|
6
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
7
|
+
import type { Objective } from "../../../v2/objective.pub_pb.js";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file anduril/tasks/ads/thirdparty/v1/marshal.pub.proto.
|
|
11
|
+
*/
|
|
12
|
+
export declare const file_anduril_tasks_ads_thirdparty_v1_marshal_pub: GenFile;
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* Maps to BREVITY code Marshal.
|
|
16
|
+
* Establish(ed) at a specific point, typically used to posture forces in preparation for an offensive operation.
|
|
17
|
+
*
|
|
18
|
+
* @generated from message anduril.tasks.ads.thirdparty.v1.Marshal
|
|
19
|
+
*/
|
|
20
|
+
export declare type Marshal = Message<"anduril.tasks.ads.thirdparty.v1.Marshal"> & {
|
|
21
|
+
/**
|
|
22
|
+
* Objective to Marshal to.
|
|
23
|
+
*
|
|
24
|
+
* @generated from field: anduril.tasks.v2.Objective objective = 1;
|
|
25
|
+
*/
|
|
26
|
+
objective?: Objective;
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* Speed in Meters/Second
|
|
30
|
+
*
|
|
31
|
+
* @generated from field: google.protobuf.DoubleValue surface_speed_ms = 2;
|
|
32
|
+
*/
|
|
33
|
+
surfaceSpeedMs?: number;
|
|
34
|
+
};
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Describes the message anduril.tasks.ads.thirdparty.v1.Marshal.
|
|
38
|
+
* Use `create(MarshalSchema)` to create a new message.
|
|
39
|
+
*/
|
|
40
|
+
export declare const MarshalSchema: GenMessage<Marshal>;
|
|
41
|
+
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js"
|
|
2
|
+
// @generated from file anduril/tasks/ads/thirdparty/v1/marshal.pub.proto (package anduril.tasks.ads.thirdparty.v1, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
|
|
5
|
+
import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1";
|
|
6
|
+
import { file_anduril_tasks_v2_objective_pub } from "../../../v2/objective.pub_pb.js";
|
|
7
|
+
import { file_google_protobuf_wrappers } from "@bufbuild/protobuf/wkt";
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* Describes the file anduril/tasks/ads/thirdparty/v1/marshal.pub.proto.
|
|
11
|
+
*/
|
|
12
|
+
export const file_anduril_tasks_ads_thirdparty_v1_marshal_pub = /*@__PURE__*/
|
|
13
|
+
fileDesc("CjFhbmR1cmlsL3Rhc2tzL2Fkcy90aGlyZHBhcnR5L3YxL21hcnNoYWwucHViLnByb3RvEh9hbmR1cmlsLnRhc2tzLmFkcy50aGlyZHBhcnR5LnYxInEKB01hcnNoYWwSLgoJb2JqZWN0aXZlGAEgASgLMhsuYW5kdXJpbC50YXNrcy52Mi5PYmplY3RpdmUSNgoQc3VyZmFjZV9zcGVlZF9tcxgCIAEoCzIcLmdvb2dsZS5wcm90b2J1Zi5Eb3VibGVWYWx1ZUKnAgojY29tLmFuZHVyaWwudGFza3MuYWRzLnRoaXJkcGFydHkudjFCD01hcnNoYWxQdWJQcm90b1ABWk5naGUuYW5kdXJpbC5kZXYvYW5kdXJpbC9hbmR1cmlsYXBpcy1nby9hbmR1cmlsL3Rhc2tzL2Fkcy90aGlyZHBhcnR5L3YxO3Rhc2tzdjGiAgRBVEFUqgIfQW5kdXJpbC5UYXNrcy5BZHMuVGhpcmRwYXJ0eS5WMcoCH0FuZHVyaWxcVGFza3NcQWRzXFRoaXJkcGFydHlcVjHiAitBbmR1cmlsXFRhc2tzXEFkc1xUaGlyZHBhcnR5XFYxXEdQQk1ldGFkYXRh6gIjQW5kdXJpbDo6VGFza3M6OkFkczo6VGhpcmRwYXJ0eTo6VjFiBnByb3RvMw", [file_anduril_tasks_v2_objective_pub, file_google_protobuf_wrappers]);
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message anduril.tasks.ads.thirdparty.v1.Marshal.
|
|
17
|
+
* Use `create(MarshalSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const MarshalSchema = /*@__PURE__*/
|
|
20
|
+
messageDesc(file_anduril_tasks_ads_thirdparty_v1_marshal_pub, 0);
|
|
21
|
+
|