#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid};
use jacquard_common::types::uri::{RecordUri, UriError};
use jacquard_common::types::value::Data;
use jacquard_common::xrpc::XrpcResp;
use jacquard_derive::{IntoStatic, lexicon};
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
use crate::com_atproto::repo::strong_ref::StrongRef;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "net.mmatt.my.accounts",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Accounts<S: BosStr = DefaultStr> {
pub accounts: Vec<StrongRef<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")]
pub struct AccountsGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Accounts<S>,
}
impl<S: BosStr> Accounts<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, AccountsRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct AccountsRecord;
impl XrpcResp for AccountsRecord {
const NSID: &'static str = "net.mmatt.my.accounts";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = AccountsGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<AccountsGetRecordOutput<S>> for Accounts<S> {
fn from(output: AccountsGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Accounts<S> {
const NSID: &'static str = "net.mmatt.my.accounts";
type Record = AccountsRecord;
}
impl Collection for AccountsRecord {
const NSID: &'static str = "net.mmatt.my.accounts";
type Record = AccountsRecord;
}
impl<S: BosStr> LexiconSchema for Accounts<S> {
fn nsid() -> &'static str {
"net.mmatt.my.accounts"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_net_mmatt_my_accounts()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod accounts_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 Accounts;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Accounts = Unset;
}
pub struct SetAccounts<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAccounts<St> {}
impl<St: State> State for SetAccounts<St> {
type Accounts = Set<members::accounts>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct accounts(());
}
}
pub struct AccountsBuilder<S: BosStr, St: accounts_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Vec<StrongRef<S>>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Accounts<S> {
pub fn new() -> AccountsBuilder<S, accounts_state::Empty> {
AccountsBuilder::new()
}
}
impl<S: BosStr> AccountsBuilder<S, accounts_state::Empty> {
pub fn new() -> Self {
AccountsBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> AccountsBuilder<S, St>
where
St: accounts_state::State,
St::Accounts: accounts_state::IsUnset,
{
pub fn accounts(
mut self,
value: impl Into<Vec<StrongRef<S>>>,
) -> AccountsBuilder<S, accounts_state::SetAccounts<St>> {
self._fields.0 = Option::Some(value.into());
AccountsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> AccountsBuilder<S, St>
where
St: accounts_state::State,
St::Accounts: accounts_state::IsSet,
{
pub fn build(self) -> Accounts<S> {
Accounts {
accounts: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Accounts<S> {
Accounts {
accounts: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_net_mmatt_my_accounts() -> LexiconDoc<'static> {
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("net.mmatt.my.accounts"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(CowStr::new_static(
"Record declaring a list of account references.",
)),
key: Some(CowStr::new_static("literal:self")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![SmolStr::new_static("accounts")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("accounts"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}