Const
// Import only specific chats
export const filterConfig: FilterConfig = {
type: 'include-remoteJids',
remoteJids: ['19175769740@s.whatsapp.net', '1234567890@s.whatsapp.net']
};
// Import last 7 days of all chats
export const filterConfig: FilterConfig = {
type: 'relative-days',
days: 7
};
// Import messages from specific date range
export const filterConfig: FilterConfig = {
type: 'absolute',
since: '2024-01-01T00:00:00Z',
until: '2024-01-31T23:59:59Z'
};
// Import only most recent 1000 messages per chat
export const filterConfig: FilterConfig = {
type: 'depth',
depth: 1000
};
Current filter configuration for WhatsApp Evolution message imports.
Edit this configuration to change which chats and time ranges are processed during the ingest command execution.