@pagelines/sdk 1.0.764 → 1.0.765

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,6 +13,14 @@ interface ElevenLabsConversation {
13
13
  type StartSession = (options: {
14
14
  conversationToken: string;
15
15
  connectionType: 'webrtc';
16
+ /**
17
+ * Per-conversation voice. NOT sent today: an agent that does not permit
18
+ * overrides REJECTS the session outright rather than ignoring the field, so
19
+ * sending it broke every call in production on 2026-08-03. Restore the
20
+ * `overrides` argument below only once both base agents have override
21
+ * permissions enabled in the ElevenLabs dashboard — the mint already
22
+ * resolves and ships the right voice id.
23
+ */
16
24
  overrides?: {
17
25
  tts?: {
18
26
  voiceId?: string;
package/dist/provider2.js CHANGED
@@ -16414,7 +16414,6 @@ var ElevenLabsVoiceProvider = class {
16414
16414
  this.conversation = await this.startSession({
16415
16415
  conversationToken: this.mint.conversationToken,
16416
16416
  connectionType: "webrtc",
16417
- overrides: { tts: { voiceId: this.mint.voiceId } },
16418
16417
  onDisconnect: () => {
16419
16418
  this.closing || this.handlers?.onDisconnected();
16420
16419
  },