diff --git a/.changeset/export-agent-simulation-proto.md b/.changeset/export-agent-simulation-proto.md new file mode 100644 index 000000000..29b8ea39e --- /dev/null +++ b/.changeset/export-agent-simulation-proto.md @@ -0,0 +1,5 @@ +--- +"@livekit/protocol": patch +--- + +Export the agent simulation protos (Scenario, SimulationDispatch, SimulationMode, SimulationRun, ...) from the JS package root diff --git a/packages/javascript/src/index.d.ts b/packages/javascript/src/index.d.ts index 049a715b9..150b0958a 100644 --- a/packages/javascript/src/index.d.ts +++ b/packages/javascript/src/index.d.ts @@ -6,6 +6,7 @@ export * as AgentText from "./gen/agent/livekit_agent_text_pb.js"; export * as AgentDev from "./gen/agent/livekit_agent_dev_pb.js"; export * from "./gen/livekit_agent_dispatch_pb.js"; export * from "./gen/livekit_agent_pb.js"; +export * from "./gen/livekit_agent_simulation_pb.js"; export * from "./gen/livekit_analytics_pb.js"; export * from "./gen/livekit_connector_pb.js"; export * from "./gen/livekit_connector_twilio_pb.js"; diff --git a/packages/javascript/src/index.js b/packages/javascript/src/index.js index 59e87f445..d1c654f8c 100644 --- a/packages/javascript/src/index.js +++ b/packages/javascript/src/index.js @@ -7,6 +7,7 @@ export * as AgentText from "./gen/agent/livekit_agent_text_pb.js"; export * as AgentDev from "./gen/agent/livekit_agent_dev_pb.js"; export * from "./gen/livekit_agent_dispatch_pb.js"; export * from "./gen/livekit_agent_pb.js"; +export * from "./gen/livekit_agent_simulation_pb.js"; export * from "./gen/livekit_analytics_pb.js"; export * from "./gen/livekit_connector_pb.js"; export * from "./gen/livekit_connector_twilio_pb.js";