OPEN_GRID API - v1.6.1
    Preparing search index...

    Type Alias CFCondition

    CFCondition:
        | {
            a: number;
            b?: number;
            op: ">"
            | ">="
            | "<"
            | "<="
            | "="
            | "!="
            | "between";
            type: "compare";
        }
        | { ci?: boolean; text: string; type: "textContains" }
        | {
            rel:
                | "today"
                | "yesterday"
                | "tomorrow"
                | "thisWeek"
                | "lastWeek"
                | "thisMonth"
                | "lastMonth"
                | "next7d"
                | "last7d";
            type: "dateOccurring";
        }
        | { bottom?: boolean; n: number; type: "topN" }
        | { bottom?: boolean; pct: number; type: "topNpct" }
        | { below?: boolean; type: "aboveAvg" }
        | { k: 1 | 2 | 3; outside?: boolean; type: "stdBand" }
        | { type: "duplicate"; unique?: boolean }
        | {
            params?: Readonly<Record<string, unknown>>;
            predicateId: string;
            type: "custom";
        }

    규칙이 걸리는 조건. type 으로 종류를 고른다: 값 비교(compare)·글자 포함(textContains)·날짜(dateOccurring)·상위 N(topN·topNpct)·평균 위아래(aboveAvg)·표준편차 띠(stdBand)·중복(duplicate)·등록한 술어(custom).

    The condition that fires a rule. Pick the kind with type: value comparison (compare), text contains (textContains), date (dateOccurring), top N (topN, topNpct), above/below average (aboveAvg), standard-deviation band (stdBand), duplicates (duplicate) or a registered predicate (custom).

    規則が掛かる条件。type で種類を選びます: 値の比較(compare)・文字を含む(textContains)・日付(dateOccurring)・上位 N(topN・topNpct)・平均の上下(aboveAvg)・標準偏差の帯(stdBand)・重複(duplicate)・登録した述語(custom)。

    触发规则的条件。用 type 选择种类:数值比较(compare)、包含文字(textContains)、日期(dateOccurring)、前 N 名(topN、topNpct)、高于/低于平均(aboveAvg)、标准差区间(stdBand)、重复(duplicate)、已注册的谓词(custom)。