PG→Mongo Ingest CLI - v1.0.0
    Preparing search index...

    Interface ChatCursor

    Cursor for pagination through WhatsApp Evolution messages.

    Used to track the last processed message position to enable resuming imports from where they left off. The cursor is stored per chat and updated after each batch is processed.

    const cursor: ChatCursor = {
    last_ts_seconds: 1701111559,
    last_message_id: "wamid.HBgMNTUzMTk1NTAwODg4FQIAEhgWM0VCMEMwRERGRkMwOEVDNjZFRjEyMQA="
    };
    interface ChatCursor {
        last_ts_seconds: null | number;
        last_message_id: null | string;
    }
    Index

    Properties

    last_ts_seconds: null | number

    Unix timestamp in seconds of the last processed message

    last_message_id: null | string

    WhatsApp message ID of the last processed message