@nethesis/phone-island 0.7.49 → 0.7.50

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.
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),require("../../node_modules/mic-check/lib/index.js");var e=require("../webrtc/janus.js"),i=require("../../_virtual/index8.js"),r=e.default;exports.checkMediaPermissions=function(){i.__exports.requestMediaPermissions().then((function(){})).catch((function(e){var a=e.type;e.name,e.message,a===i.__exports.MediaPermissionsErrorType.SystemPermissionDenied?r.error&&r.error("WebRTC: browser does not have permission to access camera or microphone"):a===i.__exports.MediaPermissionsErrorType.UserPermissionDenied?r.error&&r.error("WebRTC: user didn't allow app to access camera or microphone"):a===i.__exports.MediaPermissionsErrorType.CouldNotStartVideoSource?r.error&&r.error("WebRTC: camera is in use by another application (Zoom, Skype) or browser tab (Google Meet, Messenger Video)"):r.error&&r.error("WebRTC: can't access audio or camere on this device. unknown error")}))},exports.getSupportedDevices=function(e){navigator.mediaDevices.getUserMedia({video:!0,audio:!0}),navigator.mediaDevices&&navigator.mediaDevices.enumerateDevices&&(navigator.enumerateDevices=function(e){navigator.mediaDevices.enumerateDevices().then(e)});var i=[],r="https:"===location.protocol,a=!1;("undefined"!=typeof MediaStreamTrack&&"getSources"in MediaStreamTrack||navigator.mediaDevices&&navigator.mediaDevices.enumerateDevices)&&(a=!0);var o,n=!1,t=!1;o=function(){e()},a&&(!navigator.enumerateDevices&&window.MediaStreamTrack&&window.MediaStreamTrack.getSources&&(navigator.enumerateDevices=window.MediaStreamTrack.getSources.bind(window.MediaStreamTrack)),!navigator.enumerateDevices&&navigator.enumerateDevices&&(navigator.enumerateDevices=navigator.enumerateDevices.bind(navigator)),navigator.enumerateDevices?(i=[],navigator.enumerateDevices((function(e){e.forEach((function(e){var a,o={};for(var s in e)o[s]=e[s];"audio"===o.kind&&(o.kind="audioinput"),"video"===o.kind&&(o.kind="videoinput"),i.forEach((function(e){e.id===o.id&&e.kind===o.kind&&(a=!0)})),a||(o.deviceId||(o.deviceId=o.id),o.id||(o.id=o.deviceId),o.label?("videoinput"!==o.kind||t||(t=!0),"audioinput"!==o.kind||n||(n=!0)):(o.label="Please invoke getUserMedia once.",r||(o.label="HTTPs is required to get label of this "+o.kind+" device.")),o.kind,o.kind,o.kind,i.push(o))})),o&&o()}))):o&&o())};
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),require("../../node_modules/mic-check/lib/index.js");var e=require("../webrtc/janus.js"),i=require("../../_virtual/index8.js"),r=e.default;exports.checkMediaPermissions=function(){i.__exports.requestMediaPermissions({audio:!0,video:!1}).then((function(){})).catch((function(e){var a=e.type;e.name,e.message,a===i.__exports.MediaPermissionsErrorType.SystemPermissionDenied?r.error&&r.error("WebRTC: browser does not have permission to access camera or microphone"):a===i.__exports.MediaPermissionsErrorType.UserPermissionDenied?r.error&&r.error("WebRTC: user didn't allow app to access camera or microphone"):a===i.__exports.MediaPermissionsErrorType.CouldNotStartVideoSource?r.error&&r.error("WebRTC: camera is in use by another application (Zoom, Skype) or browser tab (Google Meet, Messenger Video)"):r.error&&r.error("WebRTC: can't access audio or camere on this device. unknown error")}))},exports.getSupportedDevices=function(e){navigator.mediaDevices.getUserMedia({video:!0,audio:!0}),navigator.mediaDevices&&navigator.mediaDevices.enumerateDevices&&(navigator.enumerateDevices=function(e){navigator.mediaDevices.enumerateDevices().then(e)});var i=[],r="https:"===location.protocol,a=!1;("undefined"!=typeof MediaStreamTrack&&"getSources"in MediaStreamTrack||navigator.mediaDevices&&navigator.mediaDevices.enumerateDevices)&&(a=!0);var o,n=!1,t=!1;o=function(){e()},a&&(!navigator.enumerateDevices&&window.MediaStreamTrack&&window.MediaStreamTrack.getSources&&(navigator.enumerateDevices=window.MediaStreamTrack.getSources.bind(window.MediaStreamTrack)),!navigator.enumerateDevices&&navigator.enumerateDevices&&(navigator.enumerateDevices=navigator.enumerateDevices.bind(navigator)),navigator.enumerateDevices?(i=[],navigator.enumerateDevices((function(e){e.forEach((function(e){var a,o={};for(var s in e)o[s]=e[s];"audio"===o.kind&&(o.kind="audioinput"),"video"===o.kind&&(o.kind="videoinput"),i.forEach((function(e){e.id===o.id&&e.kind===o.kind&&(a=!0)})),a||(o.deviceId||(o.deviceId=o.id),o.id||(o.id=o.deviceId),o.label?("videoinput"!==o.kind||t||(t=!0),"audioinput"!==o.kind||n||(n=!0)):(o.label="Please invoke getUserMedia once.",r||(o.label="HTTPs is required to get label of this "+o.kind+" device.")),o.kind,o.kind,o.kind,i.push(o))})),o&&o()}))):o&&o())};
2
2
  //# sourceMappingURL=devices.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"devices.js","sources":["../../../src/lib/devices/devices.ts"],"sourcesContent":["// Copyright (C) 2022 Nethesis S.r.l.\n// SPDX-License-Identifier: AGPL-3.0-or-later\n\nimport {\n MediaPermissionsError,\n MediaPermissionsErrorType,\n requestMediaPermissions,\n} from 'mic-check'\nimport JanusLib from '../webrtc/janus'\nimport { JanusTypes } from '../webrtc/types'\n\nconst Janus: JanusTypes = JanusLib\n\nexport const getSupportedDevices = function (origCallback) {\n let supportedDevices = null\n\n navigator.mediaDevices.getUserMedia({\n video: true,\n audio: true,\n })\n\n if (navigator.mediaDevices && navigator.mediaDevices.enumerateDevices) {\n // Firefox 38+ seems having support of enumerateDevicesx\n // @ts-ignore\n navigator.enumerateDevices = function (callback) {\n navigator.mediaDevices.enumerateDevices().then(callback)\n }\n }\n\n var MediaDevices = []\n var isHTTPs = location.protocol === 'https:'\n var canEnumerate = false\n\n if (typeof MediaStreamTrack !== 'undefined' && 'getSources' in MediaStreamTrack) {\n canEnumerate = true\n } else if (navigator.mediaDevices && !!navigator.mediaDevices.enumerateDevices) {\n canEnumerate = true\n }\n\n var hasMicrophone = false\n var hasSpeakers = false\n var hasWebcam = false\n\n var isMicrophoneAlreadyCaptured = false\n var isWebcamAlreadyCaptured = false\n\n function checkDeviceSupport(callback) {\n if (!canEnumerate) {\n return\n }\n\n if (\n // @ts-ignore\n !navigator.enumerateDevices &&\n window.MediaStreamTrack &&\n // @ts-ignore\n window.MediaStreamTrack.getSources\n ) {\n // @ts-ignore\n navigator.enumerateDevices = window.MediaStreamTrack.getSources.bind(window.MediaStreamTrack)\n }\n // @ts-ignore\n if (!navigator.enumerateDevices && navigator.enumerateDevices) {\n // @ts-ignore\n navigator.enumerateDevices = navigator.enumerateDevices.bind(navigator)\n }\n // @ts-ignore\n if (!navigator.enumerateDevices) {\n if (callback) {\n callback()\n }\n return\n }\n\n MediaDevices = []\n // @ts-ignore\n navigator.enumerateDevices(function (devices) {\n devices.forEach(function (_device) {\n var device = {}\n for (var d in _device) {\n device[d] = _device[d]\n }\n // @ts-ignore\n if (device.kind === 'audio') {\n // @ts-ignore\n device.kind = 'audioinput'\n }\n // @ts-ignore\n if (device.kind === 'video') {\n // @ts-ignore\n device.kind = 'videoinput'\n }\n\n var skip\n MediaDevices.forEach(function (d) {\n // @ts-ignore\n if (d.id === device.id && d.kind === device.kind) {\n skip = true\n }\n })\n\n if (skip) {\n return\n }\n // @ts-ignore\n if (!device.deviceId) {\n // @ts-ignore\n device.deviceId = device.id\n }\n // @ts-ignore\n if (!device.id) {\n // @ts-ignore\n device.id = device.deviceId\n }\n // @ts-ignore\n if (!device.label) {\n // @ts-ignore\n device.label = 'Please invoke getUserMedia once.'\n if (!isHTTPs) {\n // @ts-ignore\n device.label = 'HTTPs is required to get label of this ' + device.kind + ' device.'\n }\n } else {\n // @ts-ignore\n if (device.kind === 'videoinput' && !isWebcamAlreadyCaptured) {\n isWebcamAlreadyCaptured = true\n }\n // @ts-ignore\n if (device.kind === 'audioinput' && !isMicrophoneAlreadyCaptured) {\n isMicrophoneAlreadyCaptured = true\n }\n }\n // @ts-ignore\n if (device.kind === 'audioinput') {\n hasMicrophone = true\n }\n // @ts-ignore\n if (device.kind === 'audiooutput') {\n hasSpeakers = true\n }\n // @ts-ignore\n if (device.kind === 'videoinput') {\n hasWebcam = true\n }\n\n // there is no 'videoouput' in the spec.\n // @ts-ignore\n MediaDevices.push(device)\n })\n\n if (callback) {\n callback()\n }\n })\n }\n\n // check for microphone/camera support!\n checkDeviceSupport(function () {\n // @ts-ignore\n supportedDevices = {\n audio: hasMicrophone,\n audioCap: isMicrophoneAlreadyCaptured,\n video: hasWebcam,\n videoCap: isWebcamAlreadyCaptured,\n }\n // @ts-ignore\n // janus.log('supportedDevices=', supportedDevices)\n origCallback()\n })\n}\n\nexport const checkMediaPermissions = function () {\n requestMediaPermissions()\n .then(() => {\n // can successfully access camera and microphone streams\n // save permissions state on rematch to get access globally on the app\n })\n .catch((err: MediaPermissionsError) => {\n const { type, name, message } = err\n if (type === MediaPermissionsErrorType.SystemPermissionDenied) {\n // browser does not have permission to access camera or microphone\n if (Janus.error)\n Janus.error('WebRTC: browser does not have permission to access camera or microphone')\n } else if (type === MediaPermissionsErrorType.UserPermissionDenied) {\n // user didn't allow app to access camera or microphone\n if (Janus.error) Janus.error(\"WebRTC: user didn't allow app to access camera or microphone\")\n } else if (type === MediaPermissionsErrorType.CouldNotStartVideoSource) {\n // camera is in use by another application (Zoom, Skype) or browser tab (Google Meet, Messenger Video)\n // (mostly Windows specific problem)\n if (Janus.error)\n Janus.error(\n 'WebRTC: camera is in use by another application (Zoom, Skype) or browser tab (Google Meet, Messenger Video)',\n )\n } else {\n if (Janus.error)\n // not all error types are handled by this library\n Janus.error(\"WebRTC: can't access audio or camere on this device. unknown error\")\n }\n })\n}\n"],"names":["Janus","JanusLib","requestMediaPermissions","then","catch","err","type","name","MediaPermissionsErrorType","__exports","SystemPermissionDenied","error","UserPermissionDenied","CouldNotStartVideoSource","origCallback","navigator","mediaDevices","getUserMedia","video","audio","enumerateDevices","callback","MediaDevices","isHTTPs","location","protocol","canEnumerate","MediaStreamTrack","isMicrophoneAlreadyCaptured","isWebcamAlreadyCaptured","window","getSources","bind","devices","forEach","_device","skip","device","d","kind","id","deviceId","label","push"],"mappings":"mMAWMA,EAAoBC,EAAAA,sCAgKW,WACnCC,sCACGC,MAAK,WAGN,IACCC,OAAM,SAACC,GACE,IAAAC,EAAwBD,EAAGC,KAAHD,EAAGE,KAAHF,UAC5BC,IAASE,EAAyBC,UAAAD,0BAACE,uBAEjCV,EAAMW,OACRX,EAAMW,MAAM,2EACLL,IAASE,EAAyBC,UAAAD,0BAACI,qBAExCZ,EAAMW,OAAOX,EAAMW,MAAM,gEACpBL,IAASE,EAAyBC,UAAAD,0BAACK,yBAGxCb,EAAMW,OACRX,EAAMW,MACJ,+GAGAX,EAAMW,OAERX,EAAMW,MAAM,qEAElB,GACJ,8BA1LmC,SAAUG,GAG3CC,UAAUC,aAAaC,aAAa,CAClCC,OAAO,EACPC,OAAO,IAGLJ,UAAUC,cAAgBD,UAAUC,aAAaI,mBAGnDL,UAAUK,iBAAmB,SAAUC,GACrCN,UAAUC,aAAaI,mBAAmBjB,KAAKkB,EACjD,GAGF,IAAIC,EAAe,GACfC,EAAgC,WAAtBC,SAASC,SACnBC,GAAe,GAEa,oBAArBC,kBAAoC,eAAgBA,kBAEpDZ,UAAUC,cAAkBD,UAAUC,aAAaI,oBAD5DM,GAAe,GASjB,IAG4BL,EAHxBO,GAA8B,EAC9BC,GAA0B,EAEFR,EA+GT,WAUjBP,GACF,EAzHOY,KAMFX,UAAUK,kBACXU,OAAOH,kBAEPG,OAAOH,iBAAiBI,aAGxBhB,UAAUK,iBAAmBU,OAAOH,iBAAiBI,WAAWC,KAAKF,OAAOH,oBAGzEZ,UAAUK,kBAAoBL,UAAUK,mBAE3CL,UAAUK,iBAAmBL,UAAUK,iBAAiBY,KAAKjB,YAG1DA,UAAUK,kBAOfE,EAAe,GAEfP,UAAUK,kBAAiB,SAAUa,GACnCA,EAAQC,SAAQ,SAAUC,GACxB,IAeIC,EAfAC,EAAS,CAAA,EACb,IAAK,IAAIC,KAAKH,EACZE,EAAOC,GAAKH,EAAQG,GAGF,UAAhBD,EAAOE,OAETF,EAAOE,KAAO,cAGI,UAAhBF,EAAOE,OAETF,EAAOE,KAAO,cAIhBjB,EAAaY,SAAQ,SAAUI,GAEzBA,EAAEE,KAAOH,EAAOG,IAAMF,EAAEC,OAASF,EAAOE,OAC1CH,GAAO,EAEX,IAEIA,IAICC,EAAOI,WAEVJ,EAAOI,SAAWJ,EAAOG,IAGtBH,EAAOG,KAEVH,EAAOG,GAAKH,EAAOI,UAGhBJ,EAAOK,OASU,eAAhBL,EAAOE,MAA0BV,IACnCA,GAA0B,GAGR,eAAhBQ,EAAOE,MAA0BX,IACnCA,GAA8B,KAZhCS,EAAOK,MAAQ,mCACVnB,IAEHc,EAAOK,MAAQ,0CAA4CL,EAAOE,KAAO,aAazEF,EAAOE,KAIPF,EAAOE,KAIPF,EAAOE,KAMXjB,EAAaqB,KAAKN,GACpB,IAEIhB,GACFA,GAEJ,KArFMA,GACFA,IAoGR"}
1
+ {"version":3,"file":"devices.js","sources":["../../../src/lib/devices/devices.ts"],"sourcesContent":["// Copyright (C) 2022 Nethesis S.r.l.\n// SPDX-License-Identifier: AGPL-3.0-or-later\n\nimport {\n MediaPermissionsError,\n MediaPermissionsErrorType,\n requestMediaPermissions,\n} from 'mic-check'\nimport JanusLib from '../webrtc/janus'\nimport { JanusTypes } from '../webrtc/types'\n\nconst Janus: JanusTypes = JanusLib\n\nexport const getSupportedDevices = function (origCallback) {\n let supportedDevices = null\n\n navigator.mediaDevices.getUserMedia({\n video: true,\n audio: true,\n })\n\n if (navigator.mediaDevices && navigator.mediaDevices.enumerateDevices) {\n // Firefox 38+ seems having support of enumerateDevicesx\n // @ts-ignore\n navigator.enumerateDevices = function (callback) {\n navigator.mediaDevices.enumerateDevices().then(callback)\n }\n }\n\n var MediaDevices = []\n var isHTTPs = location.protocol === 'https:'\n var canEnumerate = false\n\n if (typeof MediaStreamTrack !== 'undefined' && 'getSources' in MediaStreamTrack) {\n canEnumerate = true\n } else if (navigator.mediaDevices && !!navigator.mediaDevices.enumerateDevices) {\n canEnumerate = true\n }\n\n var hasMicrophone = false\n var hasSpeakers = false\n var hasWebcam = false\n\n var isMicrophoneAlreadyCaptured = false\n var isWebcamAlreadyCaptured = false\n\n function checkDeviceSupport(callback) {\n if (!canEnumerate) {\n return\n }\n\n if (\n // @ts-ignore\n !navigator.enumerateDevices &&\n window.MediaStreamTrack &&\n // @ts-ignore\n window.MediaStreamTrack.getSources\n ) {\n // @ts-ignore\n navigator.enumerateDevices = window.MediaStreamTrack.getSources.bind(window.MediaStreamTrack)\n }\n // @ts-ignore\n if (!navigator.enumerateDevices && navigator.enumerateDevices) {\n // @ts-ignore\n navigator.enumerateDevices = navigator.enumerateDevices.bind(navigator)\n }\n // @ts-ignore\n if (!navigator.enumerateDevices) {\n if (callback) {\n callback()\n }\n return\n }\n\n MediaDevices = []\n // @ts-ignore\n navigator.enumerateDevices(function (devices) {\n devices.forEach(function (_device) {\n var device = {}\n for (var d in _device) {\n device[d] = _device[d]\n }\n // @ts-ignore\n if (device.kind === 'audio') {\n // @ts-ignore\n device.kind = 'audioinput'\n }\n // @ts-ignore\n if (device.kind === 'video') {\n // @ts-ignore\n device.kind = 'videoinput'\n }\n\n var skip\n MediaDevices.forEach(function (d) {\n // @ts-ignore\n if (d.id === device.id && d.kind === device.kind) {\n skip = true\n }\n })\n\n if (skip) {\n return\n }\n // @ts-ignore\n if (!device.deviceId) {\n // @ts-ignore\n device.deviceId = device.id\n }\n // @ts-ignore\n if (!device.id) {\n // @ts-ignore\n device.id = device.deviceId\n }\n // @ts-ignore\n if (!device.label) {\n // @ts-ignore\n device.label = 'Please invoke getUserMedia once.'\n if (!isHTTPs) {\n // @ts-ignore\n device.label = 'HTTPs is required to get label of this ' + device.kind + ' device.'\n }\n } else {\n // @ts-ignore\n if (device.kind === 'videoinput' && !isWebcamAlreadyCaptured) {\n isWebcamAlreadyCaptured = true\n }\n // @ts-ignore\n if (device.kind === 'audioinput' && !isMicrophoneAlreadyCaptured) {\n isMicrophoneAlreadyCaptured = true\n }\n }\n // @ts-ignore\n if (device.kind === 'audioinput') {\n hasMicrophone = true\n }\n // @ts-ignore\n if (device.kind === 'audiooutput') {\n hasSpeakers = true\n }\n // @ts-ignore\n if (device.kind === 'videoinput') {\n hasWebcam = true\n }\n\n // there is no 'videoouput' in the spec.\n // @ts-ignore\n MediaDevices.push(device)\n })\n\n if (callback) {\n callback()\n }\n })\n }\n\n // check for microphone/camera support!\n checkDeviceSupport(function () {\n // @ts-ignore\n supportedDevices = {\n audio: hasMicrophone,\n audioCap: isMicrophoneAlreadyCaptured,\n video: hasWebcam,\n videoCap: isWebcamAlreadyCaptured,\n }\n // @ts-ignore\n // janus.log('supportedDevices=', supportedDevices)\n origCallback()\n })\n}\n\nexport const checkMediaPermissions = function () {\n requestMediaPermissions({audio: true, video: false})\n .then(() => {\n // can successfully access camera and microphone streams\n // save permissions state on rematch to get access globally on the app\n })\n .catch((err: MediaPermissionsError) => {\n const { type, name, message } = err\n if (type === MediaPermissionsErrorType.SystemPermissionDenied) {\n // browser does not have permission to access camera or microphone\n if (Janus.error)\n Janus.error('WebRTC: browser does not have permission to access camera or microphone')\n } else if (type === MediaPermissionsErrorType.UserPermissionDenied) {\n // user didn't allow app to access camera or microphone\n if (Janus.error) Janus.error(\"WebRTC: user didn't allow app to access camera or microphone\")\n } else if (type === MediaPermissionsErrorType.CouldNotStartVideoSource) {\n // camera is in use by another application (Zoom, Skype) or browser tab (Google Meet, Messenger Video)\n // (mostly Windows specific problem)\n if (Janus.error)\n Janus.error(\n 'WebRTC: camera is in use by another application (Zoom, Skype) or browser tab (Google Meet, Messenger Video)',\n )\n } else {\n if (Janus.error)\n // not all error types are handled by this library\n Janus.error(\"WebRTC: can't access audio or camere on this device. unknown error\")\n }\n })\n}\n"],"names":["Janus","JanusLib","requestMediaPermissions","audio","video","then","catch","err","type","name","MediaPermissionsErrorType","__exports","SystemPermissionDenied","error","UserPermissionDenied","CouldNotStartVideoSource","origCallback","navigator","mediaDevices","getUserMedia","enumerateDevices","callback","MediaDevices","isHTTPs","location","protocol","canEnumerate","MediaStreamTrack","isMicrophoneAlreadyCaptured","isWebcamAlreadyCaptured","window","getSources","bind","devices","forEach","_device","skip","device","d","kind","id","deviceId","label","push"],"mappings":"mMAWMA,EAAoBC,EAAAA,sCAgKW,WACnCC,EAAAA,UAAAA,wBAAwB,CAACC,OAAO,EAAMC,OAAO,IAC1CC,MAAK,WAGN,IACCC,OAAM,SAACC,GACE,IAAAC,EAAwBD,EAAGC,KAAHD,EAAGE,KAAHF,UAC5BC,IAASE,EAAyBC,UAAAD,0BAACE,uBAEjCZ,EAAMa,OACRb,EAAMa,MAAM,2EACLL,IAASE,EAAyBC,UAAAD,0BAACI,qBAExCd,EAAMa,OAAOb,EAAMa,MAAM,gEACpBL,IAASE,EAAyBC,UAAAD,0BAACK,yBAGxCf,EAAMa,OACRb,EAAMa,MACJ,+GAGAb,EAAMa,OAERb,EAAMa,MAAM,qEAElB,GACJ,8BA1LmC,SAAUG,GAG3CC,UAAUC,aAAaC,aAAa,CAClCf,OAAO,EACPD,OAAO,IAGLc,UAAUC,cAAgBD,UAAUC,aAAaE,mBAGnDH,UAAUG,iBAAmB,SAAUC,GACrCJ,UAAUC,aAAaE,mBAAmBf,KAAKgB,EACjD,GAGF,IAAIC,EAAe,GACfC,EAAgC,WAAtBC,SAASC,SACnBC,GAAe,GAEa,oBAArBC,kBAAoC,eAAgBA,kBAEpDV,UAAUC,cAAkBD,UAAUC,aAAaE,oBAD5DM,GAAe,GASjB,IAG4BL,EAHxBO,GAA8B,EAC9BC,GAA0B,EAEFR,EA+GT,WAUjBL,GACF,EAzHOU,KAMFT,UAAUG,kBACXU,OAAOH,kBAEPG,OAAOH,iBAAiBI,aAGxBd,UAAUG,iBAAmBU,OAAOH,iBAAiBI,WAAWC,KAAKF,OAAOH,oBAGzEV,UAAUG,kBAAoBH,UAAUG,mBAE3CH,UAAUG,iBAAmBH,UAAUG,iBAAiBY,KAAKf,YAG1DA,UAAUG,kBAOfE,EAAe,GAEfL,UAAUG,kBAAiB,SAAUa,GACnCA,EAAQC,SAAQ,SAAUC,GACxB,IAeIC,EAfAC,EAAS,CAAA,EACb,IAAK,IAAIC,KAAKH,EACZE,EAAOC,GAAKH,EAAQG,GAGF,UAAhBD,EAAOE,OAETF,EAAOE,KAAO,cAGI,UAAhBF,EAAOE,OAETF,EAAOE,KAAO,cAIhBjB,EAAaY,SAAQ,SAAUI,GAEzBA,EAAEE,KAAOH,EAAOG,IAAMF,EAAEC,OAASF,EAAOE,OAC1CH,GAAO,EAEX,IAEIA,IAICC,EAAOI,WAEVJ,EAAOI,SAAWJ,EAAOG,IAGtBH,EAAOG,KAEVH,EAAOG,GAAKH,EAAOI,UAGhBJ,EAAOK,OASU,eAAhBL,EAAOE,MAA0BV,IACnCA,GAA0B,GAGR,eAAhBQ,EAAOE,MAA0BX,IACnCA,GAA8B,KAZhCS,EAAOK,MAAQ,mCACVnB,IAEHc,EAAOK,MAAQ,0CAA4CL,EAAOE,KAAO,aAazEF,EAAOE,KAIPF,EAAOE,KAIPF,EAAOE,KAMXjB,EAAaqB,KAAKN,GACpB,IAEIhB,GACFA,GAEJ,KArFMA,GACFA,IAoGR"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nethesis/phone-island",
3
3
  "author": "Nethesis",
4
- "version": "0.7.49",
4
+ "version": "0.7.50",
5
5
  "description": "NethVoice CTI Phone Island",
6
6
  "keywords": [
7
7
  "nethserver",