podchat-browser 12.7.4-snapshot.3 → 12.8.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/changelog.md +50 -0
- package/dist/node/call.module.js +1057 -601
- package/dist/node/chat.js +65 -32
- package/dist/node/lib/call/deviceManager.js +48 -0
- package/dist/node/lib/call/webrtcPeer.js +277 -0
- package/dist/node/lib/constants.js +1 -0
- package/dist/node/lib/errorHandler.js +26 -2
- package/dist/node/lib/store/eventEmitter.js +24 -0
- package/dist/node/lib/{memoryStore → store}/index.js +4 -1
- package/dist/node/lib/store/threads.js +121 -0
- package/dist/node/messaging.module.js +46 -9
- package/dist/podchat-browser-bundle.js +1139 -459
- package/examples/index.html +7 -3
- package/package.json +3 -3
- package/src/call.module.js +636 -263
- package/src/chat.js +188 -57
- package/src/lib/call/deviceManager.js +45 -0
- package/src/lib/constants.js +1 -0
- package/src/lib/errorHandler.js +30 -5
- package/src/lib/store/eventEmitter.js +16 -0
- package/src/lib/store/index.js +9 -0
- package/src/lib/store/threads.js +99 -0
- package/src/messaging.module.js +36 -6
- package/dist/node/lib/memoryStore/events.js +0 -28
- package/dist/node/lib/memoryStore/threads.js +0 -130
- package/dist.zip +0 -0
package/changelog.md
CHANGED
|
@@ -5,6 +5,56 @@ to see complete list of changelog please visit [ChangeLog](http://gp.fanapsoft.i
|
|
|
5
5
|
|
|
6
6
|
##[Unreleased]
|
|
7
7
|
|
|
8
|
+
## [12.7.2-snapshot.0] - 2022-11-01
|
|
9
|
+
### Added
|
|
10
|
+
- Added possibility to accept incoming call while user is in an existing call
|
|
11
|
+
- Check to prevent request when socket not connected
|
|
12
|
+
|
|
13
|
+
## [12.7.1] - 2022-10-29
|
|
14
|
+
### Added
|
|
15
|
+
- fire Event: THREAD_LAST_SEEN_UPDATED on chat message: LAST_SEEN_UPDATED, type: 31
|
|
16
|
+
- Retry requests to kurento
|
|
17
|
+
- Property: chatId to call requests
|
|
18
|
+
- Property: callId to event type: CALL_PARTICIPANT_LEFT
|
|
19
|
+
- Grant permissions internally in methods startCall, startGroupCall, acceptCall
|
|
20
|
+
- SDK parameter: typeCodeOwnerId
|
|
21
|
+
- Object: deviceManager
|
|
22
|
+
- Method: deviceManager.grantUserMediaDevicesPermissions
|
|
23
|
+
- Event type: SWITCH_TO_GROUP_CALL
|
|
24
|
+
- Possibility to know if we are the call starter
|
|
25
|
+
- Reset SDK internal data when starting a new call
|
|
26
|
+
- Event type: CALL_RECORDING_STARTED
|
|
27
|
+
- Property: callId to Event type: CALL_STARTED
|
|
28
|
+
- Parameters: fromTime, toTime in method: getThreads
|
|
29
|
+
- Method: sendCallSticker
|
|
30
|
+
- Method: getCustomerInfo
|
|
31
|
+
- Event: CONTACT_THREAD_UPDATE
|
|
32
|
+
- Methods: archiveThread/unArchiveThread
|
|
33
|
+
- Property: threadId to event: RECEIVE_CALL
|
|
34
|
+
- Method: recallThreadParticipant
|
|
35
|
+
- Property: seenByAnyAssistant to thread item
|
|
36
|
+
- Property: callCenter to userInfo
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
- Do not process some chat messages when subjectId is not equal to current callId
|
|
40
|
+
- Retry the request instead of switching kurento
|
|
41
|
+
- Removed contentCount from hasNext calculation in getThreads and getHistory
|
|
42
|
+
- Modified LEAVE_CALL handling
|
|
43
|
+
- exportChat supports multiline texts and enhanced its exports for special chars
|
|
44
|
+
- Prevent duplicate call user in SDK on chat event CALL_PARTICIPANT_JOINED
|
|
45
|
+
- Modified ScreenShare functionality
|
|
46
|
+
- Modified video aspect ratio
|
|
47
|
+
- Prevent listing unused tags in CALL_DIVS event
|
|
48
|
+
- Removed Sentry from SDK
|
|
49
|
+
- Event: MESSAGE_DELETE, Added: time, timeNanos
|
|
50
|
+
|
|
51
|
+
### Fixed
|
|
52
|
+
- Resolved userInfo exception in podspace methods
|
|
53
|
+
- Error when callOptions is not received in SDK Params
|
|
54
|
+
- Bug in replyFileMessage
|
|
55
|
+
- Audio and Video problem after rejecting an incoming call
|
|
56
|
+
|
|
57
|
+
|
|
8
58
|
## [12.7.1-snapshot.22] - 2022-10-12
|
|
9
59
|
### Added
|
|
10
60
|
- fire Event: THREAD_LAST_SEEN_UPDATED on chat message: LAST_SEEN_UPDATED, type: 31
|