Skip to content

Commit

Permalink
Merge pull request #1124 from ScrashOff/fix/instance-creation-webhook…
Browse files Browse the repository at this point in the history
…-and-chatwoot-settings

fix: instance create w/webhook and chatwoot settings
  • Loading branch information
DavidsonGomes authored Jan 6, 2025
2 parents 0000c1c + 60c9e23 commit 8c87702
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/api/dto/instance.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,21 @@ export class InstanceDto extends IntegrationDto {
proxyProtocol?: string;
proxyUsername?: string;
proxyPassword?: string;
webhook?: { enabled?: boolean; events?: string[]; headers?: JsonValue; url?: string; byEvents?: boolean; base64?: boolean; };
chatwootAccountId?: string;
chatwootConversationPending?: boolean;
chatwootAutoCreate?: boolean;
chatwootDaysLimitImportMessages?: number;
chatwootImportContacts?: boolean;
chatwootImportMessages?: boolean;
chatwootLogo?: string;
chatwootMergeBrazilContacts?: boolean;
chatwootNameInbox?: string;
chatwootOrganization?: string;
chatwootReopenConversation?: boolean;
chatwootSignMsg?: boolean;
chatwootToken?: string;
chatwootUrl?: string;
}

export class SetPresenceDto {
Expand Down

0 comments on commit 8c87702

Please sign in to comment.