diff --git a/.changeset/add-participant-kind-details.md b/.changeset/add-participant-kind-details.md deleted file mode 100644 index 3f66feb9..00000000 --- a/.changeset/add-participant-kind-details.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@livekit/rtc-node': patch ---- - -Expose `kindDetails` on `Participant` and re-export the `ParticipantKindDetail` enum diff --git a/.changeset/agent-dispatch-connector-protocol-bump.md b/.changeset/agent-dispatch-connector-protocol-bump.md deleted file mode 100644 index b9143bdc..00000000 --- a/.changeset/agent-dispatch-connector-protocol-bump.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -'livekit-server-sdk': patch ---- - -Bump `@livekit/protocol` to `1.45.6` and surface new fields on the agent dispatch and connector clients: - -- `AgentDispatchClient.createDispatch`: new `restartPolicy` option (cloud only) -- `ConnectorClient.dialWhatsAppCall` / `acceptWhatsAppCall`: new `ringingTimeout` option (and `waitUntilAnswered` on accept) -- `ConnectorClient.disconnectWhatsAppCall`: new optional `disconnectReason` parameter -- Re-export `JobRestartPolicy` and `DisconnectWhatsAppCallRequest_DisconnectReason` diff --git a/.changeset/big-ghosts-impress.md b/.changeset/big-ghosts-impress.md deleted file mode 100644 index 4a30492e..00000000 --- a/.changeset/big-ghosts-impress.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/rtc-node": patch ---- - -feat: handle track republish diff --git a/.changeset/many-kings-divide.md b/.changeset/many-kings-divide.md deleted file mode 100644 index 96056add..00000000 --- a/.changeset/many-kings-divide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-server-sdk": patch ---- - -Add canManageAgentSession to VideoGrant diff --git a/.changeset/olive-clouds-taste.md b/.changeset/olive-clouds-taste.md deleted file mode 100644 index 562f50d7..00000000 --- a/.changeset/olive-clouds-taste.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@livekit/rtc-node": patch ---- - -feat: add support for SimulateScenario diff --git a/examples/agent-dispatch/CHANGELOG.md b/examples/agent-dispatch/CHANGELOG.md index 962129d7..3cb1a391 100644 --- a/examples/agent-dispatch/CHANGELOG.md +++ b/examples/agent-dispatch/CHANGELOG.md @@ -1,5 +1,12 @@ # agent-dispatch +## 0.0.27 + +### Patch Changes + +- Updated dependencies [[`f93752dfaba1b043bcf7a1b1faaa1c31bc277145`](https://github.com/livekit/node-sdks/commit/f93752dfaba1b043bcf7a1b1faaa1c31bc277145), [`6609ca9c0a98bc1231cdc7c1462c8b9ec9460048`](https://github.com/livekit/node-sdks/commit/6609ca9c0a98bc1231cdc7c1462c8b9ec9460048)]: + - livekit-server-sdk@2.15.3 + ## 0.0.26 ### Patch Changes diff --git a/examples/agent-dispatch/package.json b/examples/agent-dispatch/package.json index efc6a114..dc86b044 100644 --- a/examples/agent-dispatch/package.json +++ b/examples/agent-dispatch/package.json @@ -1,6 +1,6 @@ { "name": "agent-dispatch", - "version": "0.0.26", + "version": "0.0.27", "description": "An example demonstrating dispatching agents with an API call", "private": true, "author": "LiveKit", diff --git a/packages/livekit-rtc/CHANGELOG.md b/packages/livekit-rtc/CHANGELOG.md index 810bdd6a..c5283d82 100644 --- a/packages/livekit-rtc/CHANGELOG.md +++ b/packages/livekit-rtc/CHANGELOG.md @@ -1,5 +1,15 @@ # @livekit/rtc-node +## 0.13.28 + +### Patch Changes + +- Expose `kindDetails` on `Participant` and re-export the `ParticipantKindDetail` enum - [#657](https://github.com/livekit/node-sdks/pull/657) ([@anunaym14](https://github.com/anunaym14)) + +- feat: handle track republish - [#660](https://github.com/livekit/node-sdks/pull/660) ([@davidzhao](https://github.com/davidzhao)) + +- feat: add support for SimulateScenario - [#659](https://github.com/livekit/node-sdks/pull/659) ([@davidzhao](https://github.com/davidzhao)) + ## 0.13.27 ### Patch Changes diff --git a/packages/livekit-rtc/package.json b/packages/livekit-rtc/package.json index 933fbcd5..4a3cca00 100644 --- a/packages/livekit-rtc/package.json +++ b/packages/livekit-rtc/package.json @@ -3,7 +3,7 @@ "description": "LiveKit RTC Node", "license": "Apache-2.0", "author": "LiveKit", - "version": "0.13.27", + "version": "0.13.28", "main": "dist/index.js", "require": "dist/index.cjs", "types": "dist/index.d.ts", diff --git a/packages/livekit-server-sdk/CHANGELOG.md b/packages/livekit-server-sdk/CHANGELOG.md index 204c2c8f..e1747b02 100644 --- a/packages/livekit-server-sdk/CHANGELOG.md +++ b/packages/livekit-server-sdk/CHANGELOG.md @@ -1,5 +1,17 @@ # livekit-server-sdk +## 2.15.3 + +### Patch Changes + +- Bump `@livekit/protocol` to `1.45.6` and surface new fields on the agent dispatch and connector clients: - [#657](https://github.com/livekit/node-sdks/pull/657) ([@anunaym14](https://github.com/anunaym14)) + - `AgentDispatchClient.createDispatch`: new `restartPolicy` option (cloud only) + - `ConnectorClient.dialWhatsAppCall` / `acceptWhatsAppCall`: new `ringingTimeout` option (and `waitUntilAnswered` on accept) + - `ConnectorClient.disconnectWhatsAppCall`: new optional `disconnectReason` parameter + - Re-export `JobRestartPolicy` and `DisconnectWhatsAppCallRequest_DisconnectReason` + +- Add canManageAgentSession to VideoGrant - [#661](https://github.com/livekit/node-sdks/pull/661) ([@theomonnom](https://github.com/theomonnom)) + ## 2.15.2 ### Patch Changes diff --git a/packages/livekit-server-sdk/package.json b/packages/livekit-server-sdk/package.json index c78fbb20..7eaf44f1 100644 --- a/packages/livekit-server-sdk/package.json +++ b/packages/livekit-server-sdk/package.json @@ -1,6 +1,6 @@ { "name": "livekit-server-sdk", - "version": "2.15.2", + "version": "2.15.3", "description": "Server-side SDK for LiveKit", "main": "dist/index.js", "require": "dist/index.cjs",