mirror of
https://github.com/EvolutionAPI/evolution-api.git
synced 2025-12-09 18:09:40 -06:00
49 lines
1.3 KiB
TypeScript
49 lines
1.3 KiB
TypeScript
import { WAPresence } from "@whiskeysockets/baileys";
|
|
|
|
export class InstanceDto {
|
|
instanceName: string;
|
|
instanceId?: string;
|
|
qrcode?: boolean;
|
|
number?: string;
|
|
integration?: string;
|
|
token?: string;
|
|
webhook?: string;
|
|
webhook_by_events?: boolean;
|
|
webhook_base64?: boolean;
|
|
events?: string[];
|
|
reject_call?: boolean;
|
|
msg_call?: string;
|
|
groups_ignore?: boolean;
|
|
always_online?: boolean;
|
|
read_messages?: boolean;
|
|
read_status?: boolean;
|
|
sync_full_history?: boolean;
|
|
chatwoot_account_id?: string;
|
|
chatwoot_token?: string;
|
|
chatwoot_url?: string;
|
|
chatwoot_sign_msg?: boolean;
|
|
chatwoot_reopen_conversation?: boolean;
|
|
chatwoot_conversation_pending?: boolean;
|
|
chatwoot_import_contacts?: boolean;
|
|
chatwoot_import_messages?: boolean;
|
|
chatwoot_days_limit_import_messages?: number;
|
|
websocket_enabled?: boolean;
|
|
websocket_events?: string[];
|
|
rabbitmq_enabled?: boolean;
|
|
rabbitmq_events?: string[];
|
|
sqs_enabled?: boolean;
|
|
sqs_events?: string[];
|
|
typebot_url?: string;
|
|
typebot?: string;
|
|
typebot_expire?: number;
|
|
typebot_keyword_finish?: string;
|
|
typebot_delay_message?: number;
|
|
typebot_unknown_message?: string;
|
|
typebot_listening_from_me?: boolean;
|
|
proxy?: string;
|
|
}
|
|
|
|
export class SetPresenceDto {
|
|
presence: WAPresence;
|
|
}
|