//! Jira provider implementation for devboy-tools.
//!
//! This crate provides integration with Jira API for issues.
//! Supports both Jira Cloud (API v3) and Jira Self-Hosted/Data Center (API v2).
//! Jira does not have merge requests, so MR operations return
//! `ProviderUnsupported` errors.
pub use ;
pub use JiraSchemaEnricher;
pub use JiraMetadata;
// Curated re-export. Only types meant for downstream consumers are
// surfaced — wire DTOs (JiraIssue, JiraIssueFields, CreateIssuePayload,
// JiraSearchResponse, the Structure plugin payloads, etc.) stay
// internal so the public API doesn't lock us into the raw Jira REST
// shape across SemVer bumps. If you need a wire DTO out of this
// crate, file an issue.
pub use ;