jc-conf 0.2.0

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

pub mod attachments;
pub mod page;
pub mod search;
pub mod space;