@tmsoft/webphone 1.1.20 → 1.1.22
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/index.d.ts +5 -0
- package/dist/webphone-element.umd.js +76 -1757
- package/dist/webphone.cjs.js +65 -65
- package/dist/webphone.es.js +5943 -5140
- package/dist/webphone.umd.js +65 -65
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -48,6 +48,11 @@ declare interface WebphoneProps {
|
|
|
48
48
|
image?: string;
|
|
49
49
|
to?: string;
|
|
50
50
|
callback?: (event: MouseEvent) => void;
|
|
51
|
+
/**
|
|
52
|
+
* (Opcional) Habilita la vista de múltiples canales de llamada
|
|
53
|
+
* Si es false o no se especifica, usa la vista de canal único tradicional
|
|
54
|
+
*/
|
|
55
|
+
multiChannel?: boolean;
|
|
51
56
|
/**
|
|
52
57
|
* (Opcional) Endpoint backend que devuelve el token efímero para OpenAI Realtime.
|
|
53
58
|
* Si se provee, se asigna a window.__WEBPHONE_TRANSCRIPTION_TOKEN_URL__ automáticamente.
|