openlatch-provider 0.1.0

Self-service onboarding CLI + runtime daemon for OpenLatch Editors and Providers
//! Platform REST client. Calls `https://api.openlatch.ai/api/v1/editor/*` etc.
//!
//! Endpoint inventory: PRD §11. Hand-rolled `reqwest::Client` wrappers compose
//! typify-generated request/response types (from `src/generated/types.rs`) with
//! bearer-auth + retry + OL-42xx mapping.
//!
//! T4 fills in `client.rs` + `editor.rs` + `bindings.rs` + `catalog.rs`.
//! T5 adds `probe.rs`. T2 adds `auth.rs`.
//!
//! See `.local/openlatch-provider-v0.1/phase-1-editor-cli.md` Open Question
//! 2026-05-04 for why `progenitor` codegen was deferred (OpenAPI 3.1 vs 3.0
//! mismatch) — `generated.rs` stays as an empty stub until that's resolved.

pub mod auth;
pub mod bindings;
pub mod catalog;
pub mod client;
pub mod editor;
#[path = "generated.rs"]
pub mod generated;
pub mod probe;