Skip to content

Commit c527f1e

Browse files
Merge pull request #11 from anduril/publish_1725899858
2 parents 614253b + a6f0854 commit c527f1e

File tree

8 files changed

+453
-70
lines changed

8 files changed

+453
-70
lines changed

src/anduril/entitymanager/v1/entity.pub_pb.d.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import type { Classification } from "./classification.pub_pb.js";
2020
import type { TaskCatalog } from "../../tasks/v2/catalog.pub_pb.js";
2121
import type { Media } from "./media.pub_pb.js";
2222
import type { Relationships } from "./relationship.pub_pb.js";
23-
import type { PrototypeExtensions } from "./prototype.pub_pb.js";
2423
import type { Dimensions } from "./dimensions.pub_pb.js";
2524
import type { RouteDetails } from "./route_details.pub_pb.js";
2625
import type { Schedules } from "./schedule.pub_pb.js";
@@ -338,19 +337,6 @@ export declare class Entity extends Message<Entity> {
338337
*/
339338
visualDetails?: VisualDetails;
340339

341-
/**
342-
* A generic component that should only be used by Anduril employees as a way of ferrying data without modelling it as a full component. USE WITH CAUTION!!
343-
* The following should be considered before use:
344-
* If you have the time available, liaise with the battlespace team (#battlespace-team) to determine if this should be modelled on an existing/new component
345-
* You're responsible for handling key conflicts
346-
* Any data on here is not supported by the battlespace awareness team
347-
* The intention is for this to be used by short-lived prototypes where you may not have conviction in it's longevity
348-
* 🙏
349-
*
350-
* @generated from field: anduril.entitymanager.v1.PrototypeExtensions prototype_extensions = 35;
351-
*/
352-
prototypeExtensions?: PrototypeExtensions;
353-
354340
/**
355341
* Physical dimensions of the entity
356342
*

src/anduril/entitymanager/v1/entity.pub_pb.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ const { Classification } = require("./classification.pub_pb.js");
2222
const { TaskCatalog } = require("../../tasks/v2/catalog.pub_pb.js");
2323
const { Media } = require("./media.pub_pb.js");
2424
const { Relationships } = require("./relationship.pub_pb.js");
25-
const { PrototypeExtensions } = require("./prototype.pub_pb.js");
2625
const { Dimensions } = require("./dimensions.pub_pb.js");
2726
const { RouteDetails } = require("./route_details.pub_pb.js");
2827
const { Schedules } = require("./schedule.pub_pb.js");
@@ -101,7 +100,6 @@ const Entity = proto3.makeMessageType(
101100
{ no: 32, name: "media", kind: "message", T: Media },
102101
{ no: 33, name: "relationships", kind: "message", T: Relationships },
103102
{ no: 34, name: "visual_details", kind: "message", T: VisualDetails },
104-
{ no: 35, name: "prototype_extensions", kind: "message", T: PrototypeExtensions },
105103
{ no: 36, name: "dimensions", kind: "message", T: Dimensions },
106104
{ no: 37, name: "route_details", kind: "message", T: RouteDetails },
107105
{ no: 38, name: "schedules", kind: "message", T: Schedules },

src/anduril/entitymanager/v1/prototype.pub_pb.d.ts

Lines changed: 0 additions & 32 deletions
This file was deleted.

src/anduril/entitymanager/v1/prototype.pub_pb.js

Lines changed: 0 additions & 22 deletions
This file was deleted.
Lines changed: 135 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,135 @@
1+
// @generated by protoc-gen-es v1.7.2 with parameter "js_import_style=legacy_commonjs"
2+
// @generated from file anduril/tasks/ad/desertguardian/common/v1/common_tasks.pub.proto (package anduril.tasks.ad.desertguardian.common.v1, syntax proto3)
3+
/* eslint-disable */
4+
// @ts-nocheck
5+
6+
import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf";
7+
import { Message, proto3 } from "@bufbuild/protobuf";
8+
9+
/**
10+
* @generated from enum anduril.tasks.ad.desertguardian.common.v1.PowerState
11+
*/
12+
export declare enum PowerState {
13+
/**
14+
* @generated from enum value: POWER_STATE_INVALID = 0;
15+
*/
16+
INVALID = 0,
17+
18+
/**
19+
* @generated from enum value: POWER_STATE_ON = 1;
20+
*/
21+
ON = 1,
22+
23+
/**
24+
* @generated from enum value: POWER_STATE_OFF = 2;
25+
*/
26+
OFF = 2,
27+
}
28+
29+
/**
30+
* Set the power state of a Platform. It is up to the Platform to interpret the power state and act accordingly.
31+
*
32+
* @generated from message anduril.tasks.ad.desertguardian.common.v1.SetPowerState
33+
*/
34+
export declare class SetPowerState extends Message<SetPowerState> {
35+
/**
36+
* @generated from field: anduril.tasks.ad.desertguardian.common.v1.PowerState power_state = 1;
37+
*/
38+
powerState: PowerState;
39+
40+
constructor(data?: PartialMessage<SetPowerState>);
41+
42+
static readonly runtime: typeof proto3;
43+
static readonly typeName = "anduril.tasks.ad.desertguardian.common.v1.SetPowerState";
44+
static readonly fields: FieldList;
45+
46+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetPowerState;
47+
48+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetPowerState;
49+
50+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetPowerState;
51+
52+
static equals(a: SetPowerState | PlainMessage<SetPowerState> | undefined, b: SetPowerState | PlainMessage<SetPowerState> | undefined): boolean;
53+
}
54+
55+
/**
56+
* Delete an entity from the internal tracker of a Platform.
57+
* Does not silence or suppress the track from re-forming if the tracking conditions are satisfied.
58+
*
59+
* @generated from message anduril.tasks.ad.desertguardian.common.v1.DeleteTrack
60+
*/
61+
export declare class DeleteTrack extends Message<DeleteTrack> {
62+
/**
63+
* @generated from field: string entity_id = 1;
64+
*/
65+
entityId: string;
66+
67+
constructor(data?: PartialMessage<DeleteTrack>);
68+
69+
static readonly runtime: typeof proto3;
70+
static readonly typeName = "anduril.tasks.ad.desertguardian.common.v1.DeleteTrack";
71+
static readonly fields: FieldList;
72+
73+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): DeleteTrack;
74+
75+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): DeleteTrack;
76+
77+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): DeleteTrack;
78+
79+
static equals(a: DeleteTrack | PlainMessage<DeleteTrack> | undefined, b: DeleteTrack | PlainMessage<DeleteTrack> | undefined): boolean;
80+
}
81+
82+
/**
83+
* Set this entity as a "High Priority Track".
84+
* The tasked Platform is responsible for maintaining a list of current High-Priority tracks.
85+
*
86+
* @generated from message anduril.tasks.ad.desertguardian.common.v1.SetHighPriorityTrack
87+
*/
88+
export declare class SetHighPriorityTrack extends Message<SetHighPriorityTrack> {
89+
/**
90+
* @generated from field: string entity_id = 1;
91+
*/
92+
entityId: string;
93+
94+
constructor(data?: PartialMessage<SetHighPriorityTrack>);
95+
96+
static readonly runtime: typeof proto3;
97+
static readonly typeName = "anduril.tasks.ad.desertguardian.common.v1.SetHighPriorityTrack";
98+
static readonly fields: FieldList;
99+
100+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): SetHighPriorityTrack;
101+
102+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): SetHighPriorityTrack;
103+
104+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): SetHighPriorityTrack;
105+
106+
static equals(a: SetHighPriorityTrack | PlainMessage<SetHighPriorityTrack> | undefined, b: SetHighPriorityTrack | PlainMessage<SetHighPriorityTrack> | undefined): boolean;
107+
}
108+
109+
/**
110+
* Unset this entity as a "High Priority Track".
111+
* The tasked Platform is responsible for maintaining a list of current High-Priority tracks.
112+
*
113+
* @generated from message anduril.tasks.ad.desertguardian.common.v1.RemoveHighPriorityTrack
114+
*/
115+
export declare class RemoveHighPriorityTrack extends Message<RemoveHighPriorityTrack> {
116+
/**
117+
* @generated from field: string entity_id = 1;
118+
*/
119+
entityId: string;
120+
121+
constructor(data?: PartialMessage<RemoveHighPriorityTrack>);
122+
123+
static readonly runtime: typeof proto3;
124+
static readonly typeName = "anduril.tasks.ad.desertguardian.common.v1.RemoveHighPriorityTrack";
125+
static readonly fields: FieldList;
126+
127+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RemoveHighPriorityTrack;
128+
129+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RemoveHighPriorityTrack;
130+
131+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RemoveHighPriorityTrack;
132+
133+
static equals(a: RemoveHighPriorityTrack | PlainMessage<RemoveHighPriorityTrack> | undefined, b: RemoveHighPriorityTrack | PlainMessage<RemoveHighPriorityTrack> | undefined): boolean;
134+
}
135+
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
// @generated by protoc-gen-es v1.7.2 with parameter "js_import_style=legacy_commonjs"
2+
// @generated from file anduril/tasks/ad/desertguardian/common/v1/common_tasks.pub.proto (package anduril.tasks.ad.desertguardian.common.v1, syntax proto3)
3+
/* eslint-disable */
4+
// @ts-nocheck
5+
6+
"use strict";
7+
Object.defineProperty(exports, "__esModule", { value: true });
8+
9+
const { proto3 } = require("@bufbuild/protobuf");
10+
11+
/**
12+
* @generated from enum anduril.tasks.ad.desertguardian.common.v1.PowerState
13+
*/
14+
const PowerState = proto3.makeEnum(
15+
"anduril.tasks.ad.desertguardian.common.v1.PowerState",
16+
[
17+
{no: 0, name: "POWER_STATE_INVALID", localName: "INVALID"},
18+
{no: 1, name: "POWER_STATE_ON", localName: "ON"},
19+
{no: 2, name: "POWER_STATE_OFF", localName: "OFF"},
20+
],
21+
);
22+
23+
/**
24+
* Set the power state of a Platform. It is up to the Platform to interpret the power state and act accordingly.
25+
*
26+
* @generated from message anduril.tasks.ad.desertguardian.common.v1.SetPowerState
27+
*/
28+
const SetPowerState = proto3.makeMessageType(
29+
"anduril.tasks.ad.desertguardian.common.v1.SetPowerState",
30+
() => [
31+
{ no: 1, name: "power_state", kind: "enum", T: proto3.getEnumType(PowerState) },
32+
],
33+
);
34+
35+
/**
36+
* Delete an entity from the internal tracker of a Platform.
37+
* Does not silence or suppress the track from re-forming if the tracking conditions are satisfied.
38+
*
39+
* @generated from message anduril.tasks.ad.desertguardian.common.v1.DeleteTrack
40+
*/
41+
const DeleteTrack = proto3.makeMessageType(
42+
"anduril.tasks.ad.desertguardian.common.v1.DeleteTrack",
43+
() => [
44+
{ no: 1, name: "entity_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
45+
],
46+
);
47+
48+
/**
49+
* Set this entity as a "High Priority Track".
50+
* The tasked Platform is responsible for maintaining a list of current High-Priority tracks.
51+
*
52+
* @generated from message anduril.tasks.ad.desertguardian.common.v1.SetHighPriorityTrack
53+
*/
54+
const SetHighPriorityTrack = proto3.makeMessageType(
55+
"anduril.tasks.ad.desertguardian.common.v1.SetHighPriorityTrack",
56+
() => [
57+
{ no: 1, name: "entity_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
58+
],
59+
);
60+
61+
/**
62+
* Unset this entity as a "High Priority Track".
63+
* The tasked Platform is responsible for maintaining a list of current High-Priority tracks.
64+
*
65+
* @generated from message anduril.tasks.ad.desertguardian.common.v1.RemoveHighPriorityTrack
66+
*/
67+
const RemoveHighPriorityTrack = proto3.makeMessageType(
68+
"anduril.tasks.ad.desertguardian.common.v1.RemoveHighPriorityTrack",
69+
() => [
70+
{ no: 1, name: "entity_id", kind: "scalar", T: 9 /* ScalarType.STRING */ },
71+
],
72+
);
73+
74+
75+
exports.PowerState = PowerState;
76+
exports.SetPowerState = SetPowerState;
77+
exports.DeleteTrack = DeleteTrack;
78+
exports.SetHighPriorityTrack = SetHighPriorityTrack;
79+
exports.RemoveHighPriorityTrack = RemoveHighPriorityTrack;

0 commit comments

Comments
 (0)