@voxket-ai/voxket-live 1.1.28 → 1.1.29
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/common/common-popup-trigger.d.ts +4 -0
- package/dist/components/widget.d.ts +1 -0
- package/dist/index.cjs +39 -39
- package/dist/index.js +3116 -3113
- package/dist/shopify-entry.d.ts +1 -0
- package/package.json +1 -1
|
@@ -15,6 +15,10 @@ export interface CommonPopupTriggerProps {
|
|
|
15
15
|
* When true, show a subtle pulsing ring to indicate an active running session.
|
|
16
16
|
*/
|
|
17
17
|
isRunning?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Custom logo URL. If not provided, defaults to /logo.png
|
|
20
|
+
*/
|
|
21
|
+
logoUrl?: string;
|
|
18
22
|
}
|
|
19
23
|
/**
|
|
20
24
|
* CommonPopupTrigger
|
|
@@ -35,6 +35,7 @@ export interface VoxketWidgetProps {
|
|
|
35
35
|
voxketClient?: VoxketClient;
|
|
36
36
|
participantMetadata?: Record<string, any>;
|
|
37
37
|
popupModalityMode?: 'all' | 'voice' | 'chat' | 'video';
|
|
38
|
+
popupTriggerLogoUrl?: string;
|
|
38
39
|
}
|
|
39
40
|
declare function WrappedWidget(props: VoxketWidgetProps & {
|
|
40
41
|
prompts?: string[];
|