systemprompt-cloud 0.14.5

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.
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, plans, deploy/provisioning
//! events, secrets, and subscription status).

pub(super) use systemprompt_models::api::cloud::{
    ActivityData, ActivityRequest, ApiError, ApiResponse, CheckoutRequest, CustomDomainResponse,
    ExternalDbAccessResponse, ListResponse, SetCustomDomainRequest, SetExternalDbAccessRequest,
    SetSecretsRequest,
};
pub use systemprompt_models::api::cloud::{
    CheckoutEvent, CheckoutResponse, DeployResponse, ListSecretsResponse, Plan, ProvisioningEvent,
    ProvisioningEventType, RegistryToken, RotateCredentialsResponse, StatusResponse,
    SubscriptionStatus, Tenant, TenantInfo, TenantSecrets, TenantStatus, UserInfo, UserMeResponse,
};