We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 18626c9 + 1773f27 commit f971f38Copy full SHA for f971f38
1 file changed
src/api/dto/instance.dto.ts
@@ -1,4 +1,5 @@
1
import { IntegrationDto } from '@api/integrations/integration.dto';
2
+import { JsonValue } from '@prisma/client/runtime/library';
3
import { WAPresence } from 'baileys';
4
5
export class InstanceDto extends IntegrationDto {
@@ -24,7 +25,14 @@ export class InstanceDto extends IntegrationDto {
24
25
proxyProtocol?: string;
26
proxyUsername?: string;
27
proxyPassword?: string;
- webhook?: { enabled?: boolean; events?: string[]; headers?: JsonValue; url?: string; byEvents?: boolean; base64?: boolean; };
28
+ webhook?: {
29
+ enabled?: boolean;
30
+ events?: string[];
31
+ headers?: JsonValue;
32
+ url?: string;
33
+ byEvents?: boolean;
34
+ base64?: boolean;
35
+ };
36
chatwootAccountId?: string;
37
chatwootConversationPending?: boolean;
38
chatwootAutoCreate?: boolean;
0 commit comments