podchat-browser 12.6.0 → 12.7.1-snapshot.1
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 +17 -0
- package/dist/node/call.module.js +4357 -0
- package/dist/node/chat.js +2095 -0
- package/dist/node/events.module.js +155 -0
- package/dist/node/lib/call/deviceManager.js +219 -0
- package/dist/node/lib/call/peerHealthCheck.js +53 -0
- package/dist/node/lib/constants.js +187 -0
- package/dist/node/lib/errorHandler.js +31 -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.0.js → podchat-browser-bundle.js} +56105 -74646
- package/examples/index.html +1 -2
- package/examples/load.html +1 -1
- package/package.json +31 -6
- package/src/call.module.js +3661 -3668
- package/src/chat.js +12002 -12194
- package/src/events.module.js +117 -118
- package/src/lib/call/deviceManager.js +171 -0
- package/src/lib/constants.js +206 -0
- package/src/lib/errorHandler.js +31 -0
- package/src/lib/sentry.js +15 -0
- package/src/messaging.module.js +25 -24
- package/src/utility/utility.js +506 -517
- package/dist/node/lib/call/deviceCheck.js +0 -69
- 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,23 @@
|
|
|
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
|
+
|
|
8
|
+
## [12.7.1-snapshot.1] - 2022-06-26
|
|
9
|
+
### Added
|
|
10
|
+
- SDK parameter: typeCodeOwnerId
|
|
11
|
+
- object: deviceManager
|
|
12
|
+
- method: deviceManager.grantUserMediaDevicesPermissions
|
|
13
|
+
- event type: SWITCH_TO_GROUP_CALL
|
|
14
|
+
- healthCehck for peer connections
|
|
15
|
+
- Possibility to know if we are the call starter
|
|
16
|
+
- Reset SDK internal data when starting a new call
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- Do not process some chat messages when subjectId is not equal to current callId
|
|
20
|
+
- Retry the request instead of switching kurento
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [12.6.0] - 2022-06-16
|
|
7
24
|
### Fixed
|
|
8
25
|
- User being muted when muting others
|