Refactor Instance Management with Additional Profile Information

- Added new fields `ownerJid`, `profileName`, and `profilePicUrl` to the Instance DTO for improved user identification and personalization.
- Updated InstanceController to include the new profile information in instance data handling.
- Enhanced WAMonitoringService to utilize the additional profile fields, improving the context of instance data during monitoring operations.
This commit is contained in:
Davidson Gomes
2025-01-22 11:09:05 -03:00
parent 3a04f7587e
commit f7db442a94
3 changed files with 9 additions and 0 deletions

View File

@@ -11,6 +11,9 @@ export class InstanceDto extends IntegrationDto {
integration?: string;
token?: string;
status?: string;
ownerJid?: string;
profileName?: string;
profilePicUrl?: string;
// settings
rejectCall?: boolean;
msgCall?: string;