#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
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 RemoveCollaborator<S: BosStr = DefaultStr> {
pub repo: Did<S>,
pub subject: Did<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct RemoveCollaboratorResponse;
impl jacquard_common::xrpc::XrpcResp for RemoveCollaboratorResponse {
const NSID: &'static str = "sh.tangled.repo.removeCollaborator";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ();
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for RemoveCollaborator<S> {
const NSID: &'static str = "sh.tangled.repo.removeCollaborator";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = RemoveCollaboratorResponse;
}
pub struct RemoveCollaboratorRequest;
impl jacquard_common::xrpc::XrpcEndpoint for RemoveCollaboratorRequest {
const PATH: &'static str = "/xrpc/sh.tangled.repo.removeCollaborator";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<S: BosStr> = RemoveCollaborator<S>;
type Response = RemoveCollaboratorResponse;
}
pub mod remove_collaborator_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 Repo;
type Subject;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Repo = Unset;
type Subject = Unset;
}
pub struct SetRepo<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRepo<St> {}
impl<St: State> State for SetRepo<St> {
type Repo = Set<members::repo>;
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 Repo = St::Repo;
type Subject = Set<members::subject>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct repo(());
pub struct subject(());
}
}
pub struct RemoveCollaboratorBuilder<
St: remove_collaborator_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Did<S>>, Option<Did<S>>),
_type: PhantomData<fn() -> S>,
}
impl RemoveCollaborator<DefaultStr> {
pub fn new() -> RemoveCollaboratorBuilder<
remove_collaborator_state::Empty,
DefaultStr,
> {
RemoveCollaboratorBuilder::new()
}
}
impl<S: BosStr> RemoveCollaborator<S> {
pub fn builder() -> RemoveCollaboratorBuilder<remove_collaborator_state::Empty, S> {
RemoveCollaboratorBuilder::builder()
}
}
impl RemoveCollaboratorBuilder<remove_collaborator_state::Empty, DefaultStr> {
pub fn new() -> Self {
RemoveCollaboratorBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> RemoveCollaboratorBuilder<remove_collaborator_state::Empty, S> {
pub fn builder() -> Self {
RemoveCollaboratorBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> RemoveCollaboratorBuilder<St, S>
where
St: remove_collaborator_state::State,
St::Repo: remove_collaborator_state::IsUnset,
{
pub fn repo(
mut self,
value: impl Into<Did<S>>,
) -> RemoveCollaboratorBuilder<remove_collaborator_state::SetRepo<St>, S> {
self._fields.0 = Option::Some(value.into());
RemoveCollaboratorBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> RemoveCollaboratorBuilder<St, S>
where
St: remove_collaborator_state::State,
St::Subject: remove_collaborator_state::IsUnset,
{
pub fn subject(
mut self,
value: impl Into<Did<S>>,
) -> RemoveCollaboratorBuilder<remove_collaborator_state::SetSubject<St>, S> {
self._fields.1 = Option::Some(value.into());
RemoveCollaboratorBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> RemoveCollaboratorBuilder<St, S>
where
St: remove_collaborator_state::State,
St::Repo: remove_collaborator_state::IsSet,
St::Subject: remove_collaborator_state::IsSet,
{
pub fn build(self) -> RemoveCollaborator<S> {
RemoveCollaborator {
repo: self._fields.0.unwrap(),
subject: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> RemoveCollaborator<S> {
RemoveCollaborator {
repo: self._fields.0.unwrap(),
subject: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}