@elyx-code/project-logic-tree 0.0.6332 → 0.0.6334
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 +2 -2
- package/dist/index.js +323 -324
- package/dist/index.umd.cjs +59 -61
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -11309,7 +11309,7 @@ export { outputMapValidation }
|
|
|
11309
11309
|
export declare class ParallelExecutionOperation extends ActionDescriptorState {
|
|
11310
11310
|
readonly id = ExecutionOperations.Parallel;
|
|
11311
11311
|
readonly name = ExecutionOperations.Parallel;
|
|
11312
|
-
readonly description = "
|
|
11312
|
+
readonly description = "Programmatically execute a list of actions one after the other";
|
|
11313
11313
|
readonly version = "1";
|
|
11314
11314
|
readonly autoexecutable = true;
|
|
11315
11315
|
initialData: IActionDescriptor | IActionDescriptorTransfer;
|
|
@@ -12687,7 +12687,7 @@ export { searchValidation }
|
|
|
12687
12687
|
export declare class SequentialExecutionOperation extends ActionDescriptorState {
|
|
12688
12688
|
readonly id = ExecutionOperations.Sequential;
|
|
12689
12689
|
readonly name = ExecutionOperations.Sequential;
|
|
12690
|
-
readonly description = "
|
|
12690
|
+
readonly description = "Programmatically execute a list of actions one after the other";
|
|
12691
12691
|
readonly version = "1";
|
|
12692
12692
|
readonly autoexecutable = true;
|
|
12693
12693
|
initialData: IActionDescriptor | IActionDescriptorTransfer;
|