@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.
@@ -68,7 +68,8 @@ declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {
68
68
  handle: string;
69
69
  }[] | null | undefined;
70
70
  model?: string | null | undefined;
71
- voice?: "woman" | "man" | null | undefined;
71
+ gender?: "woman" | "man" | undefined;
72
+ voiceKey?: "warm" | "natural" | "bright" | "gentle" | "grounded" | "relaxed" | "thoughtful" | "articulate" | "easygoing" | null | undefined;
72
73
  billingTier?: "essential" | "professional" | "business" | undefined;
73
74
  lastActiveAt?: string | null | undefined;
74
75
  lastMessageAt?: string | null | undefined;
@@ -205,7 +206,8 @@ declare const __VLS_export: import('vue').DefineComponent<__VLS_Props, {}, {}, {
205
206
  handle: string;
206
207
  }[] | null | undefined;
207
208
  model?: string | null | undefined;
208
- voice?: "woman" | "man" | null | undefined;
209
+ gender?: "woman" | "man" | undefined;
210
+ voiceKey?: "warm" | "natural" | "bright" | "gentle" | "grounded" | "relaxed" | "thoughtful" | "articulate" | "easygoing" | null | undefined;
209
211
  billingTier?: "essential" | "professional" | "business" | undefined;
210
212
  lastActiveAt?: string | null | undefined;
211
213
  lastMessageAt?: string | null | undefined;
@@ -13,6 +13,11 @@ interface ElevenLabsConversation {
13
13
  type StartSession = (options: {
14
14
  conversationToken: string;
15
15
  connectionType: 'webrtc';
16
+ overrides?: {
17
+ tts?: {
18
+ voiceId?: string;
19
+ };
20
+ };
16
21
  onDisconnect: () => void;
17
22
  onError: (message: string) => void;
18
23
  }) => Promise<ElevenLabsConversation>;