@elevenlabs/convai-widget-core 0.0.10 → 0.0.12
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/components/Icon.d.ts +2 -0
- package/dist/index.js +1011 -960
- package/dist/types/config.d.ts +2 -1
- package/package.json +2 -2
package/dist/types/config.d.ts
CHANGED
|
@@ -45,6 +45,7 @@ export declare const DefaultTextContents: {
|
|
|
45
45
|
main_label: string;
|
|
46
46
|
start_call: string;
|
|
47
47
|
start_chat: string;
|
|
48
|
+
send_message: string;
|
|
48
49
|
new_call: string;
|
|
49
50
|
end_call: string;
|
|
50
51
|
mute_microphone: string;
|
|
@@ -95,4 +96,4 @@ export declare const DefaultStyles: {
|
|
|
95
96
|
export declare const StyleKeys: (keyof typeof DefaultStyles)[];
|
|
96
97
|
export type Styles = typeof DefaultStyles;
|
|
97
98
|
export declare function parseLocation(location?: string): Location;
|
|
98
|
-
export type Location = "us" | "global" | "eu-residency";
|
|
99
|
+
export type Location = "us" | "global" | "eu-residency" | "in-residency";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevenlabs/convai-widget-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.12",
|
|
4
4
|
"description": "The common library for the Conversational AI Widget.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"clsx": "^2.1.1",
|
|
32
32
|
"preact": "^10.26.5",
|
|
33
33
|
"preact-custom-element": "^4.3.0",
|
|
34
|
-
"@elevenlabs/client": "0.1
|
|
34
|
+
"@elevenlabs/client": "0.2.1"
|
|
35
35
|
},
|
|
36
36
|
"repository": {
|
|
37
37
|
"type": "git",
|