@voicenter-team/opensips-js 1.0.137 → 1.0.139

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voicenter-team/opensips-js",
3
- "version": "1.0.137",
3
+ "version": "1.0.139",
4
4
  "description": "The JS package for opensips",
5
5
  "default": "src/index.ts",
6
6
  "jsdelivr": "dist/opensips-js.iife.js",
@@ -31,6 +31,7 @@ export type changeActiveOutputMediaDeviceListener = (event: string) => void
31
31
  export type changeAvailableDeviceListListener = (event: Array<MediaDeviceInfo>) => void
32
32
  export type changeMuteWhenJoinListener = (value: boolean) => void
33
33
  export type changeIsDNDListener = (value: boolean) => void
34
+ export type changeIsCallWaitingListener = (value: boolean) => void
34
35
  export type changeIsMutedListener = (value: boolean) => void
35
36
  export type changeActiveStreamListener = (value: MediaStream) => void
36
37
  export type addRoomListener = (value: RoomChangeEmitType) => void
@@ -73,6 +74,7 @@ export interface OpenSIPSEventMap extends UAEventMap {
73
74
  changeAvailableDeviceList: changeAvailableDeviceListListener
74
75
  changeMuteWhenJoin: changeMuteWhenJoinListener
75
76
  changeIsDND: changeIsDNDListener
77
+ changeIsCallWaiting: changeIsCallWaitingListener
76
78
  changeIsMuted: changeIsMutedListener
77
79
  changeActiveStream: changeActiveStreamListener
78
80
  addRoom: addRoomListener