podchat 11.3.0 → 12.3.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.
Files changed (3) hide show
  1. package/changelog.md +56 -2
  2. package/package.json +2 -2
  3. package/src/chat.js +2601 -1394
package/changelog.md CHANGED
@@ -4,10 +4,64 @@ All notable changes to this project will be documented here.
4
4
  to see complete list of changelog please visit [ChangeLog](https://github.com/masoudmanson/pod-chat/blob/master/changelog.md)
5
5
 
6
6
 
7
- ## [Unreleased]
8
7
 
9
- - Search in threads metadata
8
+ ## [12.2.0] - 23-1-2022
9
+ ### Added
10
+ - callId in END CALL events
11
+
12
+ ### Changed
13
+ - idType as string in invitees list for startCall and startGroupCall
10
14
 
15
+ ### Fixed
16
+ - fixed errors on newMessageHandler
17
+
18
+
19
+ ## [11.4.0] - 11-12-2021
20
+ ### Added
21
+
22
+ - method: startCall
23
+ - method: startGroupCall
24
+ - method: endCall
25
+ - method: terminateCall
26
+ - method: rejectCall
27
+ - method: muteCallParticipants
28
+ - method: unMuteCallParticipants
29
+ - method: turnOnVideoCall
30
+ - method: turnOffVideoCall
31
+ - method: getCallParticipants
32
+ - method: addCallParticipants
33
+ - method: removeCallParticipants
34
+ - method: getCallsList
35
+ - event: callEvents.CALL_STARTED_ELSEWHERE
36
+ - event: callEvents.RECEIVE_CALL
37
+ - event: callEvents.CALL_SESSION_CREATED
38
+ - event: callEvents.ACCEPT_CALL
39
+ - event: callEvents.REJECT_CALL
40
+ - event: callEvents.PARTNER_RECEIVED_YOUR_CALL
41
+ - event: callEvents.CALL_SESSION_CREATED
42
+ - event: callEvents.CALL_STARTED
43
+ - event: callEvents.CALL_ENDED
44
+ - event: callEvents.CALL_PARTICIPANT_JOINED
45
+ - event: callEvents.CALL_PARTICIPANT_LEFT
46
+ - event: callEvents.CALL_PARTICIPANT_MUTE
47
+ - event: callEvents.CALL_PARTICIPANT_UNMUTE
48
+ - event: callEvents.TURN_ON_VIDEO_CALL
49
+ - event: callEvents.TURN_OFF_VIDEO_CALL
50
+ - event: callEvents.CALL_ERROR
51
+
52
+
53
+ ## [11.3.0] - 27-11-2021
54
+ ### Added
55
+
56
+ - method: startRecordingCall
57
+ - method: stopRecordingCall
58
+ - event: callEvents.ASSISTANT_CALL_STARTED
59
+ - event: callEvents.ASSISTANT_CALL_ENDED
60
+ - event: callEvents.START_RECORDING_CALL
61
+ - event: callEvents.STOP_RECORDING_CALL
62
+
63
+ ### Changed
64
+ - Downgrade dexie to 2.0.4
11
65
 
12
66
  ## [4.10.0] - 2019-06-24
13
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "podchat",
3
- "version": "11.3.0",
3
+ "version": "12.3.0",
4
4
  "description": "Javascript SDK to use POD's Chat Service",
5
5
  "main": "./src/chat.js",
6
6
  "scripts": {
@@ -8,7 +8,7 @@
8
8
  "publish:snapshot": "npm run version:snapshot && npm publish --tag snapshot",
9
9
  "version:snapshot": "npm version prerelease --preid snapshot",
10
10
  "publish:release": "npm run version:release && npm publish",
11
- "version:release": "npm version 11.3.0"
11
+ "version:release": "npm version 12.3.0"
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",