diff --git a/src/anduril/entitymanager/v1/contact_details.pub_pb.d.ts b/src/anduril/entitymanager/v1/contact_details.pub_pb.d.ts deleted file mode 100644 index fc3ccf9..0000000 --- a/src/anduril/entitymanager/v1/contact_details.pub_pb.d.ts +++ /dev/null @@ -1,32 +0,0 @@ -// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js" -// @generated from file anduril/entitymanager/v1/contact_details.pub.proto (package anduril.entitymanager.v1, syntax proto3) -/* eslint-disable */ - -import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; -import type { Message } from "@bufbuild/protobuf"; - -/** - * Describes the file anduril/entitymanager/v1/contact_details.pub.proto. - */ -export declare const file_anduril_entitymanager_v1_contact_details_pub: GenFile; - -/** - * Contains details on how to make contact with an entity. - * - * @generated from message anduril.entitymanager.v1.ContactDetails - */ -export declare type ContactDetails = Message<"anduril.entitymanager.v1.ContactDetails"> & { - /** - * The primary phone number for this entity. - * - * @generated from field: string phone_number = 1; - */ - phoneNumber: string; -}; - -/** - * Describes the message anduril.entitymanager.v1.ContactDetails. - * Use `create(ContactDetailsSchema)` to create a new message. - */ -export declare const ContactDetailsSchema: GenMessage; - diff --git a/src/anduril/entitymanager/v1/contact_details.pub_pb.js b/src/anduril/entitymanager/v1/contact_details.pub_pb.js deleted file mode 100644 index 145026f..0000000 --- a/src/anduril/entitymanager/v1/contact_details.pub_pb.js +++ /dev/null @@ -1,19 +0,0 @@ -// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js" -// @generated from file anduril/entitymanager/v1/contact_details.pub.proto (package anduril.entitymanager.v1, syntax proto3) -/* eslint-disable */ - -import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1"; - -/** - * Describes the file anduril/entitymanager/v1/contact_details.pub.proto. - */ -export const file_anduril_entitymanager_v1_contact_details_pub = /*@__PURE__*/ - fileDesc("CjJhbmR1cmlsL2VudGl0eW1hbmFnZXIvdjEvY29udGFjdF9kZXRhaWxzLnB1Yi5wcm90bxIYYW5kdXJpbC5lbnRpdHltYW5hZ2VyLnYxIiYKDkNvbnRhY3REZXRhaWxzEhQKDHBob25lX251bWJlchgBIAEoCUKHAgocY29tLmFuZHVyaWwuZW50aXR5bWFuYWdlci52MUIWQ29udGFjdERldGFpbHNQdWJQcm90b1ABWk1naGUuYW5kdXJpbC5kZXYvYW5kdXJpbC9hbmR1cmlsYXBpcy1nby9hbmR1cmlsL2VudGl0eW1hbmFnZXIvdjE7ZW50aXR5bWFuYWdlcqICA0FFWKoCGEFuZHVyaWwuRW50aXR5bWFuYWdlci5WMcoCGEFuZHVyaWxcRW50aXR5bWFuYWdlclxWMeICJEFuZHVyaWxcRW50aXR5bWFuYWdlclxWMVxHUEJNZXRhZGF0YeoCGkFuZHVyaWw6OkVudGl0eW1hbmFnZXI6OlYxYgZwcm90bzM"); - -/** - * Describes the message anduril.entitymanager.v1.ContactDetails. - * Use `create(ContactDetailsSchema)` to create a new message. - */ -export const ContactDetailsSchema = /*@__PURE__*/ - messageDesc(file_anduril_entitymanager_v1_contact_details_pub, 0); - diff --git a/src/anduril/entitymanager/v1/correlations.pub_pb.d.ts b/src/anduril/entitymanager/v1/correlations.pub_pb.d.ts deleted file mode 100644 index e9970df..0000000 --- a/src/anduril/entitymanager/v1/correlations.pub_pb.d.ts +++ /dev/null @@ -1,189 +0,0 @@ -// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js" -// @generated from file anduril/entitymanager/v1/correlations.pub.proto (package anduril.entitymanager.v1, syntax proto3) -/* eslint-disable */ - -import type { GenEnum, GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; -import type { Message } from "@bufbuild/protobuf"; -import type { Timestamp } from "@bufbuild/protobuf/wkt"; - -/** - * Describes the file anduril/entitymanager/v1/correlations.pub.proto. - */ -export declare const file_anduril_entitymanager_v1_correlations_pub: GenFile; - -/** - * Available for Entities that are a correlated (N to 1) set of entities. This will be present on each entity in the - * set. - * - * @generated from message anduril.entitymanager.v1.Correlated - */ -export declare type Correlated = Message<"anduril.entitymanager.v1.Correlated"> & { - /** - * primary entity id - * - * @generated from field: string primary_entity_id = 1; - */ - primaryEntityId: string; - - /** - * status representing this correlation - * - * @generated from field: anduril.entitymanager.v1.CorrelationStatus status = 2; - */ - status: CorrelationStatus; - - /** - * score pairings between this and other entity ids - * - * @generated from field: repeated anduril.entitymanager.v1.CorrelationScore scores = 3; - */ - scores: CorrelationScore[]; - - /** - * if not present, does not expire - * - * @generated from field: google.protobuf.Timestamp expires_time = 4; - */ - expiresTime?: Timestamp; -}; - -/** - * Describes the message anduril.entitymanager.v1.Correlated. - * Use `create(CorrelatedSchema)` to create a new message. - */ -export declare const CorrelatedSchema: GenMessage; - -/** - * A correlation scoring between two entities. - * - * @generated from message anduril.entitymanager.v1.CorrelationScore - */ -export declare type CorrelationScore = Message<"anduril.entitymanager.v1.CorrelationScore"> & { - /** - * @generated from field: string other_entity_id = 1; - */ - otherEntityId: string; - - /** - * @generated from field: float score = 2; - */ - score: number; - - /** - * @generated from field: anduril.entitymanager.v1.ScoreInterpretation interpretation = 3; - */ - interpretation: ScoreInterpretation; - - /** - * Deprecated: do not use - * - * @generated from field: bool link16_compliant = 4 [deprecated = true]; - * @deprecated - */ - link16Compliant: boolean; - - /** - * status of other_entity_id correlation, expresses relationship of other to correlation set this entity is part of. - * - * @generated from field: anduril.entitymanager.v1.CorrelationStatus other_status = 5; - */ - otherStatus: CorrelationStatus; -}; - -/** - * Describes the message anduril.entitymanager.v1.CorrelationScore. - * Use `create(CorrelationScoreSchema)` to create a new message. - */ -export declare const CorrelationScoreSchema: GenMessage; - -/** - * The status of the correlation. - * - * @generated from enum anduril.entitymanager.v1.CorrelationStatus - */ -export enum CorrelationStatus { - /** - * @generated from enum value: CORRELATION_STATUS_INVALID = 0; - */ - INVALID = 0, - - /** - * potential correlation requested by manual inspection, not yet confirmed. - * - * @generated from enum value: CORRELATION_STATUS_MANUAL_INSPECTION = 1; - */ - MANUAL_INSPECTION = 1, - - /** - * potential correlation suggested by system, not yet confirmed. - * - * @generated from enum value: CORRELATION_STATUS_AUTO_SUGGESTED = 2; - */ - AUTO_SUGGESTED = 2, - - /** - * deprecated - * - * @generated from enum value: CORRELATION_STATUS_START_CORRELATE = 3 [deprecated = true]; - * @deprecated - */ - START_CORRELATE = 3, - - /** - * correlation has been confirmed, treat non primary as hidden. - * - * @generated from enum value: CORRELATION_STATUS_CONFIRMED = 4; - */ - CONFIRMED = 4, - - /** - * correlation was explicitly rejected, treat as non correlated. - * - * @generated from enum value: CORRELATION_STATUS_DENIED = 5; - */ - DENIED = 5, -} - -/** - * Describes the enum anduril.entitymanager.v1.CorrelationStatus. - */ -export declare const CorrelationStatusSchema: GenEnum; - -/** - * The interpretation of the correlation score. - * - * @generated from enum anduril.entitymanager.v1.ScoreInterpretation - */ -export enum ScoreInterpretation { - /** - * @generated from enum value: SCORE_INTERPRETATION_INVALID = 0; - */ - INVALID = 0, - - /** - * unlikely these are the same entity - * - * @generated from enum value: SCORE_INTERPRETATION_UNLIKELY = 1; - */ - UNLIKELY = 1, - - /** - * likely these are the same entity - * - * @generated from enum value: SCORE_INTERPRETATION_LIKELY = 2; - */ - LIKELY = 2, - - /** - * very likely these are the same entity - * - * @generated from enum value: SCORE_INTERPRETATION_VERY_LIKELY = 3; - */ - VERY_LIKELY = 3, -} - -/** - * Describes the enum anduril.entitymanager.v1.ScoreInterpretation. - */ -export declare const ScoreInterpretationSchema: GenEnum; - diff --git a/src/anduril/entitymanager/v1/correlations.pub_pb.js b/src/anduril/entitymanager/v1/correlations.pub_pb.js deleted file mode 100644 index c78c8ab..0000000 --- a/src/anduril/entitymanager/v1/correlations.pub_pb.js +++ /dev/null @@ -1,55 +0,0 @@ -// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js" -// @generated from file anduril/entitymanager/v1/correlations.pub.proto (package anduril.entitymanager.v1, syntax proto3) -/* eslint-disable */ - -import { enumDesc, fileDesc, messageDesc, tsEnum } from "@bufbuild/protobuf/codegenv1"; -import { file_google_protobuf_timestamp } from "@bufbuild/protobuf/wkt"; - -/** - * Describes the file anduril/entitymanager/v1/correlations.pub.proto. - */ -export const file_anduril_entitymanager_v1_correlations_pub = /*@__PURE__*/ - fileDesc("Ci9hbmR1cmlsL2VudGl0eW1hbmFnZXIvdjEvY29ycmVsYXRpb25zLnB1Yi5wcm90bxIYYW5kdXJpbC5lbnRpdHltYW5hZ2VyLnYxItIBCgpDb3JyZWxhdGVkEhkKEXByaW1hcnlfZW50aXR5X2lkGAEgASgJEjsKBnN0YXR1cxgCIAEoDjIrLmFuZHVyaWwuZW50aXR5bWFuYWdlci52MS5Db3JyZWxhdGlvblN0YXR1cxI6CgZzY29yZXMYAyADKAsyKi5hbmR1cmlsLmVudGl0eW1hbmFnZXIudjEuQ29ycmVsYXRpb25TY29yZRIwCgxleHBpcmVzX3RpbWUYBCABKAsyGi5nb29nbGUucHJvdG9idWYuVGltZXN0YW1wIuIBChBDb3JyZWxhdGlvblNjb3JlEhcKD290aGVyX2VudGl0eV9pZBgBIAEoCRINCgVzY29yZRgCIAEoAhJFCg5pbnRlcnByZXRhdGlvbhgDIAEoDjItLmFuZHVyaWwuZW50aXR5bWFuYWdlci52MS5TY29yZUludGVycHJldGF0aW9uEhwKEGxpbmsxNl9jb21wbGlhbnQYBCABKAhCAhgBEkEKDG90aGVyX3N0YXR1cxgFIAEoDjIrLmFuZHVyaWwuZW50aXR5bWFuYWdlci52MS5Db3JyZWxhdGlvblN0YXR1cyrxAQoRQ29ycmVsYXRpb25TdGF0dXMSHgoaQ09SUkVMQVRJT05fU1RBVFVTX0lOVkFMSUQQABIoCiRDT1JSRUxBVElPTl9TVEFUVVNfTUFOVUFMX0lOU1BFQ1RJT04QARIlCiFDT1JSRUxBVElPTl9TVEFUVVNfQVVUT19TVUdHRVNURUQQAhIqCiJDT1JSRUxBVElPTl9TVEFUVVNfU1RBUlRfQ09SUkVMQVRFEAMaAggBEiAKHENPUlJFTEFUSU9OX1NUQVRVU19DT05GSVJNRUQQBBIdChlDT1JSRUxBVElPTl9TVEFUVVNfREVOSUVEEAUqoQEKE1Njb3JlSW50ZXJwcmV0YXRpb24SIAocU0NPUkVfSU5URVJQUkVUQVRJT05fSU5WQUxJRBAAEiEKHVNDT1JFX0lOVEVSUFJFVEFUSU9OX1VOTElLRUxZEAESHwobU0NPUkVfSU5URVJQUkVUQVRJT05fTElLRUxZEAISJAogU0NPUkVfSU5URVJQUkVUQVRJT05fVkVSWV9MSUtFTFkQA0KFAgocY29tLmFuZHVyaWwuZW50aXR5bWFuYWdlci52MUIUQ29ycmVsYXRpb25zUHViUHJvdG9QAVpNZ2hlLmFuZHVyaWwuZGV2L2FuZHVyaWwvYW5kdXJpbGFwaXMtZ28vYW5kdXJpbC9lbnRpdHltYW5hZ2VyL3YxO2VudGl0eW1hbmFnZXKiAgNBRViqAhhBbmR1cmlsLkVudGl0eW1hbmFnZXIuVjHKAhhBbmR1cmlsXEVudGl0eW1hbmFnZXJcVjHiAiRBbmR1cmlsXEVudGl0eW1hbmFnZXJcVjFcR1BCTWV0YWRhdGHqAhpBbmR1cmlsOjpFbnRpdHltYW5hZ2VyOjpWMWIGcHJvdG8z", [file_google_protobuf_timestamp]); - -/** - * Describes the message anduril.entitymanager.v1.Correlated. - * Use `create(CorrelatedSchema)` to create a new message. - */ -export const CorrelatedSchema = /*@__PURE__*/ - messageDesc(file_anduril_entitymanager_v1_correlations_pub, 0); - -/** - * Describes the message anduril.entitymanager.v1.CorrelationScore. - * Use `create(CorrelationScoreSchema)` to create a new message. - */ -export const CorrelationScoreSchema = /*@__PURE__*/ - messageDesc(file_anduril_entitymanager_v1_correlations_pub, 1); - -/** - * Describes the enum anduril.entitymanager.v1.CorrelationStatus. - */ -export const CorrelationStatusSchema = /*@__PURE__*/ - enumDesc(file_anduril_entitymanager_v1_correlations_pub, 0); - -/** - * The status of the correlation. - * - * @generated from enum anduril.entitymanager.v1.CorrelationStatus - */ -export const CorrelationStatus = /*@__PURE__*/ - tsEnum(CorrelationStatusSchema); - -/** - * Describes the enum anduril.entitymanager.v1.ScoreInterpretation. - */ -export const ScoreInterpretationSchema = /*@__PURE__*/ - enumDesc(file_anduril_entitymanager_v1_correlations_pub, 1); - -/** - * The interpretation of the correlation score. - * - * @generated from enum anduril.entitymanager.v1.ScoreInterpretation - */ -export const ScoreInterpretation = /*@__PURE__*/ - tsEnum(ScoreInterpretationSchema); - diff --git a/src/anduril/entitymanager/v1/notification.pub_pb.d.ts b/src/anduril/entitymanager/v1/notification.pub_pb.d.ts deleted file mode 100644 index 374f920..0000000 --- a/src/anduril/entitymanager/v1/notification.pub_pb.d.ts +++ /dev/null @@ -1,50 +0,0 @@ -// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js" -// @generated from file anduril/entitymanager/v1/notification.pub.proto (package anduril.entitymanager.v1, syntax proto3) -/* eslint-disable */ - -import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; -import type { Message } from "@bufbuild/protobuf"; -import type { Entity, Provenance } from "./entity.pub_pb.js"; - -/** - * Describes the file anduril/entitymanager/v1/notification.pub.proto. - */ -export declare const file_anduril_entitymanager_v1_notification_pub: GenFile; - -/** - * A notification to indicate when a field is overridden on an entity. - * - * @generated from message anduril.entitymanager.v1.OverrideNotificationPayload - */ -export declare type OverrideNotificationPayload = Message<"anduril.entitymanager.v1.OverrideNotificationPayload"> & { - /** - * The entity containing the values to override and the entityID being overriden. - * Used by the client to determine the value a field is overridden to (e.g. hostile). - * - * @generated from field: anduril.entitymanager.v1.Entity entity = 1; - */ - entity?: Entity; - - /** - * The field path determining the path on an entity to override. Used by the client - * to determine whether an override request was for a particular field (e.g. disposition). - * - * @generated from field: string field_path = 2; - */ - fieldPath: string; - - /** - * The provenance of the override request. This should always match the OverrideEntityRequest - * provenance field. - * - * @generated from field: anduril.entitymanager.v1.Provenance provenance = 3; - */ - provenance?: Provenance; -}; - -/** - * Describes the message anduril.entitymanager.v1.OverrideNotificationPayload. - * Use `create(OverrideNotificationPayloadSchema)` to create a new message. - */ -export declare const OverrideNotificationPayloadSchema: GenMessage; - diff --git a/src/anduril/entitymanager/v1/notification.pub_pb.js b/src/anduril/entitymanager/v1/notification.pub_pb.js deleted file mode 100644 index 4d1f4e3..0000000 --- a/src/anduril/entitymanager/v1/notification.pub_pb.js +++ /dev/null @@ -1,20 +0,0 @@ -// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js" -// @generated from file anduril/entitymanager/v1/notification.pub.proto (package anduril.entitymanager.v1, syntax proto3) -/* eslint-disable */ - -import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1"; -import { file_anduril_entitymanager_v1_entity_pub } from "./entity.pub_pb.js"; - -/** - * Describes the file anduril/entitymanager/v1/notification.pub.proto. - */ -export const file_anduril_entitymanager_v1_notification_pub = /*@__PURE__*/ - fileDesc("Ci9hbmR1cmlsL2VudGl0eW1hbmFnZXIvdjEvbm90aWZpY2F0aW9uLnB1Yi5wcm90bxIYYW5kdXJpbC5lbnRpdHltYW5hZ2VyLnYxIp0BChtPdmVycmlkZU5vdGlmaWNhdGlvblBheWxvYWQSMAoGZW50aXR5GAEgASgLMiAuYW5kdXJpbC5lbnRpdHltYW5hZ2VyLnYxLkVudGl0eRISCgpmaWVsZF9wYXRoGAIgASgJEjgKCnByb3ZlbmFuY2UYAyABKAsyJC5hbmR1cmlsLmVudGl0eW1hbmFnZXIudjEuUHJvdmVuYW5jZUKFAgocY29tLmFuZHVyaWwuZW50aXR5bWFuYWdlci52MUIUTm90aWZpY2F0aW9uUHViUHJvdG9QAVpNZ2hlLmFuZHVyaWwuZGV2L2FuZHVyaWwvYW5kdXJpbGFwaXMtZ28vYW5kdXJpbC9lbnRpdHltYW5hZ2VyL3YxO2VudGl0eW1hbmFnZXKiAgNBRViqAhhBbmR1cmlsLkVudGl0eW1hbmFnZXIuVjHKAhhBbmR1cmlsXEVudGl0eW1hbmFnZXJcVjHiAiRBbmR1cmlsXEVudGl0eW1hbmFnZXJcVjFcR1BCTWV0YWRhdGHqAhpBbmR1cmlsOjpFbnRpdHltYW5hZ2VyOjpWMWIGcHJvdG8z", [file_anduril_entitymanager_v1_entity_pub]); - -/** - * Describes the message anduril.entitymanager.v1.OverrideNotificationPayload. - * Use `create(OverrideNotificationPayloadSchema)` to create a new message. - */ -export const OverrideNotificationPayloadSchema = /*@__PURE__*/ - messageDesc(file_anduril_entitymanager_v1_notification_pub, 0); - diff --git a/src/anduril/taskmanager/v1/generic_spec.pub_pb.d.ts b/src/anduril/taskmanager/v1/generic_spec.pub_pb.d.ts deleted file mode 100644 index dc38aa2..0000000 --- a/src/anduril/taskmanager/v1/generic_spec.pub_pb.d.ts +++ /dev/null @@ -1,33 +0,0 @@ -// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js" -// @generated from file anduril/taskmanager/v1/generic_spec.pub.proto (package anduril.taskmanager.v1, syntax proto3) -/* eslint-disable */ - -import type { GenFile, GenMessage } from "@bufbuild/protobuf/codegenv1"; -import type { Message } from "@bufbuild/protobuf"; -import type { Value } from "@bufbuild/protobuf/wkt"; - -/** - * Describes the file anduril/taskmanager/v1/generic_spec.pub.proto. - */ -export declare const file_anduril_taskmanager_v1_generic_spec_pub: GenFile; - -/** - * GenericSpec is a wrapper for arbitrary JSON payloads. Meant for wrapping a Task's specification field, if needed. - * - * @generated from message anduril.taskmanager.v1.GenericSpec - */ -export declare type GenericSpec = Message<"anduril.taskmanager.v1.GenericSpec"> & { - /** - * Can represent any JSON value. - * - * @generated from field: google.protobuf.Value payload = 1; - */ - payload?: Value; -}; - -/** - * Describes the message anduril.taskmanager.v1.GenericSpec. - * Use `create(GenericSpecSchema)` to create a new message. - */ -export declare const GenericSpecSchema: GenMessage; - diff --git a/src/anduril/taskmanager/v1/generic_spec.pub_pb.js b/src/anduril/taskmanager/v1/generic_spec.pub_pb.js deleted file mode 100644 index 061da2a..0000000 --- a/src/anduril/taskmanager/v1/generic_spec.pub_pb.js +++ /dev/null @@ -1,20 +0,0 @@ -// @generated by protoc-gen-es v2.2.0 with parameter "import_extension=js" -// @generated from file anduril/taskmanager/v1/generic_spec.pub.proto (package anduril.taskmanager.v1, syntax proto3) -/* eslint-disable */ - -import { fileDesc, messageDesc } from "@bufbuild/protobuf/codegenv1"; -import { file_google_protobuf_struct } from "@bufbuild/protobuf/wkt"; - -/** - * Describes the file anduril/taskmanager/v1/generic_spec.pub.proto. - */ -export const file_anduril_taskmanager_v1_generic_spec_pub = /*@__PURE__*/ - fileDesc("Ci1hbmR1cmlsL3Rhc2ttYW5hZ2VyL3YxL2dlbmVyaWNfc3BlYy5wdWIucHJvdG8SFmFuZHVyaWwudGFza21hbmFnZXIudjEiNgoLR2VuZXJpY1NwZWMSJwoHcGF5bG9hZBgBIAEoCzIWLmdvb2dsZS5wcm90b2J1Zi5WYWx1ZUL2AQoaY29tLmFuZHVyaWwudGFza21hbmFnZXIudjFCE0dlbmVyaWNTcGVjUHViUHJvdG9QAVpJZ2hlLmFuZHVyaWwuZGV2L2FuZHVyaWwvYW5kdXJpbGFwaXMtZ28vYW5kdXJpbC90YXNrbWFuYWdlci92MTt0YXNrbWFuYWdlcqICA0FUWKoCFkFuZHVyaWwuVGFza21hbmFnZXIuVjHKAhZBbmR1cmlsXFRhc2ttYW5hZ2VyXFYx4gIiQW5kdXJpbFxUYXNrbWFuYWdlclxWMVxHUEJNZXRhZGF0YeoCGEFuZHVyaWw6OlRhc2ttYW5hZ2VyOjpWMWIGcHJvdG8z", [file_google_protobuf_struct]); - -/** - * Describes the message anduril.taskmanager.v1.GenericSpec. - * Use `create(GenericSpecSchema)` to create a new message. - */ -export const GenericSpecSchema = /*@__PURE__*/ - messageDesc(file_anduril_taskmanager_v1_generic_spec_pub, 0); -