sip-connector 11.6.1 → 12.1.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.
- package/dist/{SipConnector-DhuPlarI.js → SipConnector-BxDInUHC.js} +143 -142
- package/dist/SipConnector-Ds1fhzNg.cjs +1 -0
- package/dist/SipConnectorFacade/SipConnectorFacade.d.ts +132 -0
- package/dist/SipConnectorFacade/index.d.ts +1 -0
- package/dist/doMock.cjs +1 -1
- package/dist/doMock.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +582 -568
- package/dist/tools/index.d.ts +0 -18
- package/dist/types.d.ts +9 -0
- package/package.json +3 -3
- package/dist/SipConnector-BWx586hI.cjs +0 -1
- package/dist/tools/answerIncomingCall.d.ts +0 -26
- package/dist/tools/callToServer.d.ts +0 -27
- package/dist/tools/connectToServer.d.ts +0 -17
- package/dist/tools/disconnectFromServer.d.ts +0 -7
- package/dist/tools/resolveAskPermissionToEnableCam.d.ts +0 -3
- package/dist/tools/resolveGetRemoteStreams.d.ts +0 -3
- package/dist/tools/resolveHandleChangeTracks.d.ts +0 -4
- package/dist/tools/resolveOnMoveToParticipants.d.ts +0 -3
- package/dist/tools/resolveOnMoveToSpectators.d.ts +0 -3
- package/dist/tools/resolveOnMustStopPresentation.d.ts +0 -3
- package/dist/tools/resolveOnUseLicense.d.ts +0 -4
- package/dist/tools/resolveReplaceMediaStream.d.ts +0 -14
- package/dist/tools/resolveSendMediaState.d.ts +0 -6
- package/dist/tools/resolveSendRefusalToTurnOnCam.d.ts +0 -3
- package/dist/tools/resolveSendRefusalToTurnOnMic.d.ts +0 -3
- package/dist/tools/resolveStartPresentation.d.ts +0 -16
- package/dist/tools/resolveStopShareSipConnector.d.ts +0 -5
- package/dist/tools/resolveUpdatePresentation.d.ts +0 -14
- package/dist/tools/resolveUpdateRemoteStreams.d.ts +0 -8
package/dist/tools/index.d.ts
CHANGED
|
@@ -1,24 +1,6 @@
|
|
|
1
|
-
export { default as resolveAnswerIncomingCall } from './answerIncomingCall';
|
|
2
|
-
export { default as resolveCallToServer } from './callToServer';
|
|
3
|
-
export { default as resolveConnectToServer } from './connectToServer';
|
|
4
|
-
export { default as resolveDisconnectFromServer } from './disconnectFromServer';
|
|
5
1
|
export * as error from './error';
|
|
6
2
|
export { default as getExtraHeaders } from './getExtraHeaders';
|
|
7
3
|
export { default as getUserAgent } from './getUserAgent';
|
|
8
4
|
export { PURGATORY_CONFERENCE_NUMBER, default as hasPurgatory } from './hasPurgatory';
|
|
9
|
-
export { default as resolveAskPermissionToEnableCam } from './resolveAskPermissionToEnableCam';
|
|
10
|
-
export { default as resolveGetRemoteStreams } from './resolveGetRemoteStreams';
|
|
11
|
-
export { default as resolveOnMoveToParticipants } from './resolveOnMoveToParticipants';
|
|
12
|
-
export { default as resolveOnMoveToSpectators } from './resolveOnMoveToSpectators';
|
|
13
|
-
export { default as resolveOnMustStopPresentation } from './resolveOnMustStopPresentation';
|
|
14
|
-
export { default as resolveOnUseLicense } from './resolveOnUseLicense';
|
|
15
|
-
export { default as resolveReplaceMediaStream } from './resolveReplaceMediaStream';
|
|
16
|
-
export { default as resolveSendMediaState } from './resolveSendMediaState';
|
|
17
|
-
export { default as resolveSendRefusalToTurnOnCam } from './resolveSendRefusalToTurnOnCam';
|
|
18
|
-
export { default as resolveSendRefusalToTurnOnMic } from './resolveSendRefusalToTurnOnMic';
|
|
19
|
-
export { default as resolveStartPresentation } from './resolveStartPresentation';
|
|
20
|
-
export { default as resolveStopShareSipConnector } from './resolveStopShareSipConnector';
|
|
21
|
-
export { default as resolveUpdatePresentation } from './resolveUpdatePresentation';
|
|
22
|
-
export { default as resolveUpdateRemoteStreams } from './resolveUpdateRemoteStreams';
|
|
23
5
|
export { default as sendDTMFAccumulated } from './sendDTMFAccumulated';
|
|
24
6
|
export { default as createSyncMediaState } from './syncMediaState';
|
package/dist/types.d.ts
CHANGED
|
@@ -54,3 +54,12 @@ export type TSize = {
|
|
|
54
54
|
height: number;
|
|
55
55
|
};
|
|
56
56
|
export type TSimulcastEncodings = TSize[];
|
|
57
|
+
export declare enum EMimeTypesVideoCodecs {
|
|
58
|
+
VP8 = "video/VP8",
|
|
59
|
+
VP9 = "video/VP9",
|
|
60
|
+
H264 = "video/H264",
|
|
61
|
+
AV1 = "video/AV1",
|
|
62
|
+
rtx = "video/rtx",
|
|
63
|
+
red = "video/red",
|
|
64
|
+
flexfec03 = "video/flexfec-03"
|
|
65
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sip-connector",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "12.1.0",
|
|
4
4
|
"description": "Module for connect to Vinteo server",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webrtc",
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
65
|
"@krivega/cancelable-promise": "^1.1.3",
|
|
66
|
-
"@krivega/jssip": "^5.0.
|
|
66
|
+
"@krivega/jssip": "^5.0.3",
|
|
67
67
|
"debug": "^4.3.7",
|
|
68
68
|
"events-constructor": "^1.3.0",
|
|
69
69
|
"repeated-calls": "^2.3.0",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
},
|
|
112
112
|
"peerDependencies": {
|
|
113
113
|
"@krivega/cancelable-promise": "^1.1.3",
|
|
114
|
-
"@krivega/jssip": "^5.0.
|
|
114
|
+
"@krivega/jssip": "^5.0.3",
|
|
115
115
|
"debug": "^4.3.7",
|
|
116
116
|
"events-constructor": "^1.3.0",
|
|
117
117
|
"repeated-calls": "^2.2.1",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";var Dt=Object.defineProperty;var Mt=(s,e,t)=>e in s?Dt(s,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):s[e]=t;var o=(s,e,t)=>Mt(s,typeof e!="symbol"?e+"":e,t);const C=require("@krivega/cancelable-promise"),be=require("events-constructor"),we=require("repeated-calls"),G=require("debug"),pt="Connection Error",Be="Request Timeout",vt="SIP Failure Code",yt="Internal Error",bt="Busy",$="Rejected",wt="Redirected",Ut="Unavailable",Fe="Not Found",Lt="Address Incomplete",Ht="Incompatible SDP",Wt="Missing SDP",qt="Authentication Error",Ve="Terminated",kt="WebRTC Error",xe="Canceled",Bt="No Answer",Ft="Expires",Vt="No ACK",xt="Dialog Error",Yt="User Denied Media Access",Ye="Bad Media Description",Gt="RTP Timeout",$t=Object.freeze(Object.defineProperty({__proto__:null,ADDRESS_INCOMPLETE:Lt,AUTHENTICATION_ERROR:qt,BAD_MEDIA_DESCRIPTION:Ye,BUSY:bt,BYE:Ve,CANCELED:xe,CONNECTION_ERROR:pt,DIALOG_ERROR:xt,EXPIRES:Ft,INCOMPATIBLE_SDP:Ht,INTERNAL_ERROR:yt,MISSING_SDP:Wt,NOT_FOUND:Fe,NO_ACK:Vt,NO_ANSWER:Bt,REDIRECTED:wt,REJECTED:$,REQUEST_TIMEOUT:Be,RTP_TIMEOUT:Gt,SIP_FAILURE_CODE:vt,UNAVAILABLE:Ut,USER_DENIED_MEDIA_ACCESS:Yt,WEBRTC_ERROR:kt},Symbol.toStringTag,{value:"Module"})),J="incomingCall",X="declinedIncomingCall",Q="failedIncomingCall",z="terminatedIncomingCall",B="connecting",P="connected",N="disconnected",y="newRTCSession",m="registered",j="unregistered",O="registrationFailed",Ge="newMessage",K="sipEvent",Z="availableSecondRemoteStream",ee="notAvailableSecondRemoteStream",te="mustStopPresentation",b="shareState",ne="enterRoom",se="useLicense",ie="peerconnection:confirmed",oe="peerconnection:ontrack",w="channels",re="channels:notify",ae="ended:fromserver",ce="main-cam-control",Ee="admin-stop-main-cam",_e="admin-start-main-cam",le="admin-stop-mic",de="admin-start-mic",U="admin-force-sync-media-state",he="participant:added-to-list-moderators",Te="participant:removed-from-list-moderators",ue="participant:move-request-to-stream",F="participant:move-request-to-spectators",V="participant:move-request-to-participants",Se="participation:accepting-word-request",Ne="participation:cancelling-word-request",Ce="webcast:started",ge="webcast:stopped",Ae="account:changed",Re="account:deleted",Ie="conference:participant-token-issued",D="ended",$e="sending",Je="reinvite",Xe="replaces",Qe="refer",ze="progress",je="accepted",L="confirmed",H="peerconnection",R="failed",Ke="muted",Ze="unmuted",fe="newDTMF",Pe="newInfo",et="hold",tt="unhold",nt="update",st="sdp",it="icecandidate",ot="getusermediafailed",rt="peerconnection:createofferfailed",at="peerconnection:createanswerfailed",ct="peerconnection:setlocaldescriptionfailed",Et="peerconnection:setremotedescriptionfailed",_t="presentation:start",lt="presentation:started",dt="presentation:end",me="presentation:ended",W="presentation:failed",ht="SPECTATOR",Tt="PARTICIPANT",ut=1e6,Jt=Object.freeze(Object.defineProperty({__proto__:null,ACCEPTED:je,ACCOUNT_CHANGED:Ae,ACCOUNT_DELETED:Re,ADMIN_FORCE_SYNC_MEDIA_STATE:U,ADMIN_START_MAIN_CAM:_e,ADMIN_START_MIC:de,ADMIN_STOP_MAIN_CAM:Ee,ADMIN_STOP_MIC:le,AVAILABLE_SECOND_REMOTE_STREAM_EVENT:Z,CHANNELS:w,CHANNELS_NOTIFY:re,CONFERENCE_PARTICIPANT_TOKEN_ISSUED:Ie,CONFIRMED:L,CONNECTED:P,CONNECTING:B,DECLINED_INCOMING_CALL:X,DISCONNECTED:N,ENDED:D,ENDED_FROM_SERVER:ae,ENTER_ROOM:ne,FAILED:R,FAILED_INCOMING_CALL:Q,GET_USER_MEDIA_FAILED:ot,HOLD:et,ICE_CANDIDATE:it,INCOMING_CALL:J,MAIN_CAM_CONTROL:ce,MUST_STOP_PRESENTATION_EVENT:te,MUTED:Ke,NEW_DTMF:fe,NEW_INFO:Pe,NEW_MESSAGE:Ge,NEW_RTC_SESSION:y,NOT_AVAILABLE_SECOND_REMOTE_STREAM_EVENT:ee,ONE_MEGABIT_IN_BITS:ut,PARTICIPANT:Tt,PARTICIPANT_ADDED_TO_LIST_MODERATORS:he,PARTICIPANT_MOVE_REQUEST_TO_PARTICIPANTS:V,PARTICIPANT_MOVE_REQUEST_TO_SPECTATORS:F,PARTICIPANT_MOVE_REQUEST_TO_STREAM:ue,PARTICIPANT_REMOVED_FROM_LIST_MODERATORS:Te,PARTICIPATION_ACCEPTING_WORD_REQUEST:Se,PARTICIPATION_CANCELLING_WORD_REQUEST:Ne,PEER_CONNECTION:H,PEER_CONNECTION_CONFIRMED:ie,PEER_CONNECTION_CREATE_ANSWER_FAILED:at,PEER_CONNECTION_CREATE_OFFER_FAILED:rt,PEER_CONNECTION_ONTRACK:oe,PEER_CONNECTION_SET_LOCAL_DESCRIPTION_FAILED:ct,PEER_CONNECTION_SET_REMOTE_DESCRIPTION_FAILED:Et,PRESENTATION_END:dt,PRESENTATION_ENDED:me,PRESENTATION_FAILED:W,PRESENTATION_START:_t,PRESENTATION_STARTED:lt,PROGRESS:ze,REFER:Qe,REGISTERED:m,REGISTRATION_FAILED:O,REINVITE:Je,REPLACES:Xe,SDP:st,SENDING:$e,SHARE_STATE:b,SIP_EVENT:K,SPECTATOR:ht,TERMINATED_INCOMING_CALL:z,UNHOLD:tt,UNMUTED:Ze,UNREGISTERED:j,UPDATE:nt,USE_LICENSE:se,WEBCAST_STARTED:Ce,WEBCAST_STOPPED:ge},Symbol.toStringTag,{value:"Module"})),St=[J,X,z,Q,Se,Ne,ue,re,Ie,Ae,Re,Ce,ge,he,Te],Oe=[B,P,N,y,m,j,O,Ge,K],Nt=[Z,ee,te,b,ne,se,ie,oe,w,ae,ce,_e,Ee,le,de,U,F,V],De=[D,B,$e,Je,Xe,Qe,ze,je,L,H,R,Ke,Ze,fe,Pe,et,tt,nt,st,it,ot,rt,at,ct,Et,_t,lt,dt,me,W],Me=[...Oe,...St],pe=[...De,...Nt],Xt=Object.freeze(Object.defineProperty({__proto__:null,SESSION_EVENT_NAMES:pe,SESSION_JSSIP_EVENT_NAMES:De,SESSION_SYNTHETICS_EVENT_NAMES:Nt,UA_EVENT_NAMES:Me,UA_JSSIP_EVENT_NAMES:Oe,UA_SYNTHETICS_EVENT_NAMES:St},Symbol.toStringTag,{value:"Module"})),Qt=s=>{const e=[];return s&&e.push(`X-Vinteo-Remote: ${s}`),e},zt="content-type",jt="x-webrtc-enter-room",M="application/vinteo.webrtc.sharedesktop",Kt="application/vinteo.webrtc.roomname",Zt="application/vinteo.webrtc.channels",en="application/vinteo.webrtc.mediastate",tn="application/vinteo.webrtc.refusal",Ue="application/vinteo.webrtc.maincam",nn="application/vinteo.webrtc.mic",sn="application/vinteo.webrtc.uselic",on="X-WEBRTC-USE-LICENSE",rn="X-WEBRTC-PARTICIPANT-NAME",Le="X-WEBRTC-INPUT-CHANNELS",He="X-WEBRTC-OUTPUT-CHANNELS",an="X-WEBRTC-MAINCAM",cn="X-WEBRTC-MIC",We="X-WEBRTC-SYNC",En="X-WEBRTC-MAINCAM-RESOLUTION",_n="X-WEBRTC-MEDIA-STATE",ln="X-Vinteo-Media-Type",dn="X-Vinteo-MainCam-State",hn="X-Vinteo-Mic-State",Tn="application/vinteo.webrtc.partstate",un="X-WEBRTC-PARTSTATE",Sn="application/vinteo.webrtc.notify",Nn="X-VINTEO-NOTIFY",f="x-webrtc-share-state",Cn=`${f}: LETMESTARTPRESENTATION`,gn=`${f}: STOPPRESENTATION`,Ct="YOUCANRECEIVECONTENT",gt="CONTENTEND",At="YOUMUSTSTOPSENDCONTENT",An=`${f}: ${At}`,Rn=`${f}: ${Ct}`,In=`${f}: ${gt}`,fn="X-WEBRTC-REQUEST-ENABLE-MEDIA-DEVICE",Pn=`${fn}: LETMESTARTMAINCAM`,ve="sip-connector",v=G(ve),mn=()=>{G.enable(ve)},On=()=>{G.enable(`-${ve}`)},Dn=(s,e)=>{s.getVideoTracks().forEach(n=>{"contentHint"in n&&n.contentHint!==e&&(n.contentHint=e)})},p=(s,{videoMode:e,audioMode:t,contentHint:n}={})=>{if(!s||e==="recvonly"&&t==="recvonly")return;const i=t==="recvonly"?[]:s.getAudioTracks(),r=e==="recvonly"?[]:s.getVideoTracks(),a=[...i,...r],c=new MediaStream(a);return c.getTracks=()=>[...c.getAudioTracks(),...c.getVideoTracks()],n&&n!=="none"&&Dn(c,n),c};var I=(s=>(s.PAUSE_MAIN_CAM="PAUSEMAINCAM",s.RESUME_MAIN_CAM="RESUMEMAINCAM",s.MAX_MAIN_CAM_RESOLUTION="MAXMAINCAMRESOLUTION",s.ADMIN_STOP_MAIN_CAM="ADMINSTOPMAINCAM",s.ADMIN_START_MAIN_CAM="ADMINSTARTMAINCAM",s))(I||{}),q=(s=>(s.ADMIN_STOP_MIC="ADMINSTOPMIC",s.ADMIN_START_MIC="ADMINSTARTMIC",s))(q||{}),k=(s=>(s.ADMIN_SYNC_FORCED="1",s.ADMIN_SYNC_NOT_FORCED="0",s))(k||{}),Rt=(s=>(s.AUDIO="AUDIO",s.VIDEO="VIDEO",s.AUDIOPLUSPRESENTATION="AUDIOPLUSPRESENTATION",s))(Rt||{});function Mn(s){return e=>`sip:${e}@${s}`}const pn=(s,e)=>()=>Math.floor(Math.random()*(e-s))+s,qe=s=>s.trim().replaceAll(" ","_"),vn=pn(1e5,99999999),yn=s=>s.some(t=>{const{kind:n}=t;return n==="video"}),bn="Error decline with 603",wn=1006,Un=s=>typeof s=="object"&&s!==null&&"code"in s&&s.code===wn,Ln=s=>s.message===bn,Hn=(s,e)=>s.find(t=>t.track&&e.getTracks().includes(t.track)),Wn=(s,e)=>(s.degradationPreference=e.degradationPreference,s),qn=(s,e)=>{s.encodings===void 0&&(s.encodings=[]);for(let t=s.encodings.length;t<e;t+=1)s.encodings.push({});return s},It=s=>(e,t)=>t!==void 0&&e!==t||t===void 0&&e!==s,kn=It(),Bn=(s,e)=>{if(kn(s,e))return s},Fn=(s,e)=>{const t=s.maxBitrate,n=Bn(e,t);return n!==void 0&&(s.maxBitrate=n),s},ft=1,Vn=It(ft),xn=(s,e)=>{const t=s===void 0?void 0:Math.max(s,ft);if(t!==void 0&&Vn(t,e))return t},Yn=(s,e)=>{const t=s.scaleResolutionDownBy,n=xn(e,t);return n!==void 0&&(s.scaleResolutionDownBy=n),s},Gn=(s,e)=>{var n;const t=((n=e.encodings)==null?void 0:n.length)??0;return qn(s,t),s.encodings.forEach((i,r)=>{const a=((e==null?void 0:e.encodings)??[])[r],c=a==null?void 0:a.maxBitrate,_=a==null?void 0:a.scaleResolutionDownBy;Fn(i,c),Yn(i,_)}),s},$n=(s,e)=>{var t,n,i,r,a,c,_,l;if(((t=s.codecs)==null?void 0:t.length)!==((n=e.codecs)==null?void 0:n.length))return!0;for(let E=0;E<(((i=s.codecs)==null?void 0:i.length)??0);E++)if(JSON.stringify(s.codecs[E])!==JSON.stringify(e.codecs[E]))return!0;if(((r=s.headerExtensions)==null?void 0:r.length)!==((a=e.headerExtensions)==null?void 0:a.length))return!0;for(let E=0;E<(((c=s.headerExtensions)==null?void 0:c.length)??0);E++)if(JSON.stringify(s.headerExtensions[E])!==JSON.stringify(e.headerExtensions[E]))return!0;if(((_=s.encodings)==null?void 0:_.length)!==((l=e.encodings)==null?void 0:l.length))return!0;for(let E=0;E<(s.encodings.length??0);E++)if(JSON.stringify(s.encodings[E])!==JSON.stringify(e.encodings[E]))return!0;return s.rtcp.cname!==e.rtcp.cname||s.rtcp.reducedSize!==e.rtcp.reducedSize||s.degradationPreference!==e.degradationPreference},Pt=async(s,e)=>{const t=s.getParameters(),n=JSON.parse(JSON.stringify(t));Gn(t,e),Wn(t,e);const i=$n(n,t);return i&&await s.setParameters(t),{parameters:t,isChanged:i}},mt=async(s,e,t)=>{const{isChanged:n,parameters:i}=await Pt(s,{encodings:[{scaleResolutionDownBy:e.scaleResolutionDownBy,maxBitrate:e.maxBitrate}]});return n&&t&&t(i),{isChanged:n,parameters:i}},Jn=async(s,e,t)=>{const n=Hn(s,e);if(n)return mt(n,{maxBitrate:t})},Xn=486,Qn=487,Y="local",ke="remote",zn=3,jn=1,Kn=(s=new Error)=>{const{originator:e,cause:t}=s;return C.isCanceledError(s)?!0:typeof t=="string"?t===Be||t===$||e===Y&&(t===xe||t===Ve):!1},g="SipConnector",Zn="channels",es="WebcastStarted",ts="WebcastStopped",ns="accountChanged",ss="accountDeleted",is="addedToListModerators",os="removedFromListModerators",rs="ParticipationRequestAccepted",as="ParticipationRequestRejected",cs="ParticipantMovedToWebcast",Es="ConferenceParticipantTokenIssued";class _s{constructor({JsSIP:e}){o(this,"_isRegisterConfig",!1);o(this,"_connectionConfiguration",{});o(this,"_remoteStreams",{});o(this,"JsSIP");o(this,"_sessionEvents");o(this,"_uaEvents");o(this,"_cancelableConnect");o(this,"_cancelableConnectWithRepeatedCalls");o(this,"_cancelableSendPresentationWithRepeatedCalls");o(this,"_cancelableInitUa");o(this,"_cancelableDisconnect");o(this,"_cancelableSet");o(this,"_cancelableCall");o(this,"_cancelableAnswer");o(this,"_cancelableSendDTMF");o(this,"getSipServerUrl",e=>e);o(this,"promisePendingStartPresentation");o(this,"promisePendingStopPresentation");o(this,"ua");o(this,"session");o(this,"incomingSession");o(this,"_streamPresentationCurrent");o(this,"socket");o(this,"connect",async(e,t)=>(this._cancelRequests(),this._connectWithDuplicatedCalls(e,t)));o(this,"initUa",async e=>this._cancelableInitUa.request(e));o(this,"set",async e=>this._cancelableSet.request(e));o(this,"call",async e=>this._cancelableCall.request(e));o(this,"disconnect",async()=>(this._cancelRequests(),this._disconnectWithoutCancelRequests()));o(this,"answerToIncomingCall",async e=>this._cancelableAnswer.request(e));o(this,"sendDTMF",async e=>this._cancelableSendDTMF.request(e));o(this,"hangUp",async()=>(this._cancelRequests(),this._hangUpWithoutCancelRequests()));o(this,"tryRegister",async()=>{if(!this.isRegisterConfig)throw new Error("Config is not registered");this._uaEvents.trigger(B,void 0);try{await this.unregister()}catch(e){v("tryRegister",e)}return this.register()});o(this,"declineToIncomingCall",async({statusCode:e=Qn}={})=>new Promise((t,n)=>{if(!this.isAvailableIncomingCall){n(new Error("no incomingSession"));return}const i=this.incomingSession,r=this.remoteCallerData;this._cancelableCall.cancelRequest(),this._cancelableAnswer.cancelRequest(),this.removeIncomingSession(),this._uaEvents.trigger(X,r),t(i.terminate({status_code:e}))}));o(this,"busyIncomingCall",async()=>this.declineToIncomingCall({statusCode:Xn}));o(this,"removeIncomingSession",()=>{delete this.incomingSession});o(this,"_connectWithDuplicatedCalls",async(e,{callLimit:t=zn}={})=>{const n=async()=>this._cancelableConnect.request(e),i=r=>{var l;const c=!!((l=this.ua)!=null&&l.isConnected())&&this.hasEqualConnectionConfiguration(e),_=!!r&&!Un(r);return c||_};return this._cancelableConnectWithRepeatedCalls=we.repeatedCallsAsync({targetFunction:n,isComplete:i,callLimit:t,isRejectAsValid:!0,isCheckBeforeCall:!1,onAfterCancel:()=>{this._cancelableConnect.cancelRequest()}}),this._cancelableConnectWithRepeatedCalls.then(r=>{if(r instanceof this.JsSIP.UA)return r;throw r})});o(this,"handleNewRTCSession",({originator:e,session:t})=>{if(e===ke){this.incomingSession=t;const n=this.remoteCallerData;t.on(R,i=>{this.removeIncomingSession(),i.originator===Y?this._uaEvents.trigger(z,n):this._uaEvents.trigger(Q,n)}),this._uaEvents.trigger(J,n)}});o(this,"_connect",async e=>this.initUa(e).then(async()=>this._start()));o(this,"_initUa",async({user:e,password:t,sipServerUrl:n,sipWebSocketServerURL:i,remoteAddress:r,sessionTimers:a,registerExpires:c,connectionRecoveryMinInterval:_,connectionRecoveryMaxInterval:l,userAgent:E,displayName:h="",register:d=!1,extraHeaders:T=[]})=>{if(!n)throw new Error("sipServerUrl is required");if(!i)throw new Error("sipWebSocketServerURL is required");if(d&&!e)throw new Error("user is required for authorized connection");if(d&&!t)throw new Error("password is required for authorized connection");this._connectionConfiguration={sipServerUrl:n,displayName:h,register:d,user:e,password:t};const{configuration:u,helpers:S}=this.createUaConfiguration({user:e,sipServerUrl:n,sipWebSocketServerURL:i,password:t,displayName:h,register:d,sessionTimers:a,registerExpires:c,connectionRecoveryMinInterval:_,connectionRecoveryMaxInterval:l,userAgent:E});return this.getSipServerUrl=S.getSipServerUrl,this.socket=S.socket,this.ua&&await this._disconnectWithoutCancelRequests(),this._isRegisterConfig=!!d,this.ua=this._createUa({...u,remoteAddress:r,extraHeaders:T}),this._uaEvents.eachTriggers((A,x)=>{const ye=Oe.find(Ot=>Ot===x);ye&&this.ua&&this.ua.on(ye,A)}),this.ua});o(this,"_createUa",({remoteAddress:e,extraHeaders:t=[],...n})=>{const i=new this.JsSIP.UA(n),a=[...e?Qt(e):[],...t];return a.length>0&&i.registrator().setExtraHeaders(a),i});o(this,"_start",async()=>new Promise((e,t)=>{const{ua:n}=this;if(!n){t(new Error("this.ua is not initialized"));return}const i=()=>{c(),e(n)},r=_=>{c(),t(_)},a=()=>{this.isRegisterConfig?(this.on(m,i),this.on(O,r)):this.on(P,i),this.on(N,r)},c=()=>{this.off(m,i),this.off(O,r),this.off(P,i),this.off(N,r)};a(),this.on(y,this.handleNewRTCSession),n.start()}));o(this,"_set",async({displayName:e,password:t})=>new Promise((n,i)=>{const{ua:r}=this;if(!r){i(new Error("this.ua is not initialized"));return}let a=!1,c=!1;e!==void 0&&e!==this._connectionConfiguration.displayName&&(a=r.set("display_name",qe(e)),this._connectionConfiguration.displayName=e),t!==void 0&&t!==this._connectionConfiguration.password&&(c=r.set("password",t),this._connectionConfiguration.password=t);const _=a||c;c&&this.isRegisterConfig?this.register().then(()=>{n(_)}).catch(l=>{i(l)}):_?n(_):i(new Error("nothing changed"))}));o(this,"_disconnectWithoutCancelRequests",async()=>this._cancelableDisconnect.request());o(this,"_disconnect",async()=>{this.off(y,this.handleNewRTCSession);const e=new Promise(t=>{this.once(N,()=>{delete this.ua,t()})});return this.ua?(await this._hangUpWithoutCancelRequests(),this.ua?this.ua.stop():this._uaEvents.trigger(N,void 0)):this._uaEvents.trigger(N,void 0),e});o(this,"_call",async({number:e,mediaStream:t,extraHeaders:n=[],ontrack:i,iceServers:r,videoMode:a,audioMode:c,contentHint:_,offerToReceiveAudio:l=!0,offerToReceiveVideo:E=!0,sendEncodings:h,onAddedTransceiver:d})=>new Promise((T,u)=>{const{ua:S}=this;if(!S){u(new Error("this.ua is not initialized"));return}this._connectionConfiguration.number=e,this._connectionConfiguration.answer=!1,this._handleCall({ontrack:i}).then(T).catch(A=>{u(A)}),this.session=S.call(this.getSipServerUrl(e),{extraHeaders:n,mediaStream:p(t,{videoMode:a,audioMode:c,contentHint:_}),eventHandlers:this._sessionEvents.triggers,videoMode:a,audioMode:c,pcConfig:{iceServers:r},rtcOfferConstraints:{offerToReceiveAudio:l,offerToReceiveVideo:E},sendEncodings:h,onAddedTransceiver:d})}));o(this,"_answer",async({mediaStream:e,ontrack:t,extraHeaders:n=[],iceServers:i,videoMode:r,audioMode:a,contentHint:c,sendEncodings:_,onAddedTransceiver:l})=>new Promise((E,h)=>{if(!this.isAvailableIncomingCall){h(new Error("no incomingSession"));return}this.session=this.incomingSession,this.removeIncomingSession();const{session:d}=this;if(!d){h(new Error("No session established"));return}this._sessionEvents.eachTriggers((u,S)=>{const A=De.find(x=>x===S);A&&d.on(A,u)}),this._connectionConfiguration.answer=!0,this._connectionConfiguration.number=d.remote_identity.uri.user,this._handleCall({ontrack:t}).then(E).catch(u=>{h(u)});const T=p(e,{videoMode:r,audioMode:a,contentHint:c});d.answer({extraHeaders:n,videoMode:r,audioMode:a,mediaStream:T,pcConfig:{iceServers:i},sendEncodings:_,onAddedTransceiver:l})}));o(this,"_handleCall",async({ontrack:e})=>new Promise((t,n)=>{const i=()=>{this.onSession(H,E),this.onSession(L,h)},r=()=>{this.offSession(H,E),this.offSession(L,h)},a=()=>{this.onSession(R,_),this.onSession(D,_)},c=()=>{this.offSession(R,_),this.offSession(D,_)},_=d=>{r(),c(),n(d)};let l;const E=({peerconnection:d})=>{l=d,l.ontrack=T=>{this._sessionEvents.trigger(oe,l),e&&e(T)}},h=()=>{l&&this._sessionEvents.trigger(ie,l),r(),c(),t(l)};i(),a()}));o(this,"_restoreSession",()=>{this._cancelRequestsAndResetPresentation(),delete this._connectionConfiguration.number,delete this.session,this._remoteStreams={}});o(this,"_sendDTMF",async e=>new Promise((t,n)=>{const{session:i}=this;if(!i){n(new Error("No session established"));return}this.onceSession(fe,({originator:r})=>{r===Y&&t()}),i.sendDTMF(e,{duration:120,interToneGap:600})}));o(this,"_hangUpWithoutCancelRequests",async()=>{if(this.ua&&this.session){const{session:e}=this;if(this._streamPresentationCurrent)try{await this.stopPresentation()}catch(t){v("error stop presentation: ",t)}if(this._restoreSession(),!e.isEnded())return e.terminateAsync()}});o(this,"_handleShareState",e=>{switch(e){case Ct:{this._sessionEvents.trigger(Z,void 0);break}case gt:{this._sessionEvents.trigger(ee,void 0);break}case At:{this._sessionEvents.trigger(te,void 0);break}}});o(this,"_maybeTriggerChannels",e=>{const t=e.getHeader(Le),n=e.getHeader(He);if(t&&n){const i={inputChannels:t,outputChannels:n};this._sessionEvents.trigger(w,i)}});o(this,"_handleNotify",e=>{switch(e.cmd){case Zn:{const t=e;this._triggerChannelsNotify(t);break}case es:{const t=e;this._triggerWebcastStartedNotify(t);break}case ts:{const t=e;this._triggerWebcastStoppedNotify(t);break}case is:{const t=e;this._triggerAddedToListModeratorsNotify(t);break}case os:{const t=e;this._triggerRemovedFromListModeratorsNotify(t);break}case rs:{const t=e;this._triggerParticipationAcceptingWordRequest(t);break}case as:{const t=e;this._triggerParticipationCancellingWordRequest(t);break}case cs:{const t=e;this._triggerParticipantMoveRequestToStream(t);break}case ns:{this._triggerAccountChangedNotify();break}case ss:{this._triggerAccountDeletedNotify();break}case Es:{const t=e;this._triggerConferenceParticipantTokenIssued(t);break}default:v("unknown cmd",e.cmd)}});o(this,"_triggerRemovedFromListModeratorsNotify",({conference:e})=>{const t={conference:e};this._uaEvents.trigger(Te,t)});o(this,"_triggerAddedToListModeratorsNotify",({conference:e})=>{const t={conference:e};this._uaEvents.trigger(he,t)});o(this,"_triggerWebcastStartedNotify",({body:{conference:e,type:t}})=>{const n={conference:e,type:t};this._uaEvents.trigger(Ce,n)});o(this,"_triggerWebcastStoppedNotify",({body:{conference:e,type:t}})=>{const n={conference:e,type:t};this._uaEvents.trigger(ge,n)});o(this,"_triggerAccountChangedNotify",()=>{this._uaEvents.trigger(Ae,void 0)});o(this,"_triggerAccountDeletedNotify",()=>{this._uaEvents.trigger(Re,void 0)});o(this,"_triggerConferenceParticipantTokenIssued",({body:{conference:e,participant:t,jwt:n}})=>{const i={conference:e,participant:t,jwt:n};this._uaEvents.trigger(Ie,i)});o(this,"_triggerChannelsNotify",e=>{const t=e.input,n=e.output,i={inputChannels:t,outputChannels:n};this._uaEvents.trigger(re,i)});o(this,"_triggerParticipationAcceptingWordRequest",({body:{conference:e}})=>{const t={conference:e};this._uaEvents.trigger(Se,t)});o(this,"_triggerParticipationCancellingWordRequest",({body:{conference:e}})=>{const t={conference:e};this._uaEvents.trigger(Ne,t)});o(this,"_triggerParticipantMoveRequestToStream",({body:{conference:e}})=>{const t={conference:e};this._uaEvents.trigger(ue,t)});o(this,"_triggerEnterRoom",e=>{const t=e.getHeader(jt),n=e.getHeader(rn);this._sessionEvents.trigger(ne,{room:t,participantName:n})});o(this,"_triggerShareState",e=>{const t=e.getHeader(f);this._sessionEvents.trigger(b,t)});o(this,"_maybeTriggerParticipantMoveRequest",e=>{const t=e.getHeader(un);t===ht&&this._sessionEvents.trigger(F,void 0),t===Tt&&this._sessionEvents.trigger(V,void 0)});o(this,"_triggerMainCamControl",e=>{const t=e.getHeader(an),n=e.getHeader(We),i=n===k.ADMIN_SYNC_FORCED;if(t===I.ADMIN_START_MAIN_CAM){this._sessionEvents.trigger(_e,{isSyncForced:i});return}if(t===I.ADMIN_STOP_MAIN_CAM){this._sessionEvents.trigger(Ee,{isSyncForced:i});return}(t===I.RESUME_MAIN_CAM||t===I.PAUSE_MAIN_CAM)&&n&&this._sessionEvents.trigger(U,{isSyncForced:i});const r=e.getHeader(En);this._sessionEvents.trigger(ce,{mainCam:t,resolutionMainCam:r})});o(this,"_triggerMicControl",e=>{const t=e.getHeader(cn),i=e.getHeader(We)===k.ADMIN_SYNC_FORCED;t===q.ADMIN_START_MIC?this._sessionEvents.trigger(de,{isSyncForced:i}):t===q.ADMIN_STOP_MIC&&this._sessionEvents.trigger(le,{isSyncForced:i})});o(this,"_triggerUseLicense",e=>{const t=e.getHeader(on);this._sessionEvents.trigger(se,t)});o(this,"_handleNewInfo",e=>{const{originator:t}=e;if(t!=="remote")return;const{request:n}=e,i=n.getHeader(zt);if(i)switch(i){case Kt:{this._triggerEnterRoom(n),this._maybeTriggerChannels(n);break}case Sn:{this._maybeHandleNotify(n);break}case M:{this._triggerShareState(n);break}case Ue:{this._triggerMainCamControl(n);break}case nn:{this._triggerMicControl(n);break}case sn:{this._triggerUseLicense(n);break}case Tn:{this._maybeTriggerParticipantMoveRequest(n);break}}});o(this,"_handleSipEvent",({request:e})=>{this._maybeHandleNotify(e)});o(this,"_maybeHandleNotify",e=>{const t=e.getHeader(Nn);if(t){const n=JSON.parse(t);this._handleNotify(n)}});o(this,"_handleEnded",e=>{const{originator:t}=e;t===ke&&this._sessionEvents.trigger(ae,e),this._restoreSession()});this.JsSIP=e,this._sessionEvents=new be(pe),this._uaEvents=new be(Me),this._cancelableConnect=new C.CancelableRequest(this._connect,{moduleName:g,afterCancelRequest:()=>{this._cancelableInitUa.cancelRequest(),this._cancelableDisconnect.cancelRequest()}}),this._cancelableInitUa=new C.CancelableRequest(this._initUa,{moduleName:g}),this._cancelableDisconnect=new C.CancelableRequest(this._disconnect,{moduleName:g}),this._cancelableSet=new C.CancelableRequest(this._set,{moduleName:g}),this._cancelableCall=new C.CancelableRequest(this._call,{moduleName:g}),this._cancelableAnswer=new C.CancelableRequest(this._answer,{moduleName:g}),this._cancelableSendDTMF=new C.CancelableRequest(this._sendDTMF,{moduleName:g}),this.onSession(b,this._handleShareState),this.onSession(Pe,this._handleNewInfo),this.on(K,this._handleSipEvent),this.onSession(R,this._handleEnded),this.onSession(D,this._handleEnded)}async register(){return new Promise((e,t)=>{this.isRegisterConfig&&this.ua?(this.ua.on(m,e),this.ua.on(O,t),this.ua.register()):t(new Error("Config is not registered"))})}async unregister(){return new Promise((e,t)=>{this.isRegistered&&this.ua?(this.ua.on(j,e),this.ua.unregister()):t(new Error("ua is not registered"))})}async sendOptions(e,t,n){if(!this.ua)throw new Error("is not connected");return new Promise((i,r)=>{try{this.ua.sendOptions(e,t,{extraHeaders:n,eventHandlers:{succeeded:()=>{i()},failed:r}})}catch(a){r(a)}})}async ping(e,t){var i;if(!((i=this.ua)!=null&&i.configuration.uri))throw new Error("is not connected");const n=this.ua.configuration.uri;return this.sendOptions(n,e,t)}async checkTelephony({userAgent:e,displayName:t,sipServerUrl:n,sipWebSocketServerURL:i,remoteAddress:r,extraHeaders:a}){return new Promise((c,_)=>{const{configuration:l}=this.createUaConfiguration({sipWebSocketServerURL:i,displayName:t,userAgent:e,sipServerUrl:n}),E=this._createUa({...l,remoteAddress:r,extraHeaders:a}),h=()=>{const T=new Error("Telephony is not available");_(T)};E.once(N,h);const d=()=>{E.removeAllListeners(),E.once(N,c),E.stop()};E.once(P,d),E.start()})}async replaceMediaStream(e,t){if(!this.session)throw new Error("No session established");const{contentHint:n}=t??{},i=p(e,{contentHint:n});return this.session.replaceMediaStream(i,t)}async askPermissionToEnableCam(e={}){if(!this.session)throw new Error("No session established");const t=[Pn];return this.session.sendInfo(Ue,void 0,{noTerminateWhenError:!0,...e,extraHeaders:t}).catch(n=>{if(Ln(n))throw n})}get isPendingPresentation(){return!!this.promisePendingStartPresentation||!!this.promisePendingStopPresentation}async _sendPresentationWithDuplicatedCalls({session:e,stream:t,presentationOptions:n,options:i={callLimit:jn}}){const r=async()=>this._sendPresentation(e,t,n),a=()=>!!this._streamPresentationCurrent;return this._cancelableSendPresentationWithRepeatedCalls=we.repeatedCallsAsync({targetFunction:r,isComplete:a,isRejectAsValid:!0,...i}),this._cancelableSendPresentationWithRepeatedCalls.then(c=>c)}hasEqualConnectionConfiguration(e){var i;const{configuration:t}=this.createUaConfiguration(e),n=(i=this.ua)==null?void 0:i.configuration;return(n==null?void 0:n.password)===t.password&&(n==null?void 0:n.register)===t.register&&(n==null?void 0:n.uri.toString())===t.uri&&(n==null?void 0:n.display_name)===t.display_name&&(n==null?void 0:n.user_agent)===t.user_agent&&(n==null?void 0:n.sockets)===t.sockets&&(n==null?void 0:n.session_timers)===t.session_timers&&(n==null?void 0:n.register_expires)===t.register_expires&&(n==null?void 0:n.connection_recovery_min_interval)===t.connection_recovery_min_interval&&(n==null?void 0:n.connection_recovery_max_interval)===t.connection_recovery_max_interval}createUaConfiguration({user:e,password:t,sipWebSocketServerURL:n,displayName:i="",sipServerUrl:r,register:a=!1,sessionTimers:c=!1,registerExpires:_=60*5,connectionRecoveryMinInterval:l=2,connectionRecoveryMaxInterval:E=6,userAgent:h}){if(a&&!t)throw new Error("password is required for authorized connection");const d=a&&e?e.trim():`${vn()}`,T=Mn(r),u=T(d),S=new this.JsSIP.WebSocketInterface(n);return{configuration:{password:t,register:a,uri:u,display_name:qe(i),user_agent:h,sdp_semantics:"unified-plan",sockets:[S],session_timers:c,register_expires:_,connection_recovery_min_interval:l,connection_recovery_max_interval:E},helpers:{socket:S,getSipServerUrl:T}}}async _sendPresentation(e,t,{maxBitrate:n=ut,isNeedReinvite:i=!0,isP2P:r=!1,contentHint:a="detail",sendEncodings:c,onAddedTransceiver:_}){const l=p(t,{contentHint:a});this._streamPresentationCurrent=l;const E=r?[Rn]:[Cn],h=e.sendInfo(M,void 0,{extraHeaders:E}).then(async()=>e.startPresentation(l,i,{sendEncodings:c,onAddedTransceiver:_})).then(async()=>{const{connection:d}=this;if(!d||n===void 0)return;const T=d.getSenders();await Jn(T,t,n)}).then(()=>t).catch(d=>{throw this._removeStreamPresentationCurrent(),this._sessionEvents.trigger(W,d),d});return this.promisePendingStartPresentation=h,h.finally(()=>{this.promisePendingStartPresentation=void 0})}async startPresentation(e,{isNeedReinvite:t,isP2P:n,maxBitrate:i,contentHint:r,sendEncodings:a,onAddedTransceiver:c}={},_){const l=this.establishedSession;if(!l)throw new Error("No session established");if(this._streamPresentationCurrent)throw new Error("Presentation is already started");return n&&await this.sendMustStopPresentation(l),this._sendPresentationWithDuplicatedCalls({session:l,stream:e,presentationOptions:{isNeedReinvite:t,isP2P:n,maxBitrate:i,contentHint:r,sendEncodings:a,onAddedTransceiver:c},options:_})}async sendMustStopPresentation(e){await e.sendInfo(M,void 0,{extraHeaders:[An]})}async stopPresentation({isP2P:e=!1}={}){this._cancelSendPresentationWithRepeatedCalls();const t=this._streamPresentationCurrent;let n=this.promisePendingStartPresentation??Promise.resolve();const i=e?[In]:[gn],r=this.establishedSession;return r&&t&&(n=n.then(async()=>r.sendInfo(M,void 0,{extraHeaders:i})).then(async()=>r.stopPresentation(t)).catch(a=>{throw this._sessionEvents.trigger(W,a),a})),!r&&t&&this._sessionEvents.trigger(me,t),this.promisePendingStopPresentation=n,n.finally(()=>{this._resetPresentation()})}async updatePresentation(e,{isP2P:t,maxBitrate:n,contentHint:i,sendEncodings:r,onAddedTransceiver:a}={}){const c=this.establishedSession;if(!c)throw new Error("No session established");if(!this._streamPresentationCurrent)throw new Error("Presentation has not started yet");return this.promisePendingStartPresentation&&await this.promisePendingStartPresentation,this._sendPresentation(c,e,{isP2P:t,maxBitrate:n,contentHint:i,isNeedReinvite:!1,sendEncodings:r,onAddedTransceiver:a})}_removeStreamPresentationCurrent(){delete this._streamPresentationCurrent}_resetPresentation(){this._removeStreamPresentationCurrent(),this.promisePendingStartPresentation=void 0,this.promisePendingStopPresentation=void 0}_cancelRequestsAndResetPresentation(){this._cancelSendPresentationWithRepeatedCalls(),this._resetPresentation()}on(e,t){return this._uaEvents.on(e,t)}once(e,t){return this._uaEvents.once(e,t)}onceRace(e,t){return this._uaEvents.onceRace(e,t)}async wait(e){return this._uaEvents.wait(e)}off(e,t){this._uaEvents.off(e,t)}onSession(e,t){return this._sessionEvents.on(e,t)}onceSession(e,t){return this._sessionEvents.once(e,t)}onceRaceSession(e,t){return this._sessionEvents.onceRace(e,t)}async waitSession(e){return this._sessionEvents.wait(e)}offSession(e,t){this._sessionEvents.off(e,t)}isConfigured(){return!!this.ua}getConnectionConfiguration(){return{...this._connectionConfiguration}}getRemoteStreams(){if(!this.connection)return;const t=this.connection.getReceivers().map(({track:n})=>n);return yn(t)?this._generateStreams(t):this._generateAudioStreams(t)}get connection(){var t;return(t=this.session)==null?void 0:t.connection}get remoteCallerData(){var e,t,n,i,r,a;return{displayName:(t=(e=this.incomingSession)==null?void 0:e.remote_identity)==null?void 0:t.display_name,host:(i=(n=this.incomingSession)==null?void 0:n.remote_identity)==null?void 0:i.uri.host,incomingNumber:(a=(r=this.incomingSession)==null?void 0:r.remote_identity)==null?void 0:a.uri.user,session:this.incomingSession}}get requested(){return this._cancelableConnect.requested||this._cancelableInitUa.requested||this._cancelableCall.requested||this._cancelableAnswer.requested}get establishedSession(){var e;return(e=this.session)!=null&&e.isEstablished()?this.session:void 0}get isRegistered(){return!!this.ua&&this.ua.isRegistered()}get isRegisterConfig(){return!!this.ua&&this._isRegisterConfig}get isCallActive(){return!!(this.ua&&this.session)}get isAvailableIncomingCall(){return!!this.incomingSession}_generateStream(e,t){const{id:n}=e,i=this._remoteStreams[n]||new MediaStream;return t&&i.addTrack(t),i.addTrack(e),this._remoteStreams[n]=i,i}_generateAudioStream(e){const{id:t}=e,n=this._remoteStreams[t]||new MediaStream;return n.addTrack(e),this._remoteStreams[t]=n,n}_generateStreams(e){const t=[];return e.forEach((n,i)=>{if(n.kind==="audio")return;const r=n,a=e[i-1];let c;a&&a.kind==="audio"&&(c=a);const _=this._generateStream(r,c);t.push(_)}),t}_generateAudioStreams(e){return e.map(n=>this._generateAudioStream(n))}_cancelRequests(){this._cancelActionsRequests(),this._cancelCallRequests(),this._cancelConnectWithRepeatedCalls()}_cancelConnectWithRepeatedCalls(){var e;(e=this._cancelableConnectWithRepeatedCalls)==null||e.cancel()}_cancelSendPresentationWithRepeatedCalls(){var e;(e=this._cancelableSendPresentationWithRepeatedCalls)==null||e.cancel()}_cancelCallRequests(){this._cancelableCall.cancelRequest(),this._cancelableAnswer.cancelRequest()}_cancelActionsRequests(){this._cancelableAnswer.cancelRequest(),this._cancelableSendDTMF.cancelRequest()}async waitChannels(){return this.waitSession(w)}async waitSyncMediaState(){return this.waitSession(U)}async sendChannels({inputChannels:e,outputChannels:t}){if(!this.session)throw new Error("No session established");const n=`${Le}: ${e}`,i=`${He}: ${t}`,r=[n,i];return this.session.sendInfo(Zt,void 0,{extraHeaders:r})}async sendMediaState({cam:e,mic:t},n={}){if(!this.session)throw new Error("No session established");const i=`${_n}: currentstate`,r=`${dn}: ${Number(e)}`,a=`${hn}: ${Number(t)}`,c=[i,r,a];return this.session.sendInfo(en,void 0,{noTerminateWhenError:!0,...n,extraHeaders:c})}async _sendRefusalToTurnOn(e,t={}){if(!this.session)throw new Error("No session established");const c=[`${ln}: ${e==="mic"?0:1}`];return this.session.sendInfo(tn,void 0,{noTerminateWhenError:!0,...t,extraHeaders:c})}async sendRefusalToTurnOnMic(e={}){if(!this.session)throw new Error("No session established");return this._sendRefusalToTurnOn("mic",{noTerminateWhenError:!0,...e})}async sendRefusalToTurnOnCam(e={}){if(!this.session)throw new Error("No session established");return this._sendRefusalToTurnOn("cam",{noTerminateWhenError:!0,...e})}}exports.BAD_MEDIA_DESCRIPTION=Ye;exports.EEventsMainCAM=I;exports.EEventsMic=q;exports.EEventsSyncMediaState=k;exports.EUseLicense=Rt;exports.NOT_FOUND=Fe;exports.PARTICIPANT_MOVE_REQUEST_TO_PARTICIPANTS=V;exports.PARTICIPANT_MOVE_REQUEST_TO_SPECTATORS=F;exports.REJECTED=$;exports.SESSION_EVENT_NAMES=pe;exports.SipConnector=_s;exports.UA_EVENT_NAMES=Me;exports.causes=$t;exports.constants=Jt;exports.disableDebug=On;exports.enableDebug=mn;exports.eventNames=Xt;exports.hasCanceledCallError=Kn;exports.logger=v;exports.setEncodingsToSender=mt;exports.setParametersToSender=Pt;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { default as SipConnector } from '../SipConnector';
|
|
2
|
-
import { TContentHint, TSimulcastEncodings } from '../types';
|
|
3
|
-
declare const resolveAnswerIncomingCall: (sipConnector: SipConnector) => (parameters: {
|
|
4
|
-
mediaStream: MediaStream;
|
|
5
|
-
extraHeaders?: string[] | undefined;
|
|
6
|
-
iceServers?: RTCIceServer[];
|
|
7
|
-
contentHint?: TContentHint;
|
|
8
|
-
simulcastEncodings?: TSimulcastEncodings;
|
|
9
|
-
degradationPreference?: RTCDegradationPreference;
|
|
10
|
-
sendEncodings?: RTCRtpEncodingParameters[];
|
|
11
|
-
preferredMimeTypesVideoCodecs?: string[];
|
|
12
|
-
excludeMimeTypesVideoCodecs?: string[];
|
|
13
|
-
setRemoteStreams: (streams: MediaStream[]) => void;
|
|
14
|
-
onBeforeProgressCall?: (conference?: string) => void;
|
|
15
|
-
onSuccessProgressCall?: (parameters_: {
|
|
16
|
-
isPurgatory: boolean;
|
|
17
|
-
}) => void;
|
|
18
|
-
onFailProgressCall?: () => void;
|
|
19
|
-
onFinishProgressCall?: () => void;
|
|
20
|
-
onEnterPurgatory?: () => void;
|
|
21
|
-
onEnterConference?: (parameters_: {
|
|
22
|
-
isSuccessProgressCall: boolean;
|
|
23
|
-
}) => void;
|
|
24
|
-
onEndedCall?: () => void;
|
|
25
|
-
}) => Promise<RTCPeerConnection | void>;
|
|
26
|
-
export default resolveAnswerIncomingCall;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { default as SipConnector } from '../SipConnector';
|
|
2
|
-
import { TContentHint, TSimulcastEncodings } from '../types';
|
|
3
|
-
declare const resolveCallToServer: (sipConnector: SipConnector) => (parameters: {
|
|
4
|
-
conference: string;
|
|
5
|
-
mediaStream: MediaStream;
|
|
6
|
-
extraHeaders?: string[] | undefined;
|
|
7
|
-
iceServers?: RTCIceServer[];
|
|
8
|
-
contentHint?: TContentHint;
|
|
9
|
-
simulcastEncodings?: TSimulcastEncodings;
|
|
10
|
-
degradationPreference?: RTCDegradationPreference;
|
|
11
|
-
sendEncodings?: RTCRtpEncodingParameters[];
|
|
12
|
-
preferredMimeTypesVideoCodecs?: string[];
|
|
13
|
-
excludeMimeTypesVideoCodecs?: string[];
|
|
14
|
-
setRemoteStreams: (streams: MediaStream[]) => void;
|
|
15
|
-
onBeforeProgressCall?: (conference: string) => void;
|
|
16
|
-
onSuccessProgressCall?: (parameters_: {
|
|
17
|
-
isPurgatory: boolean;
|
|
18
|
-
}) => void;
|
|
19
|
-
onEnterPurgatory?: () => void;
|
|
20
|
-
onEnterConference?: (parameters_: {
|
|
21
|
-
isSuccessProgressCall: boolean;
|
|
22
|
-
}) => void;
|
|
23
|
-
onFailProgressCall?: () => void;
|
|
24
|
-
onFinishProgressCall?: () => void;
|
|
25
|
-
onEndedCall?: () => void;
|
|
26
|
-
}) => Promise<RTCPeerConnection>;
|
|
27
|
-
export default resolveCallToServer;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { UA } from '@krivega/jssip';
|
|
2
|
-
import { default as SipConnector } from '../SipConnector';
|
|
3
|
-
declare const resolveConnectToServer: (sipConnector: SipConnector) => (parameters: {
|
|
4
|
-
userAgent: string;
|
|
5
|
-
sipWebSocketServerURL: string;
|
|
6
|
-
sipServerUrl: string;
|
|
7
|
-
remoteAddress?: string;
|
|
8
|
-
displayName?: string;
|
|
9
|
-
name?: string;
|
|
10
|
-
password?: string;
|
|
11
|
-
isRegisteredUser?: boolean;
|
|
12
|
-
isDisconnectOnFail?: boolean;
|
|
13
|
-
}) => Promise<{
|
|
14
|
-
ua?: UA;
|
|
15
|
-
isSuccessful: boolean;
|
|
16
|
-
}>;
|
|
17
|
-
export default resolveConnectToServer;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { default as SipConnector } from '../SipConnector';
|
|
2
|
-
import { TContentHint, TSimulcastEncodings } from '../types';
|
|
3
|
-
declare const resolveReplaceMediaStream: (sipConnector: SipConnector) => (mediaStream: MediaStream, { deleteExisting, addMissing, forceRenegotiation, contentHint, simulcastEncodings, degradationPreference, sendEncodings, preferredMimeTypesVideoCodecs, excludeMimeTypesVideoCodecs, }?: {
|
|
4
|
-
deleteExisting?: boolean;
|
|
5
|
-
addMissing?: boolean;
|
|
6
|
-
forceRenegotiation?: boolean;
|
|
7
|
-
contentHint?: TContentHint;
|
|
8
|
-
simulcastEncodings?: TSimulcastEncodings;
|
|
9
|
-
degradationPreference?: RTCDegradationPreference;
|
|
10
|
-
sendEncodings?: RTCRtpEncodingParameters[];
|
|
11
|
-
preferredMimeTypesVideoCodecs?: string[];
|
|
12
|
-
excludeMimeTypesVideoCodecs?: string[];
|
|
13
|
-
}) => Promise<void>;
|
|
14
|
-
export default resolveReplaceMediaStream;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { default as SipConnector } from '../SipConnector';
|
|
2
|
-
declare const resolveSendMediaState: (sipConnector: SipConnector) => ({ isEnabledCam, isEnabledMic, }: {
|
|
3
|
-
isEnabledCam: boolean;
|
|
4
|
-
isEnabledMic: boolean;
|
|
5
|
-
}) => Promise<void>;
|
|
6
|
-
export default resolveSendMediaState;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { default as SipConnector } from '../SipConnector';
|
|
2
|
-
import { TContentHint, TSimulcastEncodings } from '../types';
|
|
3
|
-
declare const resolveStartPresentation: (sipConnector: SipConnector) => ({ mediaStream, isP2P, maxBitrate, contentHint, simulcastEncodings, degradationPreference, sendEncodings, preferredMimeTypesVideoCodecs, excludeMimeTypesVideoCodecs, }: {
|
|
4
|
-
mediaStream: MediaStream;
|
|
5
|
-
isP2P: boolean;
|
|
6
|
-
maxBitrate?: number;
|
|
7
|
-
contentHint?: TContentHint;
|
|
8
|
-
simulcastEncodings?: TSimulcastEncodings;
|
|
9
|
-
degradationPreference?: RTCDegradationPreference;
|
|
10
|
-
sendEncodings?: RTCRtpEncodingParameters[];
|
|
11
|
-
preferredMimeTypesVideoCodecs?: string[];
|
|
12
|
-
excludeMimeTypesVideoCodecs?: string[];
|
|
13
|
-
}, options?: {
|
|
14
|
-
callLimit: number;
|
|
15
|
-
}) => Promise<MediaStream | void>;
|
|
16
|
-
export default resolveStartPresentation;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { default as SipConnector } from '../SipConnector';
|
|
2
|
-
import { TContentHint, TSimulcastEncodings } from '../types';
|
|
3
|
-
declare const resolveUpdatePresentation: (sipConnector: SipConnector) => ({ mediaStream, isP2P, maxBitrate, contentHint, simulcastEncodings, degradationPreference, sendEncodings, preferredMimeTypesVideoCodecs, excludeMimeTypesVideoCodecs, }: {
|
|
4
|
-
mediaStream: MediaStream;
|
|
5
|
-
isP2P: boolean;
|
|
6
|
-
maxBitrate?: number;
|
|
7
|
-
contentHint?: TContentHint;
|
|
8
|
-
simulcastEncodings?: TSimulcastEncodings;
|
|
9
|
-
degradationPreference?: RTCDegradationPreference;
|
|
10
|
-
sendEncodings?: RTCRtpEncodingParameters[];
|
|
11
|
-
preferredMimeTypesVideoCodecs?: string[];
|
|
12
|
-
excludeMimeTypesVideoCodecs?: string[];
|
|
13
|
-
}) => Promise<MediaStream | void>;
|
|
14
|
-
export default resolveUpdatePresentation;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
declare const resolveUpdateRemoteStreams: ({ getRemoteStreams, setRemoteStreams, }: {
|
|
2
|
-
getRemoteStreams: () => MediaStream[] | undefined;
|
|
3
|
-
setRemoteStreams: (streams: MediaStream[]) => void;
|
|
4
|
-
}) => {
|
|
5
|
-
(this: unknown, ...args: [] & any[]): Promise<void>;
|
|
6
|
-
cancel: (reason?: any) => void;
|
|
7
|
-
};
|
|
8
|
-
export default resolveUpdateRemoteStreams;
|