Havryshchuk Oleksandr
Havryshchuk Oleksandr
I really need the `isReadyToReOffer()` method to check whether it’s possible to re-offer or place a call on hold/unhold. It exists in the documentation: Docs: https://jssip.net/documentation/api/session/#method_isReadyToReOffer Could you rename the...
I think that the `Originator` and `SessionDirection` are not exported from the lib at all as an enum (objects). package.json points to the `"main": "lib-es5/JsSIP.js"` and `JsSIP.js` is not exporting...
Probably those constants should be created and exported in jssip/lib/RTCSession.js file: https://github.com/versatica/JsSIP/blob/3.10.2/lib/RTCSession.js according to the declaration file: https://github.com/versatica/JsSIP/blob/3.10.2/lib/RTCSession.d.ts
VSCode shows me that import from 'jssip/lib/RTCSession' should return an object with four keys according to the `lib/RTCSession.d.ts` declaration. However, in reality, import `jssip/lib/RTCSession` resolves to a `lib/RTCSession.js`, which exports...