fix: Create instance with settings

This commit is contained in:
Davidson Gomes
2023-07-25 10:42:34 -03:00
parent 62e2a8a6e3
commit c314d00ccd
3 changed files with 34 additions and 3 deletions

View File

@@ -1,11 +1,17 @@
export class InstanceDto {
instanceName: string;
webhook?: string;
webhook_by_events?: boolean;
events?: string[];
qrcode?: boolean;
number?: string;
token?: string;
webhook?: string;
webhook_by_events?: boolean;
events?: string[];
reject_call?: boolean;
msg_call?: string;
groups_ignore?: boolean;
always_online?: boolean;
read_messages?: boolean;
read_status?: boolean;
chatwoot_account_id?: string;
chatwoot_token?: string;
chatwoot_url?: string;