@vkontakte/calls-sdk 2.6.2-beta.23 → 2.6.2-beta.24

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/CallsSDK.d.ts CHANGED
@@ -246,7 +246,7 @@ export declare function joinCallInternal(conversationId: string, mediaOptions: M
246
246
  * @param mediaOptions Нужно ли включать камеру и микрофон
247
247
  * @param anonymToken Токен анонимной авторизации
248
248
  */
249
- export declare function joinCallByLink(joinLink: string, mediaOptions?: MediaOption[], anonymToken?: string, observedIds?: ExternalUserId[]): Promise<ConversationData>;
249
+ export declare function joinCallByLink(joinLink: string, mediaOptions?: MediaOption[], anonymToken?: string, observedIds?: ExternalUserId[], payload?: string): Promise<ConversationData>;
250
250
  /**
251
251
  * Завершить текущий разговор
252
252
  */
@@ -33,7 +33,7 @@ export default abstract class BaseApi {
33
33
  success: boolean;
34
34
  }>;
35
35
  getAnonymTokenByLink(joinLink: string, username?: string): Promise<string>;
36
- abstract joinConversationByLink(joinLink: string, isVideo?: boolean, observedIds?: ExternalUserId[]): Promise<ConversationResponse>;
36
+ abstract joinConversationByLink(joinLink: string, isVideo?: boolean, observedIds?: ExternalUserId[], payload?: string): Promise<ConversationResponse>;
37
37
  abstract getConversationParams(conversationId?: string): Promise<ConversationParams>;
38
38
  abstract getUserId(): OkUserId | null;
39
39
  abstract setUserId(userId: OkUserId): void;