@zohoim/client-sdk 1.1.0-calls1 → 1.1.0-calls4
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.
|
@@ -12,6 +12,9 @@ const InfoAction = {
|
|
|
12
12
|
CHAT_REOPENED_ON_TRANSFER: 'CHAT_REOPENED_ON_TRANSFER',
|
|
13
13
|
CHAT_INITIATION: 'CHAT_INITIATION',
|
|
14
14
|
USER_LEFT: 'USER_LEFT',
|
|
15
|
-
USER_JOINED: 'USER_JOINED'
|
|
15
|
+
USER_JOINED: 'USER_JOINED',
|
|
16
|
+
CALL_ENDED: 'CALL_ENDED',
|
|
17
|
+
CALL_MISSED: 'CALL_MISSED',
|
|
18
|
+
CALL_REJECTED: 'CALL_REJECTED'
|
|
16
19
|
};
|
|
17
20
|
export default InfoAction;
|
|
@@ -126,9 +126,11 @@ const ModuleFactory = {
|
|
|
126
126
|
let {
|
|
127
127
|
config
|
|
128
128
|
} = _ref12;
|
|
129
|
-
return
|
|
130
|
-
|
|
131
|
-
|
|
129
|
+
return {
|
|
130
|
+
[ModuleTypes.AUTHENTICATED]: new CallSDK({
|
|
131
|
+
config
|
|
132
|
+
}).toJSON()
|
|
133
|
+
};
|
|
132
134
|
}
|
|
133
135
|
};
|
|
134
136
|
export default ModuleFactory;
|