@voxket-ai/voxket-live 1.1.113 → 1.1.114

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.
@@ -73,17 +73,6 @@ export declare class VoxketClient extends VoxketEventEmitter<VoxketEvents & RpcE
73
73
  metadata?: Record<string, any>;
74
74
  participantMetadata?: Record<string, any>;
75
75
  }): Promise<VoxketSession>;
76
- /**
77
- * Check microphone permission state without triggering the browser prompt.
78
- * Returns 'granted', 'denied', or 'prompt'.
79
- */
80
- checkMicrophonePermission(): Promise<'granted' | 'denied' | 'prompt'>;
81
- /**
82
- * Request microphone permission proactively (before session start).
83
- * MUST be called from a user-gesture (click handler) to re-trigger after denial.
84
- * Returns 'granted' or 'denied'.
85
- */
86
- requestMicrophonePermission(): Promise<'granted' | 'denied'>;
87
76
  endSession(): Promise<SessionMetrics | null>;
88
77
  getCurrentSession(): VoxketSession | null;
89
78
  getSessionMetrics(): SessionMetrics | null;
@@ -28,19 +28,6 @@ export declare class MediaManager {
28
28
  * Ensure AudioContext is running (call before any audio operations)
29
29
  */
30
30
  ensureAudioContextRunning(): Promise<void>;
31
- /**
32
- * Check microphone permission state WITHOUT triggering browser prompt.
33
- * Uses the Permissions API to query the current state.
34
- * Returns 'granted', 'denied', or 'prompt'.
35
- */
36
- checkMicrophonePermission(): Promise<'granted' | 'denied' | 'prompt'>;
37
- /**
38
- * Request microphone permission by calling getUserMedia.
39
- * MUST be called from a user-gesture (click handler) to re-trigger
40
- * the browser permission popup even after a previous denial.
41
- * Returns 'granted' or 'denied'.
42
- */
43
- requestMicrophonePermission(): Promise<'granted' | 'denied'>;
44
31
  /**
45
32
  * Set the room instance for media management
46
33
  */