@voicenter-team/opensips-js 1.0.130 → 1.0.132

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.130",
3
+ "version": "1.0.132",
4
4
  "description": "The JS package for opensips",
5
5
  "default": "src/index.ts",
6
6
  "jsdelivr": "dist/opensips-js.iife.js",
@@ -45,6 +45,7 @@
45
45
  "@vitejs/plugin-vue": "^4.2.3",
46
46
  "@voicenter-team/aws-uploader": "^1.0.10",
47
47
  "@voicenter-team/eslint-config-ts": "^1.0.21",
48
+ "@voicenter-team/opensips-js-screen-share": "^0.0.2",
48
49
  "cross-env": "^7.0.3",
49
50
  "dotenv": "^16.0.3",
50
51
  "eslint": "^8.35.0",
@@ -18,6 +18,7 @@ export type ChangeVolumeEventType = {
18
18
 
19
19
  export type readyListener = (value: boolean) => void
20
20
  export type connectionListener = (value: boolean) => void
21
+ export type reconnectionListener = (value: boolean) => void
21
22
  export type changeActiveCallsListener = (event: { [key: string]: ICall }) => void
22
23
  export type changeActiveMessagesListener = (event: { [key: string]: IMessage }) => void
23
24
  export type TestEventListener = (event: { test: string }) => void
@@ -58,6 +59,7 @@ export type changeVideoStateListener = (state: boolean) => void
58
59
  export interface OpenSIPSEventMap extends UAEventMap {
59
60
  ready: readyListener
60
61
  connection: connectionListener
62
+ reconnecting: reconnectionListener
61
63
  // JSSIP
62
64
  changeActiveCalls: changeActiveCallsListener
63
65
  changeActiveMessages: changeActiveMessagesListener