feat: Added fetch profile endpoint in chat controller and link preview option in send text message

This commit is contained in:
Davidson Gomes
2023-07-23 22:24:21 -03:00
parent 9f52f20660
commit 798eb90bed
7 changed files with 176 additions and 35 deletions

View File

@@ -26,6 +26,19 @@ export class NumberDto {
number: string;
}
export class NumberBusiness {
wid?: string;
jid?: string;
exists?: boolean;
isBusiness: boolean;
name?: string;
message?: string;
description?: string;
email?: string;
website?: string[];
address?: string;
}
export class ProfileNameDto {
name: string;
}