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

    Type Alias CachedOrgWithCustomer

    CachedOrgWithCustomer: Omit<
        OrgWithCustomer,
        "createdAt"
        | "updatedAt"
        | "deletedAt",
    > & { createdAt: string; deletedAt?: string; updatedAt: string }

    JSON-safe projection of OrgWithCustomer. L2 round-trips through JSON, so Date fields would arrive as strings on cross-process / post-L1 reads. createdAt / updatedAt / deletedAt are the only Date-typed fields.