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

    A group of conditions joined by a combinator. Groups can be nested recursively.

    type RuleGroup = {
        combinator: "all" | "any" | "none";
        conditions: (RuleCondition | RuleGroup)[];
    }
    Index

    Properties

    combinator: "all" | "any" | "none"
    conditions: (RuleCondition | RuleGroup)[]