@pagelines/sdk 1.0.763 → 1.0.764

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.
@@ -77,7 +77,8 @@ export declare function getDemoAgentByHandle(handle: string): Partial<{
77
77
  handle: string;
78
78
  }[] | null | undefined;
79
79
  model?: string | null | undefined;
80
- voice?: "woman" | "man" | null | undefined;
80
+ gender?: "woman" | "man" | undefined;
81
+ voiceKey?: "warm" | "natural" | "bright" | "gentle" | "grounded" | "relaxed" | "thoughtful" | "articulate" | "easygoing" | null | undefined;
81
82
  billingTier?: "essential" | "professional" | "business" | undefined;
82
83
  lastActiveAt?: string | null | undefined;
83
84
  lastMessageAt?: string | null | undefined;
package/dist/provider2.js CHANGED
@@ -16414,6 +16414,7 @@ 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 } },
16417
16418
  onDisconnect: () => {
16418
16419
  this.closing || this.handlers?.onDisconnected();
16419
16420
  },