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
49
50
51
52
//! Per-OpenAPI-tag sub-clients.
//!
//! Each submodule corresponds 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 all transport policy stays
//! centralized. New and unambiguous endpoints should use the generated models in
//! `openapp-sdk-common::generated::types`; older or schema-ambiguous list
//! envelopes still expose `serde_json::Value` until the `OpenAPI` shape is split into
//! distinct generated response types.
//!
//! 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 BillingClient;
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;
pub use types;
/// Convenience alias for schema-ambiguous or still-untyped wire values.
pub type JsonValue = Value;