@voxket-ai/voxket-live 1.0.18 → 1.0.20
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/widget.d.ts +2 -2
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export interface
|
|
1
|
+
export interface VoxketWidgetProps {
|
|
2
2
|
agentId: string;
|
|
3
3
|
participantName?: string;
|
|
4
4
|
baseUrl: string;
|
|
@@ -16,7 +16,7 @@ export interface WidgetProps {
|
|
|
16
16
|
suportsVideoInput?: boolean;
|
|
17
17
|
suportsScreenShare?: boolean;
|
|
18
18
|
}
|
|
19
|
-
export default function Widget(props:
|
|
19
|
+
export default function Widget(props: VoxketWidgetProps & {
|
|
20
20
|
prompts?: string[];
|
|
21
21
|
statusMessage?: string;
|
|
22
22
|
welcomeTitle?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
declare const VoxketWidget: React.FC<
|
|
4
|
-
export type {
|
|
2
|
+
import { VoxketWidgetProps } from './components/widget';
|
|
3
|
+
declare const VoxketWidget: React.FC<VoxketWidgetProps>;
|
|
4
|
+
export type { VoxketWidgetProps };
|
|
5
5
|
export default VoxketWidget;
|