systemprompt_models/api/
mod.rs1pub mod cli_gateway;
7pub mod cloud;
8pub mod contexts;
9pub mod errors;
10pub mod ext;
11pub mod modules;
12pub mod pagination;
13pub mod responses;
14
15pub use cli_gateway::{CliExecuteRequest, CliOutputEvent};
16pub use cloud::{
17 CloudApiError, CloudApiErrorDetail, CloudApiResponse, CloudCustomerInfo, CloudListResponse,
18 CloudPlan, CloudPlanInfo, CloudStatusResponse, CloudTenant, CloudTenantInfo,
19 CloudTenantSecrets, CloudTenantStatus, CloudTenantStatusResponse, CloudUserInfo,
20 DeployResponse, RegistryToken, SetSecretsRequest, SubscriptionStatus, UserMeResponse,
21};
22pub use contexts::{
23 ContextKind, CreateContextRequest, ParseContextKindError, UpdateContextRequest, UserContext,
24 UserContextWithStats,
25};
26pub use errors::{ApiError, ErrorCode, ErrorResponse, ValidationError};
27pub use ext::ApiErrorExt;
28pub use modules::ModuleInfo;
29pub use pagination::{
30 ApiQuery, PaginationInfo, PaginationParams, SearchQuery, SortOrder, SortParams,
31};
32pub use responses::{
33 AcceptedResponse, ApiResponse, CollectionResponse, CreatedResponse, DiscoveryResponse, Link,
34 MarkdownFrontmatter, MarkdownResponse, ResponseLinks, ResponseMeta, SingleResponse,
35 SuccessResponse,
36};