@voxket-ai/voxket-live 1.0.72 → 1.0.74
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/compound/session-content.d.ts +1 -1
- package/dist/components/compound/session-controls.d.ts +1 -1
- package/dist/components/compound/session-footer.d.ts +1 -1
- package/dist/components/compound/types.d.ts +1 -1
- package/dist/components/compound/voxket-session.d.ts +1 -1
- package/dist/components/livekit/agent-control-bar/agent-control-bar.d.ts +1 -1
- package/dist/components/livekit/agent-control-bar/hooks/use-agent-control-bar.d.ts +2 -2
- package/dist/components/livekit/agent-tile.d.ts +1 -1
- package/dist/components/livekit/avatar-tile.d.ts +1 -1
- package/dist/components/livekit/chat/chat-entry.d.ts +1 -1
- package/dist/components/livekit/chat/chat-message-view.d.ts +1 -1
- package/dist/components/livekit/chat/hooks/utils.d.ts +1 -1
- package/dist/components/livekit/device-select.d.ts +1 -1
- package/dist/components/livekit/media-tiles.d.ts +2 -2
- package/dist/components/livekit/track-toggle.d.ts +1 -1
- package/dist/components/livekit/video-tile.d.ts +1 -1
- package/dist/components/session-view.d.ts +1 -1
- package/dist/core/client.d.ts +5 -5
- package/dist/core/rpc-manager.d.ts +1 -1
- package/dist/hooks/sdk/use-chat.d.ts +1 -1
- package/dist/hooks/useChatAndTranscription.d.ts +2 -2
- package/dist/hooks/useDebug.d.ts +1 -1
- package/dist/hooks/useSessionLogging.d.ts +1 -1
- package/dist/hooks/useVoxketClient.d.ts +3 -3
- package/dist/index.cjs +17 -165
- package/dist/index.css +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +7396 -15177
- package/dist/lib/types.d.ts +1 -1
- package/dist/lib/utils.d.ts +2 -2
- package/dist/providers/voxket-provider.d.ts +1 -6
- package/dist/themes/theme-system.d.ts +1 -1
- package/dist/types/core.d.ts +1 -1
- package/package.json +3 -8
- package/dist/components/scoped-widget-wrapper.d.ts +0 -0
- package/dist/lib/react-utils.d.ts +0 -9
package/dist/lib/types.d.ts
CHANGED
package/dist/lib/utils.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ClassValue } from 'clsx';
|
|
2
|
-
import { Room } from '
|
|
3
|
-
import { ReceivedChatMessage, TextStreamData } from '
|
|
2
|
+
import { Room } from 'livekit-client';
|
|
3
|
+
import { ReceivedChatMessage, TextStreamData } from '@livekit/components-react';
|
|
4
4
|
export declare const THEME_STORAGE_KEY = "theme-mode";
|
|
5
5
|
export declare const THEME_MEDIA_QUERY = "(prefers-color-scheme: dark)";
|
|
6
6
|
export declare function cn(...inputs: ClassValue[]): string;
|
|
@@ -1,11 +1,6 @@
|
|
|
1
|
-
import { ReactNode } from '
|
|
1
|
+
import { default as React, ReactNode } from 'react';
|
|
2
2
|
import { VoxketClient } from '../core/client';
|
|
3
3
|
import { VoxketConfig, VoxketSession, SessionState, SessionMetrics, VoxketError, ParticipantInfo, ChatMessage, TranscriptionSegment } from '../types/core';
|
|
4
|
-
/**
|
|
5
|
-
* Voxket React Provider
|
|
6
|
-
* Provides VoxketClient instance and state management for React applications
|
|
7
|
-
*/
|
|
8
|
-
import * as React from 'react';
|
|
9
4
|
export interface VoxketContextValue {
|
|
10
5
|
client: VoxketClient | null;
|
|
11
6
|
isConnected: boolean;
|
package/dist/types/core.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Room, RemoteParticipant, LocalParticipant, ConnectionState } from '
|
|
1
|
+
import { Room, RemoteParticipant, LocalParticipant, ConnectionState } from 'livekit-client';
|
|
2
2
|
import { VideoTrack } from './video';
|
|
3
3
|
export interface VoxketConfig {
|
|
4
4
|
/** Your Voxket App ID */
|
package/package.json
CHANGED
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voxket-ai/voxket-live",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.74",
|
|
4
4
|
"description": "A React widget for embedding Voxket-powered audio/video/chat experiences.",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"sideEffects": [
|
|
7
|
-
"*.css",
|
|
8
|
-
"src/index.css",
|
|
9
|
-
"src/styles/**/*"
|
|
10
|
-
],
|
|
11
6
|
"main": "./dist/index.cjs",
|
|
12
7
|
"module": "./dist/index.js",
|
|
13
8
|
"types": "./dist/index.d.ts",
|
|
@@ -20,9 +15,9 @@
|
|
|
20
15
|
},
|
|
21
16
|
"exports": {
|
|
22
17
|
".": {
|
|
23
|
-
"types": "./dist/index.d.ts",
|
|
24
18
|
"import": "./dist/index.js",
|
|
25
|
-
"require": "./dist/index.cjs"
|
|
19
|
+
"require": "./dist/index.cjs",
|
|
20
|
+
"types": "./dist/index.d.ts"
|
|
26
21
|
}
|
|
27
22
|
},
|
|
28
23
|
"publishConfig": {
|
|
File without changes
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Utility functions to help prevent React conflicts
|
|
3
|
-
*/
|
|
4
|
-
export declare function checkReactVersion(): {
|
|
5
|
-
isCompatible: boolean;
|
|
6
|
-
version?: string;
|
|
7
|
-
warnings: string[];
|
|
8
|
-
};
|
|
9
|
-
export declare function createVoxketWithCheck<T>(component: React.ComponentType<T>, onError?: (error: Error, warnings: string[]) => void): React.ComponentType<T>;
|