@pagelines/sdk 1.0.762 → 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.
- package/dist/AgentWrap.js +3 -3
- package/dist/AgentWrap.js.map +1 -1
- package/dist/agent/ui/ElCreateAgent.vue.d.ts +4 -2
- package/dist/agent/voice/providers/elevenlabs/provider.d.ts +5 -0
- package/dist/contract.js +989 -913
- package/dist/contract.js.map +1 -1
- package/dist/demo/index.d.ts +2 -1
- package/dist/provider2.js +1 -0
- package/dist/provider2.js.map +1 -1
- package/dist/sdkClient.d.ts +6 -3
- package/dist/widget/composables/useWidgetState.d.ts +6 -3
- package/dist/widget.js +1 -1
- package/package.json +1 -1
package/dist/demo/index.d.ts
CHANGED
|
@@ -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
|
-
|
|
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
|
},
|