Skip to main content

jc_conf/
lib.rs

1//! Confluence Cloud REST v2 typed client.
2//!
3//! Module map:
4//! - `page` — get/list/create/update/delete, body-format=atlas_doc_format
5//! - `space` — list, get, find_by_key (key→id resolution)
6//! - `search` — CQL (served by the v1 endpoint; v2 doesn't cover CQL yet)
7//! - `attachments` — list, download, upload (upload still uses v1)
8
9pub mod attachments;
10pub mod page;
11pub mod search;
12pub mod space;