Preparing search index...

    Import history record for tracking discovered-but-not-imported recipes Used to show visual indicators for previously seen recipes during bulk import

    type importHistoryTableElement = {
        id?: number;
        providerId: string;
        recipeUrl: string;
        lastSeenAt: number;
    }
    Index

    Properties

    id?: number

    Optional database ID (undefined for new records)

    providerId: string

    Provider identifier (e.g., 'hellofresh')

    recipeUrl: string

    Full recipe URL from the provider

    lastSeenAt: number

    Timestamp when recipe was last seen (Unix ms)