#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::string::{Did, Nsid};
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::com_atproto::sync::list_repos_by_collection;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ListReposByCollection<'a> {
#[serde(borrow)]
pub collection: Nsid<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ListReposByCollectionOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(borrow)]
pub repos: Vec<list_repos_by_collection::Repo<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct Repo<'a> {
#[serde(borrow)]
pub did: Did<'a>,
}
pub struct ListReposByCollectionResponse;
impl jacquard_common::xrpc::XrpcResp for ListReposByCollectionResponse {
const NSID: &'static str = "com.atproto.sync.listReposByCollection";
const ENCODING: &'static str = "application/json";
type Output<'de> = ListReposByCollectionOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for ListReposByCollection<'a> {
const NSID: &'static str = "com.atproto.sync.listReposByCollection";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = ListReposByCollectionResponse;
}
pub struct ListReposByCollectionRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ListReposByCollectionRequest {
const PATH: &'static str = "/xrpc/com.atproto.sync.listReposByCollection";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = ListReposByCollection<'de>;
type Response = ListReposByCollectionResponse;
}
impl<'a> LexiconSchema for Repo<'a> {
fn nsid() -> &'static str {
"com.atproto.sync.listReposByCollection"
}
fn def_name() -> &'static str {
"repo"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_com_atproto_sync_listReposByCollection()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
fn _default_limit() -> Option<i64> {
Some(500i64)
}
pub mod list_repos_by_collection_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 Collection;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Collection = Unset;
}
pub struct SetCollection<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCollection<S> {}
impl<S: State> State for SetCollection<S> {
type Collection = Set<members::collection>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct collection(());
}
}
pub struct ListReposByCollectionBuilder<'a, S: list_repos_by_collection_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Nsid<'a>>, Option<CowStr<'a>>, Option<i64>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> ListReposByCollection<'a> {
pub fn new() -> ListReposByCollectionBuilder<
'a,
list_repos_by_collection_state::Empty,
> {
ListReposByCollectionBuilder::new()
}
}
impl<'a> ListReposByCollectionBuilder<'a, list_repos_by_collection_state::Empty> {
pub fn new() -> Self {
ListReposByCollectionBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> ListReposByCollectionBuilder<'a, S>
where
S: list_repos_by_collection_state::State,
S::Collection: list_repos_by_collection_state::IsUnset,
{
pub fn collection(
mut self,
value: impl Into<Nsid<'a>>,
) -> ListReposByCollectionBuilder<
'a,
list_repos_by_collection_state::SetCollection<S>,
> {
self._fields.0 = Option::Some(value.into());
ListReposByCollectionBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: list_repos_by_collection_state::State> ListReposByCollectionBuilder<'a, S> {
pub fn cursor(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: list_repos_by_collection_state::State> ListReposByCollectionBuilder<'a, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S> ListReposByCollectionBuilder<'a, S>
where
S: list_repos_by_collection_state::State,
S::Collection: list_repos_by_collection_state::IsSet,
{
pub fn build(self) -> ListReposByCollection<'a> {
ListReposByCollection {
collection: self._fields.0.unwrap(),
cursor: self._fields.1,
limit: self._fields.2,
}
}
}
pub mod repo_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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetDid<S> {}
impl<S: State> State for SetDid<S> {
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct did(());
}
}
pub struct RepoBuilder<'a, S: repo_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Did<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Repo<'a> {
pub fn new() -> RepoBuilder<'a, repo_state::Empty> {
RepoBuilder::new()
}
}
impl<'a> RepoBuilder<'a, repo_state::Empty> {
pub fn new() -> Self {
RepoBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> RepoBuilder<'a, S>
where
S: repo_state::State,
S::Did: repo_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<'a>>,
) -> RepoBuilder<'a, repo_state::SetDid<S>> {
self._fields.0 = Option::Some(value.into());
RepoBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> RepoBuilder<'a, S>
where
S: repo_state::State,
S::Did: repo_state::IsSet,
{
pub fn build(self) -> Repo<'a> {
Repo {
did: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> Repo<'a> {
Repo {
did: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_com_atproto_sync_listReposByCollection() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("com.atproto.sync.listReposByCollection"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcQuery(LexXrpcQuery {
parameters: Some(
LexXrpcQueryParameter::Params(LexXrpcParameters {
required: Some(vec![SmolStr::new_static("collection")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("collection"),
LexXrpcParametersProperty::String(LexString {
format: Some(LexStringFormat::Nsid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cursor"),
LexXrpcParametersProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("limit"),
LexXrpcParametersProperty::Integer(LexInteger {
..Default::default()
}),
);
map
},
..Default::default()
}),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("repo"),
LexUserType::Object(LexObject {
required: Some(vec![SmolStr::new_static("did")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}