@sentio/api 1.0.3-rc.53 → 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.
- package/dist/src/types.gen.d.ts +2 -6
- package/package.json +1 -1
- package/src/types.gen.ts +2 -6
package/dist/src/types.gen.d.ts
CHANGED
|
@@ -395,7 +395,7 @@ export declare namespace analytic_service {
|
|
|
395
395
|
queueLength?: number;
|
|
396
396
|
computeStats?: common.ComputeStats;
|
|
397
397
|
};
|
|
398
|
-
type ExecuteEngine = '
|
|
398
|
+
type ExecuteEngine = 'ULTRA' | 'SMALL' | 'MEDIUM' | 'LARGE';
|
|
399
399
|
type ExecutionInfo = {
|
|
400
400
|
queryId?: string;
|
|
401
401
|
executionId?: string;
|
|
@@ -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
package/src/types.gen.ts
CHANGED
|
@@ -399,7 +399,7 @@ export namespace analytic_service {
|
|
|
399
399
|
queueLength?: number;
|
|
400
400
|
computeStats?: common.ComputeStats;
|
|
401
401
|
};
|
|
402
|
-
export type ExecuteEngine = '
|
|
402
|
+
export type ExecuteEngine = 'ULTRA' | 'SMALL' | 'MEDIUM' | 'LARGE';
|
|
403
403
|
export type ExecutionInfo = {
|
|
404
404
|
queryId?: string;
|
|
405
405
|
executionId?: string;
|
|
@@ -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;
|