1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//! Per-OpenAPI-tag sub-clients.
//!
//! Each submodule corresponds 1:1 to a `tag` group in
//! `packages/api-spec/openapi.json`. The sub-clients are intentionally thin —
//! they exist so Rust callers get ergonomic method names (`client.orgs().list()`)
//! while still exposing `serde_json::Value` for the wire payloads until the
//! progenitor-generated typed models in `openapp-sdk-common::generated` are wired
//! up end-to-end.
//!
//! The Python SDK does not use these sub-clients directly; it calls
//! [`crate::transport::Transport::request_json`] through the bridge and layers its
//! own Pydantic-typed wrappers on top.
pub use ApartmentResidentsClient;
pub use ApiKeysClient;
pub use AuthClient;
pub use DevicesClient;
pub use EntitiesClient;
pub use EulaClient;
pub use IntegrationsClient;
pub use LanAgentClient;
pub use MeClient;
pub use OrgsClient;
pub use PublicAccessClient;
pub use ScriptingClient;
pub use StatusClient;
pub use UsersClient;
pub use ZonesClient;
/// Convenience alias: every typed wire value is `serde_json::Value` for now. Typed
/// wrappers can replace this once `openapp-sdk-common::generated` is populated.
pub type JsonValue = Value;