#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::bytes::Bytes;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::Did;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetCheckout<S: BosStr = DefaultStr> {
pub did: Did<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetCheckoutOutput {
pub body: Bytes,
}
pub struct GetCheckoutResponse;
impl jacquard_common::xrpc::XrpcResp for GetCheckoutResponse {
const NSID: &'static str = "com.atproto.sync.getCheckout";
const ENCODING: &'static str = "application/vnd.ipld.car";
type Output<S: BosStr> = GetCheckoutOutput;
type Err = jacquard_common::xrpc::GenericError;
fn encode_output<S: BosStr>(
output: &Self::Output<S>,
) -> Result<Vec<u8>, jacquard_common::xrpc::EncodeError>
where
Self::Output<S>: Serialize,
{
Ok(output.body.to_vec())
}
fn decode_output<'de, S>(
body: &'de [u8],
) -> Result<Self::Output<S>, jacquard_common::error::DecodeError>
where
S: BosStr + Deserialize<'de>,
Self::Output<S>: Deserialize<'de>,
{
Ok(GetCheckoutOutput {
body: jacquard_common::deps::bytes::Bytes::copy_from_slice(body),
})
}
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetCheckout<S> {
const NSID: &'static str = "com.atproto.sync.getCheckout";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetCheckoutResponse;
}
pub struct GetCheckoutRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetCheckoutRequest {
const PATH: &'static str = "/xrpc/com.atproto.sync.getCheckout";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetCheckout<S>;
type Response = GetCheckoutResponse;
}
pub mod get_checkout_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Did = Unset;
}
pub struct SetDid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDid<St> {}
impl<St: State> State for SetDid<St> {
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct did(());
}
}
pub struct GetCheckoutBuilder<S: BosStr, St: get_checkout_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Did<S>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetCheckout<S> {
pub fn new() -> GetCheckoutBuilder<S, get_checkout_state::Empty> {
GetCheckoutBuilder::new()
}
}
impl<S: BosStr> GetCheckoutBuilder<S, get_checkout_state::Empty> {
pub fn new() -> Self {
GetCheckoutBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetCheckoutBuilder<S, St>
where
St: get_checkout_state::State,
St::Did: get_checkout_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<S>>,
) -> GetCheckoutBuilder<S, get_checkout_state::SetDid<St>> {
self._fields.0 = Option::Some(value.into());
GetCheckoutBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetCheckoutBuilder<S, St>
where
St: get_checkout_state::State,
St::Did: get_checkout_state::IsSet,
{
pub fn build(self) -> GetCheckout<S> {
GetCheckout {
did: self._fields.0.unwrap(),
}
}
}