From cda4a93cfb2ebbf0729ac38397d6310d539b0e91 Mon Sep 17 00:00:00 2001 From: Emmanuel Quentin Date: Tue, 27 Aug 2024 22:20:53 -0400 Subject: [PATCH] 1.0.0-alpha.11 --- package.json | 2 +- src/voice/call.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index f9ed9f87..d604ef6e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@wazo/sdk", - "version": "1.0.0-alpha.10", + "version": "1.0.0-alpha.11", "description": "Wazo's JavaScript Software Development Kit.", "main": "index.js", "types": "lib/types/index.d.ts", diff --git a/src/voice/call.ts b/src/voice/call.ts index 0f0afcff..befd3b11 100644 --- a/src/voice/call.ts +++ b/src/voice/call.ts @@ -2,6 +2,7 @@ import { EventEmitter } from 'events'; import { createActor } from 'xstate'; import { Inviter } from 'sip.js/lib/api/inviter'; +import { Invitation } from 'sip.js/lib/api/invitation'; import { SessionState } from 'sip.js/lib/api/session-state'; import { OutgoingInviteRequest } from 'sip.js/lib/core'; import { SessionDescriptionHandler } from 'sip.js/lib/platform/web';