@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.
Files changed (36) hide show
  1. package/dist/components/compound/session-content.d.ts +1 -1
  2. package/dist/components/compound/session-controls.d.ts +1 -1
  3. package/dist/components/compound/session-footer.d.ts +1 -1
  4. package/dist/components/compound/types.d.ts +1 -1
  5. package/dist/components/compound/voxket-session.d.ts +1 -1
  6. package/dist/components/livekit/agent-control-bar/agent-control-bar.d.ts +1 -1
  7. package/dist/components/livekit/agent-control-bar/hooks/use-agent-control-bar.d.ts +2 -2
  8. package/dist/components/livekit/agent-tile.d.ts +1 -1
  9. package/dist/components/livekit/avatar-tile.d.ts +1 -1
  10. package/dist/components/livekit/chat/chat-entry.d.ts +1 -1
  11. package/dist/components/livekit/chat/chat-message-view.d.ts +1 -1
  12. package/dist/components/livekit/chat/hooks/utils.d.ts +1 -1
  13. package/dist/components/livekit/device-select.d.ts +1 -1
  14. package/dist/components/livekit/media-tiles.d.ts +2 -2
  15. package/dist/components/livekit/track-toggle.d.ts +1 -1
  16. package/dist/components/livekit/video-tile.d.ts +1 -1
  17. package/dist/components/session-view.d.ts +1 -1
  18. package/dist/core/client.d.ts +5 -5
  19. package/dist/core/rpc-manager.d.ts +1 -1
  20. package/dist/hooks/sdk/use-chat.d.ts +1 -1
  21. package/dist/hooks/useChatAndTranscription.d.ts +2 -2
  22. package/dist/hooks/useDebug.d.ts +1 -1
  23. package/dist/hooks/useSessionLogging.d.ts +1 -1
  24. package/dist/hooks/useVoxketClient.d.ts +3 -3
  25. package/dist/index.cjs +17 -165
  26. package/dist/index.css +1 -1
  27. package/dist/index.d.ts +0 -1
  28. package/dist/index.js +7396 -15177
  29. package/dist/lib/types.d.ts +1 -1
  30. package/dist/lib/utils.d.ts +2 -2
  31. package/dist/providers/voxket-provider.d.ts +1 -6
  32. package/dist/themes/theme-system.d.ts +1 -1
  33. package/dist/types/core.d.ts +1 -1
  34. package/package.json +3 -8
  35. package/dist/components/scoped-widget-wrapper.d.ts +0 -0
  36. package/dist/lib/react-utils.d.ts +0 -9
@@ -1,4 +1,4 @@
1
- import { TranscriptionSegment } from '../../node_modules/livekit-client';
1
+ import { TranscriptionSegment } from 'livekit-client';
2
2
  export interface CombinedTranscription extends TranscriptionSegment {
3
3
  role: 'assistant' | 'user';
4
4
  receivedAtMediaTimestamp: number;
@@ -1,6 +1,6 @@
1
1
  import { ClassValue } from 'clsx';
2
- import { Room } from '../../node_modules/livekit-client';
3
- import { ReceivedChatMessage, TextStreamData } from '../../node_modules/@livekit/components-react';
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 '../../node_modules/react';
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;
@@ -1,4 +1,4 @@
1
- import { ReactNode } from '../../node_modules/react';
1
+ import { ReactNode } from 'react';
2
2
  export interface VoxketTheme {
3
3
  name: string;
4
4
  colors: {
@@ -1,4 +1,4 @@
1
- import { Room, RemoteParticipant, LocalParticipant, ConnectionState } from '../../node_modules/livekit-client';
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.72",
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>;