systemprompt-oauth 0.1.18

OAuth 2.0 authentication and authorization module for systemprompt.io OS
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod analytics;
pub mod cimd;
pub mod clients;
pub mod oauth;

pub use clients::api::{CreateOAuthClientRequest, OAuthClientResponse, UpdateOAuthClientRequest};
pub use clients::{ClientRelations, OAuthClient, OAuthClientRow};
pub use oauth::api::Pagination;
pub use oauth::dynamic_registration::{DynamicRegistrationRequest, DynamicRegistrationResponse};
pub use oauth::{
    DisplayMode, GrantType, JwtClaims, OAuthConfig, PkceMethod, Prompt, ResponseMode, ResponseType,
    TokenAuthMethod,
};