@vkontakte/calls-sdk 2.6.3-beta.1 → 2.6.3-beta.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vkontakte/calls-sdk",
3
- "version": "2.6.3-beta.1",
3
+ "version": "2.6.3-beta.2",
4
4
  "author": "vk.com",
5
5
  "description": "Library for video calls based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -119,6 +119,12 @@ export declare type ParamsObject = {
119
119
  * _По умолчанию: `15`_
120
120
  */
121
121
  screenFrameRate: number;
122
+ /**
123
+ * Вариант захвата экрана. Поддерживается в Chrome 107+
124
+ * @see https://developer.chrome.com/docs/web-platform/screen-sharing-controls/
125
+ * @hidden
126
+ */
127
+ displaySurface: DisplayCaptureSurfaceType;
122
128
  /**
123
129
  * Экземпляр класса `VideoEffects` из `@vkontakte/calls-video-effects`
124
130
  *
@@ -650,6 +656,7 @@ export default abstract class Params {
650
656
  static get videoFrameRate(): number;
651
657
  static get videoFacingMode(): FacingMode;
652
658
  static get screenFrameRate(): number;
659
+ static get displaySurface(): DisplayCaptureSurfaceType;
653
660
  static get videoEffects(): VideoEffects | null;
654
661
  static set videoEffects(value: VideoEffects | null);
655
662
  static get videoEffectMaxWidth(): number;