@voxket-ai/voxket-live 1.0.61 → 1.0.62

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.
@@ -1,6 +1,11 @@
1
- import { default as React, ReactNode } from 'react';
1
+ import { ReactNode } from '../../node_modules/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';
4
9
  export interface VoxketContextValue {
5
10
  client: VoxketClient | null;
6
11
  isConnected: boolean;
@@ -1,4 +1,4 @@
1
- import { ReactNode } from 'react';
1
+ import { ReactNode } from '../../node_modules/react';
2
2
  export interface VoxketTheme {
3
3
  name: string;
4
4
  colors: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voxket-ai/voxket-live",
3
- "version": "1.0.61",
3
+ "version": "1.0.62",
4
4
  "description": "A React widget for embedding Voxket-powered audio/video/chat experiences.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",