@vkontakte/calls-sdk 2.4.4-beta.26 → 2.4.4-beta.27

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.4.4-beta.26",
3
+ "version": "2.4.4-beta.27",
4
4
  "author": "vk.com",
5
5
  "description": "Library for video calls based on the vk.com platform",
6
6
  "homepage": "https://vk.com",
@@ -28,7 +28,7 @@ export declare type ParamsObject = {
28
28
  * API ключ приложения
29
29
  */
30
30
  apiKey: string;
31
- apiEnv?: 'PROD' | 'TEST' | 'VIDEOTEST' | 'DEV';
31
+ apiEnv?: 'AUTO' | 'PROD' | 'TEST' | 'VIDEOTEST' | string;
32
32
  apiAuth?: typeof AuthData;
33
33
  /**
34
34
  * Токен авторизации
@@ -427,10 +427,8 @@ export default abstract class Params {
427
427
  static get device(): string;
428
428
  static get apiAppId(): number;
429
429
  static get apiKey(): string;
430
- static get apiEnv(): {
431
- api: string;
432
- connect: string;
433
- };
430
+ static get apiEnv(): string;
431
+ static get apiEndpoint(): string;
434
432
  static get authToken(): string;
435
433
  static set authToken(value: string);
436
434
  static get anonymToken(): string;