//! Hand-written extensions on top of the generated DTOs.
//!
//! Lives next to [`super::generated`] so that:
//! * convenience constructors (`with_name`, `new`, …),
//! * cross-cutting prose docs that don't belong on a single schema,
//! * and any `From`/`Into` bridges or trait impls
//!
//! can be added without touching the auto-generated file. Rust's open-ended
//! `impl` rules let us extend the generated structs from this sibling module
//! freely. **Add to this file, not to `generated.rs`** — the latter is
//! overwritten on every `cargo codegen` run.
use CreateSortRequest;