From 1793a116411821275810ab4c33df25c2f91bdbd0 Mon Sep 17 00:00:00 2001 From: Sanyam Jain Plivo <99676817+sanyamjain-plivo@users.noreply.github.com> Date: Wed, 24 Jul 2024 18:05:05 +0530 Subject: [PATCH] chore(2.2.12): relased version to 2.2.12 --- CHANGELOG.md | 5 +++++ index.d.ts | 2 +- lib/client.ts | 2 +- package.json | 4 ++-- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8da155..cfdfbdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable GA release changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## v2.2.12 (released@ 24-07-2024) + +**Bug Fixes** +* Renamed `DOMError` to `DOMException` in the underlying JSSIP library to support latest Typescript versions. + ## v2.2.11 (released@ 07-06-2024) **Bug Fixes** diff --git a/index.d.ts b/index.d.ts index 7ffec56..6b6d100 100644 --- a/index.d.ts +++ b/index.d.ts @@ -171,7 +171,7 @@ declare module 'plivo-browser-sdk/client' { * speech when the user speaks on mute * @private */ - speechRecognition: SpeechRecognition; + speechRecognition: any; /** * Holds the loggerUtil instance which keeps the * value of username and sipCallID to attached to each log diff --git a/lib/client.ts b/lib/client.ts index 772b3fd..12d7310 100644 --- a/lib/client.ts +++ b/lib/client.ts @@ -216,7 +216,7 @@ export class Client extends EventEmitter { * speech when the user speaks on mute * @private */ - speechRecognition: SpeechRecognition; + speechRecognition: any; /** * Holds the loggerUtil instance which keeps the diff --git a/package.json b/package.json index 6c3e86b..8366b52 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "plivo-browser-sdk", "title": "plivo-browser-sdk", - "version": "2.2.11", + "version": "2.2.12", "description": "This library allows you to connect with plivo's voice enviroment from browser", "main": "./dist/plivobrowsersdk.js", "types": "index.d.ts", @@ -54,7 +54,7 @@ "null-loader": "4.0.1", "sdp-transform": "^2.14.0", "semver-parser": "^3.0.5", - "plivo-jssip": "^1.0.3", + "plivo-jssip": "^1.0.5", "uuid": "^8.3.0", "wasm-feature-detect": "^1.5.1", "wasm-pack": "^0.12.1",