@cfxlabsinc/b2b-services
    Preparing search index...

    Admin-tier projection of a product row. id is the canonical ProductName (externalId in the DB). The set of products is authored at compile time via CONCRETE_PRODUCT_NAMES and seeded — runtime creation is intentionally out of scope (see rules/cascade-product.md). Only name and description are runtime-editable.

    type Product = {
        createdAt: Temporal.Instant;
        description: string | null;
        id: ProductName;
        name: string;
        updatedAt: Temporal.Instant;
    }
    Index

    Properties

    createdAt: Temporal.Instant
    description: string | null
    name: string
    updatedAt: Temporal.Instant