@elyx-code/project-logic-tree 0.0.6018 → 0.0.6020
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/ids.d.ts +36 -0
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/break-statement.d.ts +1 -3
- package/dist/definitions/mock/default-mock/functions/manual-hello-world-loop/loop/continue-statement.d.ts +1 -1
- package/dist/index.js +10547 -10113
- package/dist/index.umd.cjs +251 -251
- package/dist/tree/state/action-descriptor/action-descriptor.d.ts +1 -1
- package/dist/tree/state/argument-declaration/argument-declaration.d.ts +1 -2
- package/dist/tree/state/custom-entity/custom-entity.d.ts +1 -1
- package/dist/tree/state/data-type/data-type.d.ts +2 -1
- package/dist/tree/state/function-declaration/function-declaration.d.ts +2 -2
- package/dist/tree/state/input-map/input-map.d.ts +1 -1
- package/dist/tree/state/loop/loop.d.ts +4 -1
- package/dist/tree/state/loop/loop.test.d.ts +1 -0
- package/dist/tree/state/loop/validation/logic-validation.d.ts +1 -0
- package/dist/tree/state/return-declaration/return-declaration.d.ts +1 -0
- package/dist/tree/state/return-declaration/return-declaration.test.d.ts +1 -0
- package/dist/tree/state/types/index.d.ts +7 -0
- package/dist/tree/state/value-descriptor/value-descriptor.d.ts +1 -1
- package/dist/tree/utils/data-type.d.ts +1 -0
- package/package.json +1 -1
|
@@ -88,6 +88,33 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
88
88
|
results: string;
|
|
89
89
|
};
|
|
90
90
|
};
|
|
91
|
+
"string-loop": {
|
|
92
|
+
id: LoopTypes;
|
|
93
|
+
inputs: {
|
|
94
|
+
string: string;
|
|
95
|
+
};
|
|
96
|
+
outputs: {
|
|
97
|
+
results: string;
|
|
98
|
+
};
|
|
99
|
+
};
|
|
100
|
+
"object-keys-loop": {
|
|
101
|
+
id: LoopTypes;
|
|
102
|
+
inputs: {
|
|
103
|
+
object: string;
|
|
104
|
+
};
|
|
105
|
+
outputs: {
|
|
106
|
+
results: string;
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
"object-values-loop": {
|
|
110
|
+
id: LoopTypes;
|
|
111
|
+
inputs: {
|
|
112
|
+
object: string;
|
|
113
|
+
};
|
|
114
|
+
outputs: {
|
|
115
|
+
results: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
91
118
|
"manual-flow-loop": {
|
|
92
119
|
id: LoopTypes;
|
|
93
120
|
inputs: {};
|
|
@@ -95,6 +122,15 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
95
122
|
results: string;
|
|
96
123
|
};
|
|
97
124
|
};
|
|
125
|
+
"counted-loop": {
|
|
126
|
+
id: LoopTypes;
|
|
127
|
+
inputs: {
|
|
128
|
+
number: string;
|
|
129
|
+
};
|
|
130
|
+
outputs: {
|
|
131
|
+
results: string;
|
|
132
|
+
};
|
|
133
|
+
};
|
|
98
134
|
};
|
|
99
135
|
condition: {
|
|
100
136
|
"more-than-or-equal": {
|
|
@@ -1,8 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { IReturnDeclarationTransfer, IBreakStatementReference, IBreakStatementTransfer, ILoopReference, IConditionReference, IOutputMapReference } from '../../../../..';
|
|
2
2
|
|
|
3
3
|
export declare const helloWorldLoopBreakStatementOutputDeclarationParentRef: IBreakStatementReference;
|
|
4
|
-
export declare const helloWorldLoopBreakStatementOutputDeclarationDataTypeParentRef: IReturnDeclarationReference;
|
|
5
|
-
export declare const helloWorldLoopBreakStatementOutputDeclarationDataType: IDataTypeTransfer;
|
|
6
4
|
export declare const helloWorldLoopContinueStatementOutputReadsValueRef: IOutputMapReference;
|
|
7
5
|
export declare const helloWorldLoopBreakStatementOutputDeclaration: IReturnDeclarationTransfer;
|
|
8
6
|
export declare const helloWorldLoopBreakStatementCalledByRef: IConditionReference;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IDataTypeTransfer, IReturnDeclarationReference, IReturnDeclarationTransfer, IContinueStatementReference, IContinueStatementTransfer, ILoopReference, IConditionReference, IOutputMapReference } from '../../../../..';
|
|
2
2
|
|
|
3
3
|
export declare const helloWorldLoopContinueStatementOutputParentRef: IContinueStatementReference;
|
|
4
|
-
export declare const
|
|
4
|
+
export declare const helloWorldLoopContinueStatementOutputDataTypeParentRef: IReturnDeclarationReference;
|
|
5
5
|
export declare const helloWorldLoopContinueStatementOutputDataType: IDataTypeTransfer;
|
|
6
6
|
export declare const helloWorldLoopContinueStatementOutputReadsValueRef: IOutputMapReference;
|
|
7
7
|
export declare const helloWorldLoopContinueStatementOutput: IReturnDeclarationTransfer;
|