//! §14 canon-verification execution — SDK side.
//!
//! Wires the verification surface that §13 deferred to a follow-up
//! (`.../mockups/13-canon-and-matching/_deferred/verification-execution.md`).
//! Design source of truth: `.../mockups/14-canon-verification-execution/`.
//!
//! ## Module layout
//!
//! - [`types`] — wire shapes for `POST /canon/verify/sessions` and
//! `GET /canon/verify/sessions/:id`. JSON over the wire.
//! - [`client`] — the [`VerifyClient`] trait + [`VerifyError`].
//! - [`http_client`] — production [`HttpVerifyClient`] backed by `ureq`.
//! - [`mock_client`] — fixture-driven [`MockVerifyClient`] for tests.
//!
//! Scope re-uses the existing canon auth/token resolution; tokens
//! resolve via [`crate::auth::resolve_full`]. The SDK calls the
//! verify endpoints only when the user is authenticated AND has
//! `kanon:` / `aristos:` annotations with `verify = "full"`.
pub use ;
pub use HttpVerifyClient;
pub use MockVerifyClient;
pub use ;