@opentok/client 2.35.0-alpha.25 → 2.35.0-alpha.26

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.
@@ -122,6 +122,16 @@ declare namespace OT {
122
122
  };
123
123
 
124
124
  export type VideoContentHint = "text" | "detail" | "motion" | "";
125
+ export type ScalabilityMode =
126
+ | 'L1T1'
127
+ | 'L1T2'
128
+ | 'L1T3'
129
+ | 'L2T1'
130
+ | 'L2T2'
131
+ | 'L2T3'
132
+ | 'L3T1'
133
+ | 'L3T2'
134
+ | 'L3T3';
125
135
 
126
136
  export type BackgroundBlurFilter = {
127
137
  type: 'backgroundBlur';
@@ -460,6 +470,8 @@ declare namespace OT {
460
470
  setVideoSource(videoSourceId: string): Promise<undefined>;
461
471
  getVideoContentHint(): VideoContentHint;
462
472
  setVideoContentHint(hint: VideoContentHint): void;
473
+ setTargetScalabilityMode(scalabilityMode: ScalabilityMode): void;
474
+ getTargetScalabilityMode(): ScalabilityMode | undefined;
463
475
  getVideoSource(): {deviceId: string | null, type: string | null, track: MediaStreamTrack | null};
464
476
  setStyle<Style extends keyof PublisherStyle>(style: Style, value: PublisherStyle[Style]): void;
465
477
  setStyle(styles: Partial<PublisherStyle>): void;