Skip to content

Commit 3306f76

Browse files
chore: generated code for commit 2eca9b7b. [skip ci]
algolia/api-clients-automation@2eca9b7 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: François Chalifour <[email protected]>
1 parent b9e84bc commit 3306f76

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

packages/predict/model/segmentFilterOperatorBoolean.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
/**
44
* The operator used on the boolean filter value.
55
*/
6-
export type SegmentFilterOperatorBoolean = '!=' | '=';
6+
export type SegmentFilterOperatorBoolean = 'EQ' | 'NEQ';

packages/predict/model/segmentFilterOperatorNumerical.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* The operator used on the numerical filter value.
55
*/
66
export type SegmentFilterOperatorNumerical =
7-
| '!='
8-
| '<'
9-
| '<='
10-
| '='
11-
| '>'
12-
| '>=';
7+
| 'EQ'
8+
| 'GT'
9+
| 'GTE'
10+
| 'LT'
11+
| 'LTE'
12+
| 'NEQ';

packages/predict/model/segmentFilterProbability.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
* Probability of the filter.
55
*/
66
export type SegmentFilterProbability = {
7-
lt?: number;
7+
LT?: number;
88

9-
lte?: number;
9+
LTE?: number;
1010

11-
gt?: number;
11+
GT?: number;
1212

13-
gte?: number;
13+
GTE?: number;
1414
};

0 commit comments

Comments
 (0)