Preparing search index...

    Progress update during recipe URL discovery phase

    interface DiscoveryProgress {
        phase: "discovering" | "complete";
        recipesFound: number;
        categoriesScanned: number;
        totalCategories?: number;
        isComplete: boolean;
        recipes: DiscoveredRecipe[];
    }
    Index

    Properties

    phase: "discovering" | "complete"

    Current phase of discovery

    recipesFound: number

    Total number of recipes found so far

    categoriesScanned: number

    Number of category pages scanned

    totalCategories?: number

    Total number of category pages to scan

    isComplete: boolean

    Whether discovery has finished

    recipes: DiscoveredRecipe[]

    Array of all discovered recipes