@elyx-code/project-logic-tree 0.0.6429 → 0.0.6430
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/index.d.ts +81 -2
- package/dist/index.js +20932 -20278
- package/dist/index.umd.cjs +198 -198
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1420,6 +1420,87 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1420
1420
|
};
|
|
1421
1421
|
};
|
|
1422
1422
|
};
|
|
1423
|
+
and: {
|
|
1424
|
+
id: GroupOperatorTypes;
|
|
1425
|
+
inputs: {};
|
|
1426
|
+
};
|
|
1427
|
+
or: {
|
|
1428
|
+
id: GroupOperatorTypes;
|
|
1429
|
+
inputs: {};
|
|
1430
|
+
};
|
|
1431
|
+
equal: {
|
|
1432
|
+
id: ComparisonOperatorTypes;
|
|
1433
|
+
inputs: {
|
|
1434
|
+
leftHand: {
|
|
1435
|
+
id: string;
|
|
1436
|
+
};
|
|
1437
|
+
rightHand: {
|
|
1438
|
+
id: string;
|
|
1439
|
+
};
|
|
1440
|
+
};
|
|
1441
|
+
};
|
|
1442
|
+
"not-equal": {
|
|
1443
|
+
id: ComparisonOperatorTypes;
|
|
1444
|
+
inputs: {
|
|
1445
|
+
leftHand: {
|
|
1446
|
+
id: string;
|
|
1447
|
+
};
|
|
1448
|
+
rightHand: {
|
|
1449
|
+
id: string;
|
|
1450
|
+
};
|
|
1451
|
+
};
|
|
1452
|
+
};
|
|
1453
|
+
"less-than": {
|
|
1454
|
+
id: ComparisonOperatorTypes;
|
|
1455
|
+
inputs: {
|
|
1456
|
+
leftHand: {
|
|
1457
|
+
id: string;
|
|
1458
|
+
dataType: {
|
|
1459
|
+
id: string;
|
|
1460
|
+
};
|
|
1461
|
+
};
|
|
1462
|
+
rightHand: {
|
|
1463
|
+
id: string;
|
|
1464
|
+
dataType: {
|
|
1465
|
+
id: string;
|
|
1466
|
+
};
|
|
1467
|
+
};
|
|
1468
|
+
};
|
|
1469
|
+
};
|
|
1470
|
+
"more-than": {
|
|
1471
|
+
id: ComparisonOperatorTypes;
|
|
1472
|
+
inputs: {
|
|
1473
|
+
leftHand: {
|
|
1474
|
+
id: string;
|
|
1475
|
+
dataType: {
|
|
1476
|
+
id: string;
|
|
1477
|
+
};
|
|
1478
|
+
};
|
|
1479
|
+
rightHand: {
|
|
1480
|
+
id: string;
|
|
1481
|
+
dataType: {
|
|
1482
|
+
id: string;
|
|
1483
|
+
};
|
|
1484
|
+
};
|
|
1485
|
+
};
|
|
1486
|
+
};
|
|
1487
|
+
"less-than-or-equal": {
|
|
1488
|
+
id: ComparisonOperatorTypes;
|
|
1489
|
+
inputs: {
|
|
1490
|
+
leftHand: {
|
|
1491
|
+
id: string;
|
|
1492
|
+
dataType: {
|
|
1493
|
+
id: string;
|
|
1494
|
+
};
|
|
1495
|
+
};
|
|
1496
|
+
rightHand: {
|
|
1497
|
+
id: string;
|
|
1498
|
+
dataType: {
|
|
1499
|
+
id: string;
|
|
1500
|
+
};
|
|
1501
|
+
};
|
|
1502
|
+
};
|
|
1503
|
+
};
|
|
1423
1504
|
};
|
|
1424
1505
|
"global-event": {
|
|
1425
1506
|
GLOBAL_EVENT_PROJECT_PUBLICATION_COMPLETED: {
|
|
@@ -1902,8 +1983,6 @@ export declare const COMPARISON_CONDITIONS: {
|
|
|
1902
1983
|
export declare enum ComparisonOperatorTypes {
|
|
1903
1984
|
Equal = "equal",
|
|
1904
1985
|
NotEqual = "not-equal",
|
|
1905
|
-
And = "and",
|
|
1906
|
-
Or = "or",
|
|
1907
1986
|
LessThan = "less-than",
|
|
1908
1987
|
MoreThan = "more-than",
|
|
1909
1988
|
LessThanOrEqual = "less-than-or-equal",
|