@vanira/sdk 0.0.87 → 0.0.90
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/headless/index.cjs +211 -113
- package/dist/headless/index.js +17208 -13024
- package/dist/index.d.ts +4 -0
- package/dist/platforms/browser.cjs +9 -9
- package/dist/platforms/browser.js +717 -705
- package/dist/platforms/react-native.cjs +2 -2
- package/dist/platforms/react-native.js +423 -411
- package/dist/vanira-sdk.es.js +17605 -13410
- package/dist/vanira-sdk.js +243 -145
- package/dist/vanira-sdk.umd.js +252 -154
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -18,6 +18,9 @@ export interface VaniraClientConfig {
|
|
|
18
18
|
callId?: string;
|
|
19
19
|
iceServers?: RTCIceServer[];
|
|
20
20
|
prospectId?: string;
|
|
21
|
+
prospectName?: string;
|
|
22
|
+
welcomeMessage?: string;
|
|
23
|
+
extraDetails?: Record<string, unknown>;
|
|
21
24
|
sessionBehavior?: 'continue' | 'new';
|
|
22
25
|
runtime?: unknown;
|
|
23
26
|
liveVision?: Record<string, unknown>;
|
|
@@ -217,6 +220,7 @@ export interface VaniraCallBoxProps {
|
|
|
217
220
|
callId?: string;
|
|
218
221
|
serverUrl?: string;
|
|
219
222
|
prospectName?: string;
|
|
223
|
+
welcomeMessage?: string;
|
|
220
224
|
extraDetails?: Record<string, unknown>;
|
|
221
225
|
iceServers?: RTCIceServer[];
|
|
222
226
|
autoStart?: boolean;
|