#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic,
Default
)]
#[serde(rename_all = "camelCase")]
pub struct GetConfigOutput<'a> {
#[serde(borrow)]
pub account_token: jacquard_common::CowStr<'a>,
#[serde(borrow)]
pub admin_token: jacquard_common::CowStr<'a>,
#[serde(borrow)]
pub id: jacquard_common::CowStr<'a>,
}
#[jacquard_derive::open_union]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
thiserror::Error,
miette::Diagnostic,
jacquard_derive::IntoStatic
)]
#[serde(tag = "error", content = "message")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetConfigError<'a> {
#[serde(rename = "InvalidID")]
InvalidId(std::option::Option<jacquard_common::CowStr<'a>>),
#[serde(rename = "InvalidServiceAuth")]
InvalidServiceAuth(std::option::Option<jacquard_common::CowStr<'a>>),
}
impl core::fmt::Display for GetConfigError<'_> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
Self::InvalidId(msg) => {
write!(f, "InvalidID")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::InvalidServiceAuth(msg) => {
write!(f, "InvalidServiceAuth")?;
if let Some(msg) = msg {
write!(f, ": {}", msg)?;
}
Ok(())
}
Self::Unknown(err) => write!(f, "Unknown error: {:?}", err),
}
}
}
#[derive(
Debug,
Clone,
Copy,
PartialEq,
Eq,
serde::Serialize,
serde::Deserialize,
jacquard_derive::IntoStatic
)]
pub struct GetConfig;
pub struct GetConfigResponse;
impl jacquard_common::xrpc::XrpcResp for GetConfigResponse {
const NSID: &'static str = "app.ocho.state.getConfig";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetConfigOutput<'de>;
type Err<'de> = GetConfigError<'de>;
}
impl jacquard_common::xrpc::XrpcRequest for GetConfig {
const NSID: &'static str = "app.ocho.state.getConfig";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetConfigResponse;
}
pub struct GetConfigRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetConfigRequest {
const PATH: &'static str = "/xrpc/app.ocho.state.getConfig";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetConfig;
type Response = GetConfigResponse;
}