From 57639a3d52be760a46860d3f8e5b065909bf8753 Mon Sep 17 00:00:00 2001 From: Guilherme Gazzo Date: Mon, 29 Apr 2024 14:44:32 -0300 Subject: [PATCH] fix `OmnichannelSource` type --- src/definition/livechat/ILivechatRoom.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/definition/livechat/ILivechatRoom.ts b/src/definition/livechat/ILivechatRoom.ts index f36288f08..8cfe7059b 100644 --- a/src/definition/livechat/ILivechatRoom.ts +++ b/src/definition/livechat/ILivechatRoom.ts @@ -24,7 +24,7 @@ interface IOmnichannelSourceApp { } type OmnichannelSource = | { - type: Omit; + type: Exclude; } | IOmnichannelSourceApp;