Freeze Design Frontend - TypeScript API
    Preparing search index...

    Interface StoreReadiness

    interface StoreReadiness {
        overall: ReadinessStatus;
        ready: boolean;
        checks: ReadinessCheck[];
        catalog: {
            active_products: number;
            sellable_products: number;
            incomplete_products: IncompleteProduct[];
            incomplete_count: number;
        };
    }
    Index

    Properties

    ready: boolean
    checks: ReadinessCheck[]
    catalog: {
        active_products: number;
        sellable_products: number;
        incomplete_products: IncompleteProduct[];
        incomplete_count: number;
    }