feat(wfe-core): add StepCondition types and PointerStatus::Skipped

This commit is contained in:
2026-03-26 17:05:14 +00:00
parent a71fa531f9
commit aff3df6fcf
3 changed files with 213 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
pub mod condition;
pub mod error_behavior;
pub mod event;
pub mod execution_error;
@@ -12,6 +13,7 @@ pub mod status;
pub mod workflow_definition;
pub mod workflow_instance;
pub use condition::{ComparisonOp, FieldComparison, StepCondition};
pub use error_behavior::ErrorBehavior;
pub use event::{Event, EventSubscription};
pub use execution_error::ExecutionError;