ironflow-api 2.11.4

REST API for ironflow run management and observability
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! API entities — DTOs and query parameter types.
//!
//! These types form the public API contract. They map from internal store
//! models and are never exposed directly.

mod auth;
mod create_run;
mod run;
mod stats;
mod step;
mod user;

pub use auth::{MeResponse, SignInRequest, SignUpRequest};
pub use create_run::CreateRunRequest;
pub use run::{ListRunsQuery, RunDetailResponse, RunResponse};
pub use stats::StatsResponse;
pub use step::StepResponse;
pub use user::{CreateUserRequest, UpdateRoleRequest, UserResponse};