use serde::Deserialize;
pub mod auth_refresh;
pub mod auth_refresh_for_user;
pub mod auth_with_password;
pub mod impersonate;
pub mod request_verification;
#[derive(Clone, Debug, Deserialize)]
pub struct AuthStore {
pub record: AuthStoreRecord,
pub token: String,
}
#[derive(Clone, Debug, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AuthStoreRecord {
pub id: String,
pub collection_id: String,
pub collection_name: String,
pub created: String,
pub updated: String,
pub email: String,
pub email_visibility: bool,
pub verified: bool,
}