summaryrefslogtreecommitdiff
path: root/makima/src/db/models.rs
diff options
context:
space:
mode:
Diffstat (limited to 'makima/src/db/models.rs')
-rw-r--r--makima/src/db/models.rs8
1 files changed, 2 insertions, 6 deletions
diff --git a/makima/src/db/models.rs b/makima/src/db/models.rs
index 0b8ef43..4e569ec 100644
--- a/makima/src/db/models.rs
+++ b/makima/src/db/models.rs
@@ -3064,14 +3064,11 @@ pub struct UpdateContractDefinitionRequest {
pub editor_y: Option<f64>,
}
-/// Request to start a chain
+/// Request to start a chain (kept for backwards compatibility)
#[derive(Debug, Clone, Deserialize, ToSchema)]
#[serde(rename_all = "camelCase")]
pub struct StartChainRequest {
- /// Whether to create a supervisor task that monitors chain progress
- #[serde(default)]
- pub with_supervisor: bool,
- /// Repository URL for the supervisor task to work with
+ /// Repository URL (reserved for future use)
pub repository_url: Option<String>,
}
@@ -3080,7 +3077,6 @@ pub struct StartChainRequest {
#[serde(rename_all = "camelCase")]
pub struct StartChainResponse {
pub chain_id: Uuid,
- pub supervisor_task_id: Option<Uuid>,
/// Root contracts created (those with no dependencies)
pub contracts_created: Vec<Uuid>,
pub status: String,