systemprompt-cloud 0.33.0

Cloud API client, credentials, OAuth, and tenant management for systemprompt.io AI governance deployments. Remote sync and multi-tenant orchestration for the MCP governance pipeline.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Cloud API request and response types re-exported from `systemprompt_models`.
//!
//! Splits the wire types into a crate-private set used only by the API client
//! and a public set surfaced to callers (tenants, deploy, secrets, and
//! subscription status).
//!
//! Copyright (c) systemprompt.io — Business Source License 1.1.
//! See <https://systemprompt.io> for licensing details.

pub(super) use systemprompt_models::api::cloud::{
    ApiError, ApiResponse, ListResponse, SetSecretsRequest,
};
pub use systemprompt_models::api::cloud::{
    DeployResponse, RegistryToken, RotateCredentialsResponse, StatusResponse, SubscriptionStatus,
    Tenant, TenantInfo, TenantSecrets, TenantStatus, UserInfo, UserMeResponse,
};