@vkontakte/calls-sdk 2.8.12-dev.d8ade7f9.0 → 2.8.12-dev.dd8ab07d.0
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 +9 -9
- package/calls-sdk.esm.js +2506 -2496
- package/package.json +1 -1
- package/static/External.d.ts +1 -1
- package/static/Params.d.ts +1 -1
package/package.json
CHANGED
package/static/External.d.ts
CHANGED
|
@@ -637,6 +637,6 @@ declare namespace External {
|
|
|
637
637
|
/**
|
|
638
638
|
* Собеседник подключился к сигналлингу
|
|
639
639
|
*/
|
|
640
|
-
function onPeerRegistered(conversationId?: string): void;
|
|
640
|
+
function onPeerRegistered(conversationId?: string, externalIds?: ExternalId[]): void;
|
|
641
641
|
}
|
|
642
642
|
export default External;
|
package/static/Params.d.ts
CHANGED
|
@@ -892,7 +892,7 @@ export type ParamsObject = {
|
|
|
892
892
|
/**
|
|
893
893
|
* Собеседник подключился к сигналлингу
|
|
894
894
|
*/
|
|
895
|
-
onPeerRegistered?: (conversationId?: string) => void;
|
|
895
|
+
onPeerRegistered?: (conversationId?: string, externalIds?: ExternalId[]) => void;
|
|
896
896
|
};
|
|
897
897
|
export default abstract class Params {
|
|
898
898
|
private static _params;
|