#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{Did, AtUri, Cid, Datetime};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
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::sh_tangled::repo::list_collaborators;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ListItem<S: BosStr = DefaultStr> {
pub added_by: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub created_at: Datetime,
pub subject: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub uri: Option<AtUri<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ListCollaborators<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(default = "_default_order")]
#[serde(skip_serializing_if = "Option::is_none")]
pub order: Option<S>,
pub subject: Did<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ListCollaboratorsOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
pub items: Vec<list_collaborators::ListItem<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for ListItem<S> {
fn nsid() -> &'static str {
"sh.tangled.repo.listCollaborators"
}
fn def_name() -> &'static str {
"listItem"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_sh_tangled_repo_listCollaborators()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub struct ListCollaboratorsResponse;
impl jacquard_common::xrpc::XrpcResp for ListCollaboratorsResponse {
const NSID: &'static str = "sh.tangled.repo.listCollaborators";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ListCollaboratorsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for ListCollaborators<S> {
const NSID: &'static str = "sh.tangled.repo.listCollaborators";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = ListCollaboratorsResponse;
}
pub struct ListCollaboratorsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ListCollaboratorsRequest {
const PATH: &'static str = "/xrpc/sh.tangled.repo.listCollaborators";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = ListCollaborators<S>;
type Response = ListCollaboratorsResponse;
}
pub mod list_item_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 AddedBy;
type CreatedAt;
type Subject;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type AddedBy = Unset;
type CreatedAt = Unset;
type Subject = Unset;
}
pub struct SetAddedBy<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAddedBy<St> {}
impl<St: State> State for SetAddedBy<St> {
type AddedBy = Set<members::added_by>;
type CreatedAt = St::CreatedAt;
type Subject = St::Subject;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type AddedBy = St::AddedBy;
type CreatedAt = Set<members::created_at>;
type Subject = St::Subject;
}
pub struct SetSubject<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSubject<St> {}
impl<St: State> State for SetSubject<St> {
type AddedBy = St::AddedBy;
type CreatedAt = St::CreatedAt;
type Subject = Set<members::subject>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct added_by(());
pub struct created_at(());
pub struct subject(());
}
}
pub struct ListItemBuilder<St: list_item_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Did<S>>,
Option<Cid<S>>,
Option<Datetime>,
Option<Did<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl ListItem<DefaultStr> {
pub fn new() -> ListItemBuilder<list_item_state::Empty, DefaultStr> {
ListItemBuilder::new()
}
}
impl<S: BosStr> ListItem<S> {
pub fn builder() -> ListItemBuilder<list_item_state::Empty, S> {
ListItemBuilder::builder()
}
}
impl ListItemBuilder<list_item_state::Empty, DefaultStr> {
pub fn new() -> Self {
ListItemBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> ListItemBuilder<list_item_state::Empty, S> {
pub fn builder() -> Self {
ListItemBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ListItemBuilder<St, S>
where
St: list_item_state::State,
St::AddedBy: list_item_state::IsUnset,
{
pub fn added_by(
mut self,
value: impl Into<Did<S>>,
) -> ListItemBuilder<list_item_state::SetAddedBy<St>, S> {
self._fields.0 = Option::Some(value.into());
ListItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: list_item_state::State, S: BosStr> ListItemBuilder<St, S> {
pub fn cid(mut self, value: impl Into<Option<Cid<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_cid(mut self, value: Option<Cid<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<St, S: BosStr> ListItemBuilder<St, S>
where
St: list_item_state::State,
St::CreatedAt: list_item_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> ListItemBuilder<list_item_state::SetCreatedAt<St>, S> {
self._fields.2 = Option::Some(value.into());
ListItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ListItemBuilder<St, S>
where
St: list_item_state::State,
St::Subject: list_item_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<Did<S>>,
) -> ListItemBuilder<list_item_state::SetSubject<St>, S> {
self._fields.3 = Option::Some(value.into());
ListItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: list_item_state::State, S: BosStr> ListItemBuilder<St, S> {
pub fn uri(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_uri(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.4 = value;
self
}
}
impl<St, S: BosStr> ListItemBuilder<St, S>
where
St: list_item_state::State,
St::AddedBy: list_item_state::IsSet,
St::CreatedAt: list_item_state::IsSet,
St::Subject: list_item_state::IsSet,
{
pub fn build(self) -> ListItem<S> {
ListItem {
added_by: self._fields.0.unwrap(),
cid: self._fields.1,
created_at: self._fields.2.unwrap(),
subject: self._fields.3.unwrap(),
uri: self._fields.4,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> ListItem<S> {
ListItem {
added_by: self._fields.0.unwrap(),
cid: self._fields.1,
created_at: self._fields.2.unwrap(),
subject: self._fields.3.unwrap(),
uri: self._fields.4,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_sh_tangled_repo_listCollaborators() -> 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("sh.tangled.repo.listCollaborators"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("listItem"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("subject"),
SmolStr::new_static("addedBy"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("addedBy"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("DID that added this collaborator"),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optional record CID for record-backed indexers",
),
),
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("When the collaborator was added"),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("DID of the collaborator"),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Optional record AT-URI for record-backed indexers",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcQuery(LexXrpcQuery {
parameters: Some(
LexXrpcQueryParameter::Params(LexXrpcParameters {
required: Some(vec![SmolStr::new_static("subject")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cursor"),
LexXrpcParametersProperty::String(LexString {
description: Some(CowStr::new_static("Pagination cursor")),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("limit"),
LexXrpcParametersProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("order"),
LexXrpcParametersProperty::String(LexString {
description: Some(
CowStr::new_static("Sort direction by createdAt."),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("subject"),
LexXrpcParametersProperty::String(LexString {
description: Some(
CowStr::new_static(
"Repo DID whose collaborator records to list.",
),
),
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map
},
..Default::default()
}),
),
..Default::default()
}),
);
map
},
..Default::default()
}
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
fn _default_order<S: jacquard_common::FromStaticStr>() -> Option<S> {
Some(S::from_static("desc"))
}
pub mod list_collaborators_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 Subject;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Subject = Unset;
}
pub struct SetSubject<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetSubject<St> {}
impl<St: State> State for SetSubject<St> {
type Subject = Set<members::subject>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct subject(());
}
}
pub struct ListCollaboratorsBuilder<
St: list_collaborators_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<i64>, Option<S>, Option<Did<S>>),
_type: PhantomData<fn() -> S>,
}
impl ListCollaborators<DefaultStr> {
pub fn new() -> ListCollaboratorsBuilder<
list_collaborators_state::Empty,
DefaultStr,
> {
ListCollaboratorsBuilder::new()
}
}
impl<S: BosStr> ListCollaborators<S> {
pub fn builder() -> ListCollaboratorsBuilder<list_collaborators_state::Empty, S> {
ListCollaboratorsBuilder::builder()
}
}
impl ListCollaboratorsBuilder<list_collaborators_state::Empty, DefaultStr> {
pub fn new() -> Self {
ListCollaboratorsBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> ListCollaboratorsBuilder<list_collaborators_state::Empty, S> {
pub fn builder() -> Self {
ListCollaboratorsBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<St: list_collaborators_state::State, S: BosStr> ListCollaboratorsBuilder<St, S> {
pub fn cursor(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<St: list_collaborators_state::State, S: BosStr> ListCollaboratorsBuilder<St, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: list_collaborators_state::State, S: BosStr> ListCollaboratorsBuilder<St, S> {
pub fn order(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_order(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<St, S: BosStr> ListCollaboratorsBuilder<St, S>
where
St: list_collaborators_state::State,
St::Subject: list_collaborators_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<Did<S>>,
) -> ListCollaboratorsBuilder<list_collaborators_state::SetSubject<St>, S> {
self._fields.3 = Option::Some(value.into());
ListCollaboratorsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ListCollaboratorsBuilder<St, S>
where
St: list_collaborators_state::State,
St::Subject: list_collaborators_state::IsSet,
{
pub fn build(self) -> ListCollaborators<S> {
ListCollaborators {
cursor: self._fields.0,
limit: self._fields.1,
order: self._fields.2,
subject: self._fields.3.unwrap(),
}
}
}