gingr/lib.rs
1//! Gingr integration contracts, DTO mappings, endpoints, transport, and webhook verification.
2/// Validated tenant URL, provider label, and redacted API-key configuration for Gingr requests.
3pub mod config;
4/// Raw Gingr DTO surfaces that are intentionally quarantined before NVA domain promotion.
5pub mod dto;
6pub mod endpoint;
7pub mod mapping;
8/// HTTP and provider response envelopes that retain raw Gingr evidence for later decoding.
9pub mod response;
10/// Secret-aware request capture, redaction, and transport abstractions for Gingr endpoints.
11pub mod transport;
12pub mod webhook;
13
14pub use config::{ApiKey, BaseUrl, Provider, Subdomain};