@vanira/sdk 0.0.39 → 0.0.40

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.
@@ -43,5 +43,4 @@ export declare class VoiceOverlay {
43
43
  private startTimer;
44
44
  private stopTimer;
45
45
  setFullScreen(enable: boolean): void;
46
- onResumeDOM(): void;
47
46
  }
@@ -1,12 +1,10 @@
1
1
  import { IWidgetProvider } from '../abstraction/interfaces';
2
2
 
3
3
  export declare class WidgetProviderFactory {
4
- private static activeProviders;
5
4
  /**
6
5
  * Factory Method to create the appropriate Widget Provider.
7
6
  * Implements the Factory Pattern to decouple creation logic.
8
7
  * Trade-off: Currently hardcoded to VaniraInternalProvider, but extensible for other providers.
9
8
  */
10
9
  static getProvider(config: any): IWidgetProvider;
11
- static removeProvider(key: string): void;
12
10
  }
@@ -15,5 +15,4 @@ export declare abstract class AbstractVoiceView {
15
15
  setStatus(status: 'connecting' | 'connected' | 'disconnected' | 'error', errorMsg?: string): void;
16
16
  setTranscription(text: string, isFinal: boolean): void;
17
17
  setVideoTrack(track: MediaStreamTrack): void;
18
- onResumeDOM(): void;
19
18
  }