2026-04-29 16:24:44 +00:00
|
|
|
//! High-level write API for pipeline items.
|
|
|
|
|
//!
|
|
|
|
|
//! Provides typed setters and migration helpers for updating pipeline items
|
|
|
|
|
//! in the in-memory CRDT document, with ops persisted to SQLite.
|
|
|
|
|
|
|
|
|
|
mod item;
|
|
|
|
|
mod migrations;
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests;
|
|
|
|
|
|
|
|
|
|
pub use item::{
|
2026-05-12 19:58:43 +01:00
|
|
|
bump_retry_count, set_agent, set_blocked, set_depends_on, set_epic, set_item_type,
|
2026-05-12 20:55:25 +01:00
|
|
|
set_mergemaster_attempted, set_name, set_qa_mode, set_retry_count, set_review_hold, write_item,
|
2026-04-29 16:24:44 +00:00
|
|
|
};
|
|
|
|
|
pub use migrations::{migrate_names_from_slugs, migrate_story_ids_to_numeric, name_from_story_id};
|