From c27320d0f449ae44d3598e271c74c7307ae3fae6 Mon Sep 17 00:00:00 2001 From: u9g Date: Mon, 20 Jul 2026 15:38:05 -0400 Subject: [PATCH 1/2] js: export the agent simulation protos from the package root (#1674) --- .changeset/export-agent-simulation-proto.md | 5 +++++ packages/javascript/src/index.d.ts | 1 + packages/javascript/src/index.js | 1 + 3 files changed, 7 insertions(+) create mode 100644 .changeset/export-agent-simulation-proto.md 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"; From 13dfe96ce5df924f9edf2255a849ccdb6b71dbfc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 15:45:27 -0400 Subject: [PATCH 2/2] Version Packages (#1675) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/export-agent-simulation-proto.md | 5 ----- CHANGELOG.md | 2 ++ package.json | 2 +- packages/javascript/CHANGELOG.md | 6 ++++++ packages/javascript/package.json | 2 +- 5 files changed, 10 insertions(+), 7 deletions(-) delete mode 100644 .changeset/export-agent-simulation-proto.md diff --git a/.changeset/export-agent-simulation-proto.md b/.changeset/export-agent-simulation-proto.md deleted file mode 100644 index 29b8ea39e..000000000 --- a/.changeset/export-agent-simulation-proto.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/protocol": patch ---- - -Export the agent simulation protos (Scenario, SimulationDispatch, SimulationMode, SimulationRun, ...) from the JS package root diff --git a/CHANGELOG.md b/CHANGELOG.md index 1329dc02b..0ef96a78a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # github.com/livekit/protocol +## 1.50.2 + ## 1.50.1 ### Patch Changes diff --git a/package.json b/package.json index 7c7a080bc..72182b1fb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "github.com/livekit/protocol", "private": true, - "version": "1.50.1", + "version": "1.50.2", "scripts": { "changeset": "changeset", "ci:publish": "pnpm --filter @livekit/protocol run build && changeset publish" diff --git a/packages/javascript/CHANGELOG.md b/packages/javascript/CHANGELOG.md index e4c0edf90..c220aed4b 100644 --- a/packages/javascript/CHANGELOG.md +++ b/packages/javascript/CHANGELOG.md @@ -1,5 +1,11 @@ # @livekit/protocol +## 1.50.2 + +### Patch Changes + +- Export the agent simulation protos (Scenario, SimulationDispatch, SimulationMode, SimulationRun, ...) from the JS package root - [#1674](https://github.com/livekit/protocol/pull/1674) ([@u9g](https://github.com/u9g)) + ## 1.50.1 ### Patch Changes diff --git a/packages/javascript/package.json b/packages/javascript/package.json index 6c0992412..153b1c82b 100644 --- a/packages/javascript/package.json +++ b/packages/javascript/package.json @@ -1,6 +1,6 @@ { "name": "@livekit/protocol", - "version": "1.50.1", + "version": "1.50.2", "description": "", "type": "module", "require": "dist/index.cjs",