@cometchat/calls-sdk-javascript 4.0.5-beta1 → 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.
- package/pack/constants/CallConstants.d.ts +2 -0
- package/pack/index.d.ts +6 -0
- package/pack/index.js +1 -1
- package/pack/models/CallGroup.d.ts +14 -0
- package/pack/models/CallLog.d.ts +12 -10
- package/pack/models/CallUser.d.ts +14 -0
- package/pack/models/CometChatCalls.d.ts +10 -1
- package/pack/models/Listener.d.ts +5 -0
- package/pack/models/Recording.d.ts +1 -1
- package/pack/types/callEvents.d.ts +2 -1
- package/package.json +1 -1
- package/pack/index.js.LICENSE.txt +0 -1
|
@@ -15,6 +15,7 @@ export declare const CallConstants: {
|
|
|
15
15
|
readonly CALL_ID: "id";
|
|
16
16
|
readonly CALL_SESSION_ID: "sessionid";
|
|
17
17
|
readonly CALL_RECEIVER: "receiver";
|
|
18
|
+
readonly CALL_INITIATOR: "initiator";
|
|
18
19
|
readonly CALL_SENDER: "sender";
|
|
19
20
|
readonly CALL_RECEIVER_TYPE: "receiverType";
|
|
20
21
|
readonly CALL_STATUS: "status";
|
|
@@ -69,6 +70,7 @@ export declare const CallConstants: {
|
|
|
69
70
|
readonly STOP_RECORDING: "stopRecording";
|
|
70
71
|
readonly RECORDING_TOGGLED: "onRecordingToggled";
|
|
71
72
|
readonly USER_MUTED: "onUserMuted";
|
|
73
|
+
readonly ON_USER_UNMUTED: "onUserUnMuted";
|
|
72
74
|
readonly SCREEN_SHARE_STARTED: "SCREEN_SHARE_STARTED";
|
|
73
75
|
readonly SCREEN_SHARE_STOPPED: "SCREEN_SHARE_ENDED";
|
|
74
76
|
readonly SWITCH_TO_VIDEO_CALL: "switchedToVideo";
|
package/pack/index.d.ts
CHANGED
|
@@ -1 +1,7 @@
|
|
|
1
1
|
export { CometChatCalls } from "./models/CometChatCalls";
|
|
2
|
+
export { CallLog } from "./models/CallLog";
|
|
3
|
+
export { CallLogRequestBuilder } from "./models/CometChatCallLogs";
|
|
4
|
+
export { CallUser } from "./models/CallUser";
|
|
5
|
+
export { CallGroup } from "./models/CallGroup";
|
|
6
|
+
export { Participant } from './models/Participant';
|
|
7
|
+
export { Recording } from './models/Recording';
|