From 345a85c125612c1058a37e5f8f240f2e79abf5f7 Mon Sep 17 00:00:00 2001 From: gekkedev <17025257+gekkedev@users.noreply.github.com> Date: Mon, 22 Jul 2024 22:25:54 +0200 Subject: [PATCH] fix: ID type definition of Contact model --- src/api/model/contact.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/api/model/contact.ts b/src/api/model/contact.ts index 6065dc57c..64f55f41c 100644 --- a/src/api/model/contact.ts +++ b/src/api/model/contact.ts @@ -15,7 +15,6 @@ * along with WPPConnect. If not, see . */ -import { Wid } from './wid'; import { ProfilePicThumbObj } from './profile-pic-thumb'; /** @@ -23,7 +22,7 @@ import { ProfilePicThumbObj } from './profile-pic-thumb'; */ export interface Contact { formattedName: string; - id: Wid; + id: string; isBusiness: boolean; isEnterprise: boolean; isHighLevelVerified: any;