podchat-browser 12.6.1 → 12.7.1-snapshot.10
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/.babelrc +4 -0
- package/changelog.md +77 -0
- package/dist/node/call.module.js +4554 -0
- package/dist/node/chat.js +2092 -0
- package/dist/node/events.module.js +155 -0
- package/dist/node/lib/call/deviceManager.js +265 -0
- package/dist/node/lib/call/peerHealthCheck.js +53 -0
- package/dist/node/lib/constants.js +202 -0
- package/dist/node/lib/errorHandler.js +118 -0
- package/dist/node/lib/sentry.js +30 -0
- package/dist/node/messaging.module.js +317 -0
- package/dist/node/utility/utility.js +594 -0
- package/dist/{podchat-12.6.1.js → podchat-browser-bundle.js} +56441 -74704
- package/examples/index.html +5 -3
- package/examples/load.html +1 -1
- package/package.json +31 -6
- package/src/call.module.js +3814 -3644
- package/src/chat.js +12024 -12186
- package/src/events.module.js +117 -118
- package/src/lib/call/deviceManager.js +205 -0
- package/src/lib/constants.js +222 -0
- package/src/lib/errorHandler.js +92 -0
- package/src/lib/sentry.js +15 -0
- package/src/messaging.module.js +25 -24
- package/src/utility/utility.js +506 -517
- package/dist/podchat-12.3.1.js +0 -75155
- package/dist/podchat-12.5.1.js +0 -75828
- package/examples/bundle-test.js +0 -75888
- package/examples/kurento-utils.min.js +0 -55
- package/examples/purify.min.js +0 -3
package/.babelrc
ADDED
package/changelog.md
CHANGED
|
@@ -3,6 +3,83 @@
|
|
|
3
3
|
All notable changes to this project will be documented here.
|
|
4
4
|
to see complete list of changelog please visit [ChangeLog](http://gp.fanapsoft.ir/pod/pod-basic-sdk/chat-js-browser-sdk/-/blob/master/changelog.md)
|
|
5
5
|
|
|
6
|
+
##[Unreleased]
|
|
7
|
+
## [12.7.1-snapshot.10] - 2022-08-14
|
|
8
|
+
### Added
|
|
9
|
+
- Method: getCustomerInfo
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- ScreenShare functionality
|
|
13
|
+
- Modified video aspect ratio
|
|
14
|
+
- Modified method: sendCallSticker
|
|
15
|
+
|
|
16
|
+
## [12.7.1-snapshot.9] - 2022-07-30
|
|
17
|
+
### Added
|
|
18
|
+
- Method: sendCallSticker
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- Problem on CALL_ENDED didn't get fired for all thread participants
|
|
22
|
+
- Audio and Video problem after rejecting an incoming call
|
|
23
|
+
|
|
24
|
+
## [12.7.1-snapshot.8] - 2022-07-24
|
|
25
|
+
### Fixed
|
|
26
|
+
- Fixed bug on permission check error in call methods
|
|
27
|
+
|
|
28
|
+
## [12.7.1-snapshot.7] - 2022-07-23
|
|
29
|
+
### Changed
|
|
30
|
+
- Disabled healthCheck
|
|
31
|
+
- Prevent duplicate call user in SDK on chat event CALL_PARTICIPANT_JOINED
|
|
32
|
+
- Minor improvement
|
|
33
|
+
|
|
34
|
+
## [12.7.1-snapshot.6] - 2022-07-20
|
|
35
|
+
### Added
|
|
36
|
+
- Parameters: fromTime, toTime in method: getThreads
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
- exportChat supports multiline texts and enhanced its exports for special chars
|
|
40
|
+
|
|
41
|
+
### Fixed
|
|
42
|
+
- Bug in method acceptCall parameter cameraPaused didn't work after new changes
|
|
43
|
+
- Resolved userInfo exception in method uploadFileToPodspaceUserGroupNew
|
|
44
|
+
|
|
45
|
+
## [12.7.1-snapshot.5] - 2022-07-13
|
|
46
|
+
### Added
|
|
47
|
+
- Property: callId to event type: CALL_PARTICIPANT_LEFT
|
|
48
|
+
- Grant permissions internally in methods startCall, startGroupCall, acceptCall
|
|
49
|
+
|
|
50
|
+
### Changed
|
|
51
|
+
- Improved LEAVE_CALL handling
|
|
52
|
+
|
|
53
|
+
## [12.7.1-snapshot.4] - 2022-07-04
|
|
54
|
+
### Added
|
|
55
|
+
- Property: callId to event type: CALL_STARTED
|
|
56
|
+
|
|
57
|
+
### Changed
|
|
58
|
+
- Removed contentCount from hasNext calculation in getThreads and getHistory
|
|
59
|
+
|
|
60
|
+
## [12.7.1-snapshot.3] - 2022-07-04
|
|
61
|
+
### Added
|
|
62
|
+
- event type: CALL_RECORDING_STARTED
|
|
63
|
+
|
|
64
|
+
## [12.7.1-snapshot.2] - 2022-06-26
|
|
65
|
+
### Fixed
|
|
66
|
+
- bug in shouldNotProcessChatMessage
|
|
67
|
+
|
|
68
|
+
## [12.7.1-snapshot.1] - 2022-06-26
|
|
69
|
+
### Added
|
|
70
|
+
- SDK parameter: typeCodeOwnerId
|
|
71
|
+
- object: deviceManager
|
|
72
|
+
- method: deviceManager.grantUserMediaDevicesPermissions
|
|
73
|
+
- event type: SWITCH_TO_GROUP_CALL
|
|
74
|
+
- healthCehck for peer connections
|
|
75
|
+
- Possibility to know if we are the call starter
|
|
76
|
+
- Reset SDK internal data when starting a new call
|
|
77
|
+
|
|
78
|
+
### Changed
|
|
79
|
+
- Do not process some chat messages when subjectId is not equal to current callId
|
|
80
|
+
- Retry the request instead of switching kurento
|
|
81
|
+
|
|
82
|
+
|
|
6
83
|
## [12.6.0] - 2022-06-16
|
|
7
84
|
### Fixed
|
|
8
85
|
- User being muted when muting others
|