#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::AtUri;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct DeleteRecords<S: BosStr = DefaultStr> {
pub uris: Vec<AtUri<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct DeleteRecordsResponse;
impl jacquard_common::xrpc::XrpcResp for DeleteRecordsResponse {
const NSID: &'static str = "ooo.bsky.authfetch.deleteRecords";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ();
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for DeleteRecords<S> {
const NSID: &'static str = "ooo.bsky.authfetch.deleteRecords";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = DeleteRecordsResponse;
}
pub struct DeleteRecordsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for DeleteRecordsRequest {
const PATH: &'static str = "/xrpc/ooo.bsky.authfetch.deleteRecords";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = DeleteRecords<S>;
type Response = DeleteRecordsResponse;
}
pub mod delete_records_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Uris;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uris = Unset;
}
pub struct SetUris<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUris<St> {}
impl<St: State> State for SetUris<St> {
type Uris = Set<members::uris>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uris(());
}
}
pub struct DeleteRecordsBuilder<S: BosStr, St: delete_records_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<AtUri<S>>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> DeleteRecords<S> {
pub fn new() -> DeleteRecordsBuilder<S, delete_records_state::Empty> {
DeleteRecordsBuilder::new()
}
}
impl<S: BosStr> DeleteRecordsBuilder<S, delete_records_state::Empty> {
pub fn new() -> Self {
DeleteRecordsBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DeleteRecordsBuilder<S, St>
where
St: delete_records_state::State,
St::Uris: delete_records_state::IsUnset,
{
pub fn uris(
mut self,
value: impl Into<Vec<AtUri<S>>>,
) -> DeleteRecordsBuilder<S, delete_records_state::SetUris<St>> {
self._fields.0 = Option::Some(value.into());
DeleteRecordsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> DeleteRecordsBuilder<S, St>
where
St: delete_records_state::State,
St::Uris: delete_records_state::IsSet,
{
pub fn build(self) -> DeleteRecords<S> {
DeleteRecords {
uris: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> DeleteRecords<S> {
DeleteRecords {
uris: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}