@elyx-code/project-logic-tree 0.0.6074 → 0.0.6076
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/definitions/built-in-base-entities/conditions/comparison/more-than-or-equal.d.ts +5 -1
- package/dist/definitions/built-in-base-entities/ids.d.ts +6 -0
- package/dist/index.js +4807 -4757
- package/dist/index.umd.cjs +109 -109
- package/dist/tree/utils/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/definitions/built-in-base-entities/conditions/comparison/more-than-or-equal.d.ts
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
import { IActionDescriptorTransfer, IActionDescriptorReference, IValueDescriptorTransfer } from '../../../types';
|
|
1
|
+
import { IActionDescriptorTransfer, IActionDescriptorReference, IValueDescriptorTransfer, IDataTypeTransfer, IValueDescriptorReference } from '../../../types';
|
|
2
2
|
|
|
3
|
+
export declare const moreThanOrEqualConditionLeftHandArgumentDataTypeParentRef: IValueDescriptorReference;
|
|
4
|
+
export declare const moreThanOrEqualConditionLeftHandArgumentDataType: IDataTypeTransfer;
|
|
3
5
|
export declare const moreThanOrEqualConditionLeftHandArgumentParentRef: IActionDescriptorReference;
|
|
4
6
|
export declare const moreThanOrEqualConditionLeftHandArgument: IValueDescriptorTransfer;
|
|
7
|
+
export declare const moreThanOrEqualConditionRightHandArgumentDataTypeParentRef: IValueDescriptorReference;
|
|
8
|
+
export declare const moreThanOrEqualConditionRightHandArgumentDataType: IDataTypeTransfer;
|
|
5
9
|
export declare const moreThanOrEqualConditionRightHandArgumentParentRef: IActionDescriptorReference;
|
|
6
10
|
export declare const moreThanOrEqualConditionRightHandArgument: IValueDescriptorTransfer;
|
|
7
11
|
export declare const moreThanOrEqualCondition: IActionDescriptorTransfer;
|
|
@@ -405,9 +405,15 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
405
405
|
inputs: {
|
|
406
406
|
leftHand: {
|
|
407
407
|
id: string;
|
|
408
|
+
dataType: {
|
|
409
|
+
id: string;
|
|
410
|
+
};
|
|
408
411
|
};
|
|
409
412
|
rightHand: {
|
|
410
413
|
id: string;
|
|
414
|
+
dataType: {
|
|
415
|
+
id: string;
|
|
416
|
+
};
|
|
411
417
|
};
|
|
412
418
|
};
|
|
413
419
|
};
|