@elyx-code/project-logic-tree 0.0.6968 → 0.0.6970
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.cjs +129 -129
- package/dist/index.d.ts +9 -0
- package/dist/index.js +26757 -26699
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13230,6 +13230,11 @@ export declare enum BaseValueDescriptorIds {
|
|
|
13230
13230
|
skipNotify?: boolean;
|
|
13231
13231
|
}) => Promise<void> | void);
|
|
13232
13232
|
constructor(project: ProjectState, entities: TestableEntityState[], entryPoint: TestableEntityState, parentExecution?: Execution | null, parentContext?: IExecutionInstanceParentContext);
|
|
13233
|
+
get rootExecution(): Execution;
|
|
13234
|
+
get rootState(): ExecutionState;
|
|
13235
|
+
isStopped(): boolean;
|
|
13236
|
+
isPaused(): boolean;
|
|
13237
|
+
checkStateAndPause(): Promise<void>;
|
|
13233
13238
|
get valueResolutionContext(): IValueResolutionContext;
|
|
13234
13239
|
skip(entity: TestableEntityState): void;
|
|
13235
13240
|
schedule(entity: TestableEntityState, inputs?: IDynamicValue[], client?: IExecutionClient): Promise<IExecutionResult | null>;
|
|
@@ -13326,6 +13331,10 @@ export declare enum BaseValueDescriptorIds {
|
|
|
13326
13331
|
NotStarted = "not-started"
|
|
13327
13332
|
}
|
|
13328
13333
|
|
|
13334
|
+
export declare class ExecutionStoppedError extends Error {
|
|
13335
|
+
constructor();
|
|
13336
|
+
}
|
|
13337
|
+
|
|
13329
13338
|
export declare enum ExecutionTerminationType {
|
|
13330
13339
|
Success = "success",
|
|
13331
13340
|
ConditionNotMet = "condition-not-met",
|