@sentio/api 1.0.3-rc.54 → 1.0.3-rc.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1419,11 +1419,7 @@ export declare namespace common {
1419
1419
  operator?: SelectorOperatorType;
1420
1420
  value?: Array<Any>;
1421
1421
  };
1422
- /**
1423
- * - GT: Numeric operators
1424
- * - CONTAINS: String operators
1425
- */
1426
- type SelectorOperatorType = 'EQ' | 'NEQ' | 'EXISTS' | 'NOT_EXISTS' | 'GT' | 'GTE' | 'LT' | 'LTE' | 'BETWEEN' | 'NOT_BETWEEN' | 'CONTAINS' | 'NOT_CONTAINS' | 'IN_COHORTS' | 'NOT_IN_COHORTS';
1422
+ type SelectorOperatorType = 'EQ' | 'NEQ' | 'EXISTS' | 'NOT_EXISTS' | 'GT' | 'GTE' | 'LT' | 'LTE' | 'BETWEEN' | 'NOT_BETWEEN' | 'CONTAINS' | 'NOT_CONTAINS' | 'IN' | 'NOT_IN' | 'IN_COHORTS' | 'NOT_IN_COHORTS';
1427
1423
  type SelectorExpr = {
1428
1424
  selector?: Selector;
1429
1425
  logicExpr?: SelectorExprLogicExpr;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentio/api",
3
- "version": "1.0.3-rc.54",
3
+ "version": "1.0.3-rc.55",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
package/src/types.gen.ts CHANGED
@@ -1424,11 +1424,7 @@ export namespace common {
1424
1424
  operator?: SelectorOperatorType;
1425
1425
  value?: Array<Any>;
1426
1426
  };
1427
- /**
1428
- * - GT: Numeric operators
1429
- * - CONTAINS: String operators
1430
- */
1431
- export type SelectorOperatorType = 'EQ' | 'NEQ' | 'EXISTS' | 'NOT_EXISTS' | 'GT' | 'GTE' | 'LT' | 'LTE' | 'BETWEEN' | 'NOT_BETWEEN' | 'CONTAINS' | 'NOT_CONTAINS' | 'IN_COHORTS' | 'NOT_IN_COHORTS';
1427
+ export type SelectorOperatorType = 'EQ' | 'NEQ' | 'EXISTS' | 'NOT_EXISTS' | 'GT' | 'GTE' | 'LT' | 'LTE' | 'BETWEEN' | 'NOT_BETWEEN' | 'CONTAINS' | 'NOT_CONTAINS' | 'IN' | 'NOT_IN' | 'IN_COHORTS' | 'NOT_IN_COHORTS';
1432
1428
  export type SelectorExpr = {
1433
1429
  selector?: Selector;
1434
1430
  logicExpr?: SelectorExprLogicExpr;