@cfxlabsinc/b2b-services
    Preparing search index...
    AdminProductLimitRule: Omit<
        SelectProductLimitRule,
        | "id"
        | "routeId"
        | "customerId"
        | "externalId"
        | "matcherHash"
        | "currentVersionId"
        | "deletedAt",
    > & Omit<
        SelectProductLimitRuleVersion,
        "id"
        | "ruleId"
        | "matcherHash"
        | "createdAt",
    > & {
        customerId: SelectCustomer["externalId"] | null;
        id: string;
        routeId: SelectProductRoute["externalId"];
    }

    Admin-tier view of a limit rule = identity columns + the columns of the rule's current version.