@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/calls-sdk.cjs.js +8 -8
- package/calls-sdk.esm.js +8 -8
- package/package.json +1 -1
- package/static/Params.d.ts +3 -5
package/package.json
CHANGED
package/static/Params.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export declare type ParamsObject = {
|
|
|
28
28
|
* API ключ приложения
|
|
29
29
|
*/
|
|
30
30
|
apiKey: string;
|
|
31
|
-
apiEnv?: 'PROD' | 'TEST' | 'VIDEOTEST' |
|
|
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
|
-
|
|
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;
|