// @generated by protoc-gen-es v1.10.1 with parameter "target=dts+js" // @generated from file agent/livekit_agent_dev.proto (package livekit.agent, syntax proto3) /* eslint-disable */ // @ts-nocheck import type { BinaryReadOptions, FieldList, JsonReadOptions, JsonValue, PartialMessage, PlainMessage } from "@bufbuild/protobuf"; import { Message, proto3 } from "@bufbuild/protobuf"; /** * AgentDevMessage is used for IPC between the CLI and agent processes * during dev-mode hot reload. * * @generated from message livekit.agent.AgentDevMessage */ export declare class AgentDevMessage extends Message { /** * @generated from oneof livekit.agent.AgentDevMessage.message */ message: { /** * @generated from field: livekit.agent.GetRunningAgentJobsRequest get_running_jobs_request = 1; */ value: GetRunningAgentJobsRequest; case: "getRunningJobsRequest"; } | { /** * @generated from field: livekit.agent.GetRunningAgentJobsResponse get_running_jobs_response = 2; */ value: GetRunningAgentJobsResponse; case: "getRunningJobsResponse"; } | { case: undefined; value?: undefined }; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "livekit.agent.AgentDevMessage"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): AgentDevMessage; static fromJson(jsonValue: JsonValue, options?: Partial): AgentDevMessage; static fromJsonString(jsonString: string, options?: Partial): AgentDevMessage; static equals(a: AgentDevMessage | PlainMessage | undefined, b: AgentDevMessage | PlainMessage | undefined): boolean; } /** * @generated from message livekit.agent.GetRunningAgentJobsRequest */ export declare class GetRunningAgentJobsRequest extends Message { constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "livekit.agent.GetRunningAgentJobsRequest"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRunningAgentJobsRequest; static fromJson(jsonValue: JsonValue, options?: Partial): GetRunningAgentJobsRequest; static fromJsonString(jsonString: string, options?: Partial): GetRunningAgentJobsRequest; static equals(a: GetRunningAgentJobsRequest | PlainMessage | undefined, b: GetRunningAgentJobsRequest | PlainMessage | undefined): boolean; } /** * @generated from message livekit.agent.GetRunningAgentJobsResponse */ export declare class GetRunningAgentJobsResponse extends Message { /** * @generated from field: repeated livekit.agent.RunningAgentJobInfo jobs = 1; */ jobs: RunningAgentJobInfo[]; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "livekit.agent.GetRunningAgentJobsResponse"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): GetRunningAgentJobsResponse; static fromJson(jsonValue: JsonValue, options?: Partial): GetRunningAgentJobsResponse; static fromJsonString(jsonString: string, options?: Partial): GetRunningAgentJobsResponse; static equals(a: GetRunningAgentJobsResponse | PlainMessage | undefined, b: GetRunningAgentJobsResponse | PlainMessage | undefined): boolean; } /** * @generated from message livekit.agent.RunningAgentJobInfo */ export declare class RunningAgentJobInfo extends Message { /** * @generated from field: bytes job = 1; */ job: Uint8Array; /** * @generated from field: string accept_name = 2; */ acceptName: string; /** * @generated from field: string accept_identity = 3; */ acceptIdentity: string; /** * @generated from field: string accept_metadata = 4; */ acceptMetadata: string; /** * @generated from field: string url = 5; */ url: string; /** * @generated from field: string token = 6; */ token: string; /** * @generated from field: string worker_id = 7; */ workerId: string; /** * @generated from field: bool mock_job = 8; */ mockJob: boolean; constructor(data?: PartialMessage); static readonly runtime: typeof proto3; static readonly typeName = "livekit.agent.RunningAgentJobInfo"; static readonly fields: FieldList; static fromBinary(bytes: Uint8Array, options?: Partial): RunningAgentJobInfo; static fromJson(jsonValue: JsonValue, options?: Partial): RunningAgentJobInfo; static fromJsonString(jsonString: string, options?: Partial): RunningAgentJobInfo; static equals(a: RunningAgentJobInfo | PlainMessage | undefined, b: RunningAgentJobInfo | PlainMessage | undefined): boolean; }