gonzalo_ticket_jira/lib.rs
1//! Jira issue connector for gonzalo's ticket layer.
2//!
3//! Implements [`gonzalo_ticket::TicketSource`] over the Jira Cloud REST v3 API,
4//! mapping issues to the canonical [`gonzalo_domain::Ticket`] (ADR 0010). The
5//! mapping ([`mapping`]) is pure and fixture-tested — it normalizes via Jira's
6//! `statusCategory` with optional per-connection `StateMapping` overrides, and
7//! extracts text from ADF bodies. [`JiraSource`] is the thin HTTP layer.
8//! Read-only in phase 1.
9
10mod mapping;
11mod source;
12
13pub use source::JiraSource;