@elyx-code/project-logic-tree 0.0.6078 → 0.0.6079
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 +26 -1
- package/dist/definitions/built-in-base-entities/operations/function-execution/parallel.d.ts +0 -7
- package/dist/index.js +6979 -6958
- package/dist/index.umd.cjs +118 -118
- package/dist/tree/state/output-map/output-map.test.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseEntityNames, ComparisonOperatorTypes, EntityOperations, GlobalEventNames, HTTPOperations, LoopTypes, NumberOperations, StandaloneOperatorTypes, StringOperations } from '../types';
|
|
1
|
+
import { BaseEntityNames, ComparisonOperatorTypes, EntityOperations, ExecutionOperations, GlobalEventNames, HTTPOperations, LoopTypes, NumberOperations, StandaloneOperatorTypes, StringOperations } from '../types';
|
|
2
2
|
|
|
3
3
|
export declare enum BaseValueDescriptorIds {
|
|
4
4
|
ActionOngoingProcessOutputValue = "action-ongoing-process-output-value-descriptor-id"
|
|
@@ -181,6 +181,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
181
181
|
outputs: {
|
|
182
182
|
result: {
|
|
183
183
|
id: string;
|
|
184
|
+
dataType: {
|
|
185
|
+
id: string;
|
|
186
|
+
};
|
|
184
187
|
};
|
|
185
188
|
error: {
|
|
186
189
|
id: string;
|
|
@@ -203,6 +206,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
203
206
|
outputs: {
|
|
204
207
|
result: {
|
|
205
208
|
id: string;
|
|
209
|
+
dataType: {
|
|
210
|
+
id: string;
|
|
211
|
+
};
|
|
206
212
|
};
|
|
207
213
|
error: {
|
|
208
214
|
id: string;
|
|
@@ -262,6 +268,25 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
262
268
|
};
|
|
263
269
|
};
|
|
264
270
|
};
|
|
271
|
+
parallel: {
|
|
272
|
+
id: ExecutionOperations;
|
|
273
|
+
inputs: {
|
|
274
|
+
listOfActions: {
|
|
275
|
+
id: string;
|
|
276
|
+
};
|
|
277
|
+
};
|
|
278
|
+
outputs: {
|
|
279
|
+
results: {
|
|
280
|
+
id: string;
|
|
281
|
+
dataType: {
|
|
282
|
+
id: string;
|
|
283
|
+
};
|
|
284
|
+
};
|
|
285
|
+
error: {
|
|
286
|
+
id: string;
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
|
+
};
|
|
265
290
|
};
|
|
266
291
|
loop: {
|
|
267
292
|
"list-loop": {
|
|
@@ -1,12 +1,5 @@
|
|
|
1
1
|
import { IValueDescriptorReference, IActionDescriptorReference, IDataTypeTransfer, IActionDescriptorTransfer, IValueDescriptorTransfer } from '../../..';
|
|
2
2
|
|
|
3
|
-
export declare enum ParallelExecutionOperationInputIds {
|
|
4
|
-
ListOfFunctions = "parallel-execution-list-of-functions-argument-declaration"
|
|
5
|
-
}
|
|
6
|
-
export declare enum ParallelExecutionOperationOutputIds {
|
|
7
|
-
ListOfExecutionResults = "parallel-execution-result-return-delaration",
|
|
8
|
-
Error = "parallel-execution-error-return-delaration"
|
|
9
|
-
}
|
|
10
3
|
export declare const parallelExecutionOperationListOfFunctionsBlueprintDynamicOutput: IValueDescriptorTransfer;
|
|
11
4
|
export declare const parallelExecutionOperationListOfFunctionsBlueprintDynamicInput: IValueDescriptorTransfer;
|
|
12
5
|
export declare const parallelExecutionOperationListOfFunctionsBlueprint: IActionDescriptorTransfer;
|