@cometchat/calls-sdk-javascript 4.0.5 → 4.0.6

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.
@@ -6,6 +6,10 @@ import { PresenterSettings, PresenterSettingsBuilder } from "./PresenterSettings
6
6
  import { ListenerHandlers } from "./ListnerHandler";
7
7
  import { CallLog } from './CallLog';
8
8
  import { CallLogRequestBuilder } from './CometChatCallLogs';
9
+ import { CallUser } from "./CallUser";
10
+ import { CallGroup } from "./CallGroup";
11
+ import { Participant } from './Participant';
12
+ import { Recording } from './Recording';
9
13
  export declare class CometChatCalls {
10
14
  private static appSettings;
11
15
  private static inProgress;
@@ -37,6 +41,10 @@ export declare class CometChatCalls {
37
41
  static MainVideoContainerSetting: typeof MainVideoContainerSetting;
38
42
  static CallLogRequestBuilder: typeof CallLogRequestBuilder;
39
43
  static CallLog: typeof CallLog;
44
+ static CallUser: typeof CallUser;
45
+ static CallGroup: typeof CallGroup;
46
+ static Participant: typeof Participant;
47
+ static Recording: typeof Recording;
40
48
  private static isPresenterMode;
41
49
  static joinPresentation(callToken: string, presenterSettings: PresenterSettings, htmlElement: HTMLElement): Promise<void>;
42
50
  static startSession(callToken: string, callSettings: CallSettings, htmlElement: HTMLElement): Promise<void>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cometchat/calls-sdk-javascript",
3
- "version": "4.0.5",
3
+ "version": "4.0.6",
4
4
  "description": "Cometchat's Javascript SDK for In-app Calling.",
5
5
  "main": "pack/index.js",
6
6
  "module": "pack/index.js",