Skip to content

Commit 8c87702

Browse files
Merge pull request #1124 from ScrashOff/fix/instance-creation-webhook-and-chatwoot-settings
fix: instance create w/webhook and chatwoot settings
2 parents 0000c1c + 60c9e23 commit 8c87702

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/api/dto/instance.dto.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,21 @@ export class InstanceDto extends IntegrationDto {
2424
proxyProtocol?: string;
2525
proxyUsername?: string;
2626
proxyPassword?: string;
27+
webhook?: { enabled?: boolean; events?: string[]; headers?: JsonValue; url?: string; byEvents?: boolean; base64?: boolean; };
28+
chatwootAccountId?: string;
29+
chatwootConversationPending?: boolean;
30+
chatwootAutoCreate?: boolean;
31+
chatwootDaysLimitImportMessages?: number;
32+
chatwootImportContacts?: boolean;
33+
chatwootImportMessages?: boolean;
34+
chatwootLogo?: string;
35+
chatwootMergeBrazilContacts?: boolean;
36+
chatwootNameInbox?: string;
37+
chatwootOrganization?: string;
38+
chatwootReopenConversation?: boolean;
39+
chatwootSignMsg?: boolean;
40+
chatwootToken?: string;
41+
chatwootUrl?: string;
2742
}
2843

2944
export class SetPresenceDto {

0 commit comments

Comments
 (0)