#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::tools_ozone::moderation::RepoViewDetail;
use crate::tools_ozone::moderation::RepoViewNotFound;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::Did;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::{IntoStatic, open_union};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetRepos<S: BosStr = DefaultStr> {
pub dids: Vec<Did<S>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetReposOutput<S: BosStr = DefaultStr> {
pub repos: Vec<GetReposOutputReposItem<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum GetReposOutputReposItem<S: BosStr = DefaultStr> {
#[serde(rename = "tools.ozone.moderation.defs#repoViewDetail")]
RepoViewDetail(Box<RepoViewDetail<S>>),
#[serde(rename = "tools.ozone.moderation.defs#repoViewNotFound")]
RepoViewNotFound(Box<RepoViewNotFound<S>>),
}
pub struct GetReposResponse;
impl jacquard_common::xrpc::XrpcResp for GetReposResponse {
const NSID: &'static str = "tools.ozone.moderation.getRepos";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetReposOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetRepos<S> {
const NSID: &'static str = "tools.ozone.moderation.getRepos";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetReposResponse;
}
pub struct GetReposRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetReposRequest {
const PATH: &'static str = "/xrpc/tools.ozone.moderation.getRepos";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetRepos<S>;
type Response = GetReposResponse;
}
pub mod get_repos_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 Dids;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Dids = Unset;
}
pub struct SetDids<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDids<St> {}
impl<St: State> State for SetDids<St> {
type Dids = Set<members::dids>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct dids(());
}
}
pub struct GetReposBuilder<S: BosStr, St: get_repos_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<Did<S>>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetRepos<S> {
pub fn new() -> GetReposBuilder<S, get_repos_state::Empty> {
GetReposBuilder::new()
}
}
impl<S: BosStr> GetReposBuilder<S, get_repos_state::Empty> {
pub fn new() -> Self {
GetReposBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetReposBuilder<S, St>
where
St: get_repos_state::State,
St::Dids: get_repos_state::IsUnset,
{
pub fn dids(
mut self,
value: impl Into<Vec<Did<S>>>,
) -> GetReposBuilder<S, get_repos_state::SetDids<St>> {
self._fields.0 = Option::Some(value.into());
GetReposBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> GetReposBuilder<S, St>
where
St: get_repos_state::State,
St::Dids: get_repos_state::IsSet,
{
pub fn build(self) -> GetRepos<S> {
GetRepos {
dids: self._fields.0.unwrap(),
}
}
}