Creating Plot Twists
    Preparing search index...

    Type Alias ThreadCommon

    Common fields shared by both Thread and Note entities.

    type ThreadCommon = {
        id: Uuid;
        created: Date;
        archived: boolean;
        tags: Tags;
    }
    Index

    Properties

    Properties

    id: Uuid

    Unique identifier for the thread

    created: Date

    When this item was created.

    For sources: Set this to the external system's timestamp (e.g., email sent date, comment creation date), NOT the sync time. If omitted, defaults to the current time, which is almost never correct for synced data.

    archived: boolean

    Whether this thread has been archived

    tags: Tags

    Tags attached to this thread. Maps tag ID to array of actor IDs who added that tag.