@elyx-code/project-logic-tree 0.0.6967 → 0.0.6969
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 +8 -0
- package/dist/index.js +26757 -26700
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -13230,6 +13230,10 @@ 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
|
+
isStopped(): boolean;
|
|
13235
|
+
isPaused(): boolean;
|
|
13236
|
+
checkStateAndPause(): Promise<void>;
|
|
13233
13237
|
get valueResolutionContext(): IValueResolutionContext;
|
|
13234
13238
|
skip(entity: TestableEntityState): void;
|
|
13235
13239
|
schedule(entity: TestableEntityState, inputs?: IDynamicValue[], client?: IExecutionClient): Promise<IExecutionResult | null>;
|
|
@@ -13326,6 +13330,10 @@ export declare enum BaseValueDescriptorIds {
|
|
|
13326
13330
|
NotStarted = "not-started"
|
|
13327
13331
|
}
|
|
13328
13332
|
|
|
13333
|
+
export declare class ExecutionStoppedError extends Error {
|
|
13334
|
+
constructor();
|
|
13335
|
+
}
|
|
13336
|
+
|
|
13329
13337
|
export declare enum ExecutionTerminationType {
|
|
13330
13338
|
Success = "success",
|
|
13331
13339
|
ConditionNotMet = "condition-not-met",
|