@elyx-code/project-logic-tree 0.0.6429 → 0.0.6431
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 +85 -2
- package/dist/index.js +21733 -20804
- package/dist/index.umd.cjs +209 -209
- 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",
|
|
@@ -1928,6 +2007,7 @@ export declare class ConditionState extends VersionedState implements ICondition
|
|
|
1928
2007
|
x: number;
|
|
1929
2008
|
y: number;
|
|
1930
2009
|
readonly type: EntityType.Condition;
|
|
2010
|
+
index: number | null;
|
|
1931
2011
|
successCalls: CallableEntityState[];
|
|
1932
2012
|
errorCalls: CallableEntityState[];
|
|
1933
2013
|
declaration: ActionDescriptorState;
|
|
@@ -2406,6 +2486,7 @@ export declare class DataTypeState extends VersionedState implements IDataType,
|
|
|
2406
2486
|
staticEntities: boolean | null;
|
|
2407
2487
|
interactiveEntities: boolean | null;
|
|
2408
2488
|
actionEntities: boolean | null;
|
|
2489
|
+
index: number | null;
|
|
2409
2490
|
entity: DefinitionEntityState | PrimitiveEntityState | ActionDescriptorState | BuiltInBaseEntityState | LiteralValueState | null;
|
|
2410
2491
|
andChildrenGroup: DataTypeState[] | null;
|
|
2411
2492
|
orChildrenGroup: DataTypeState[] | null;
|
|
@@ -9542,6 +9623,7 @@ export declare interface ICondition extends IConditionTransfer, IChildEntity, IC
|
|
|
9542
9623
|
|
|
9543
9624
|
export declare interface ICondition_meta extends IGenericBase, IBaseCanvasDraggable {
|
|
9544
9625
|
type: EntityType.Condition;
|
|
9626
|
+
index: number | null;
|
|
9545
9627
|
}
|
|
9546
9628
|
|
|
9547
9629
|
export declare interface IConditionGenerationTarget extends IChildEntityGenerationTarget, ICalledEntityGenerationTarget {
|
|
@@ -9655,6 +9737,7 @@ export declare interface IDataType_meta extends IGenericBase {
|
|
|
9655
9737
|
type: EntityType.DataType;
|
|
9656
9738
|
like: boolean;
|
|
9657
9739
|
inferred: boolean;
|
|
9740
|
+
index: number | null;
|
|
9658
9741
|
implementationChooseOne: boolean;
|
|
9659
9742
|
options: string[] | null;
|
|
9660
9743
|
parentRelationType: DataTypeParentChildRelation | null;
|