podchat-browser 12.9.15-snapshot.7 → 12.9.15
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 +25 -0
- package/dist/node/buildConfig.json +1 -1
- package/dist/node/call.module.js +666 -339
- package/dist/node/chat.js +5850 -4867
- package/dist/node/deprecateMethods.js +1 -0
- package/dist/node/events.module.js +14 -3
- package/dist/node/lib/app.js +17 -0
- package/dist/node/lib/call/call.js +4 -0
- package/dist/node/lib/call/callManager.js +219 -84
- package/dist/node/lib/call/callServerManager.js +2 -0
- package/dist/node/lib/call/callTopicManager.js +113 -62
- package/dist/node/lib/call/callUser.js +101 -32
- package/dist/node/lib/call/callUsers.js +32 -5
- package/dist/node/lib/call/callsList.js +21 -0
- package/dist/node/lib/call/deviceManager.js +95 -54
- package/dist/node/lib/call/deviceStartStopManager.js +9 -9
- package/dist/node/lib/call/multitrack/callManager.js +331 -164
- package/dist/node/lib/call/multitrack/callUser.js +156 -66
- package/dist/node/lib/call/multitrack/callUsers.js +61 -13
- package/dist/node/lib/call/multitrack/peerConnectionManager.js +184 -47
- package/dist/node/lib/call/multitrack/webrtcPeer.js +67 -14
- package/dist/node/lib/call/preferredMediaDeviceManager.js +7 -2
- package/dist/node/lib/call/screenShareStateManager.js +2 -0
- package/dist/node/lib/call/sharedData.js +49 -30
- package/dist/node/lib/call/topicMetaDataManager.js +1 -0
- package/dist/node/lib/call/webrtcPeer.js +58 -26
- package/dist/node/lib/chat/call/inquiryCallParticipants.js +19 -9
- package/dist/node/lib/chat/contactsMethods.js +46 -14
- package/dist/node/lib/chat/reactionsMethods.js +57 -28
- package/dist/node/lib/chat/threadHistoryMethods.js +70 -30
- package/dist/node/lib/chat/threadMethods.js +30 -11
- package/dist/node/lib/chat/threadParticipantsMethods.js +47 -15
- package/dist/node/lib/chat/uploadMethods.js +31 -14
- package/dist/node/lib/constants.js +27 -2
- package/dist/node/lib/errorHandler.js +24 -6
- package/dist/node/lib/files/podspaceMethods.js +202 -52
- package/dist/node/lib/helpers/dataFormatters.js +90 -62
- package/dist/node/lib/helpers/httpRequest.js +52 -11
- package/dist/node/lib/logManager.js +2 -0
- package/dist/node/lib/requestBlocker.js +22 -10
- package/dist/node/lib/sdkParams.js +3 -0
- package/dist/node/lib/social/typeCodes.js +37 -18
- package/dist/node/lib/store/contactsList.js +54 -9
- package/dist/node/lib/store/eventEmitter.js +4 -0
- package/dist/node/lib/store/history/historyItem.js +26 -9
- package/dist/node/lib/store/history/historyList.js +14 -3
- package/dist/node/lib/store/history/index.js +8 -0
- package/dist/node/lib/store/history/requestParams.js +4 -2
- package/dist/node/lib/store/index.js +8 -0
- package/dist/node/lib/store/messageQueues.js +50 -15
- package/dist/node/lib/store/reactionsList.js +19 -14
- package/dist/node/lib/store/reactionsSummaries.js +30 -6
- package/dist/node/lib/store/threads.js +85 -66
- package/dist/node/lib/store/typecodes.js +17 -7
- package/dist/node/lib/store/user.js +6 -0
- package/dist/node/messaging.module.js +52 -15
- package/dist/node/utility/utility.js +101 -29
- package/dist/podchat-browser-bundle.js +6454 -3734
- package/examples/index.html +9 -0
- package/package.json +4 -5
- package/src/buildConfig.json +1 -1
- package/src/chat.js +252 -189
- package/src/lib/call/deviceManager.js +0 -17
- package/src/lib/call/multitrack/callManager.js +20 -16
- package/src/lib/call/multitrack/callUsers.js +4 -4
- package/src/lib/constants.js +27 -1
- package/src/lib/files/podspaceMethods.js +181 -43
- package/src/lib/sdkParams.js +1 -0
- package/src/lib/store/messageQueues.js +1 -1
- package/src/messaging.module.js +4 -1
package/changelog.md
CHANGED
|
@@ -5,6 +5,31 @@ to see complete list of changelog please visit [ChangeLog](http://gp.fanapsoft.i
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased]
|
|
7
7
|
|
|
8
|
+
## [12.9.15] 04-12-2024
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Added threadId to reaction events
|
|
12
|
+
- Added configurable logger module in run-time
|
|
13
|
+
- Added retry and addUserToUserGroup on error 403 when downloading image
|
|
14
|
+
- Cache for threads history
|
|
15
|
+
- Added typeCode to all thread events
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- Added check to prevent console errors on peer destroy
|
|
19
|
+
- Removed console log error in fireEvent method
|
|
20
|
+
- Prevent unnecessary request in type 244 (Reaction summaries) cache, after new message
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
- Changed permission functionality on getDevicesList
|
|
24
|
+
- Changed hardcoded neshan map api key in neshan map link
|
|
25
|
+
- Refactored callDiv events
|
|
26
|
+
- Disabled deprecated callTurnIp in sdk config
|
|
27
|
+
- Removed unused package dexie
|
|
28
|
+
- Improvement on multitrack call reconnect
|
|
29
|
+
- Update PodSpace download image links
|
|
30
|
+
- Improved failure handler in janus calls
|
|
31
|
+
|
|
32
|
+
|
|
8
33
|
## [12.9.14] 10-09-2024
|
|
9
34
|
|
|
10
35
|
### Added
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"12.9.15
|
|
1
|
+
{"version":"12.9.15","date":"۱۴۰۳/۹/۱۴","VersionInfo":"Release: true, Snapshot: false, Is For Test: false"}
|