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", 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";