Type Alias: RuleAst
type RuleAst =
| {
field: string;
operator: string;
value?: unknown;
}
| {
op: "and" | "or" | "not";
rules: RuleAst[];
};
Defined in: packages/sdk/src/types.ts:265
Shared condition AST — a leaf predicate or a logical group.