#[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;
#[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 = "place.atwork.endorsementProof",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct EndorsementProof<S: BosStr = DefaultStr> {
pub cid: Cid<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 EndorsementProofGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: EndorsementProof<S>,
}
impl<S: BosStr> EndorsementProof<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, EndorsementProofRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct EndorsementProofRecord;
impl XrpcResp for EndorsementProofRecord {
const NSID: &'static str = "place.atwork.endorsementProof";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = EndorsementProofGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<EndorsementProofGetRecordOutput<S>> for EndorsementProof<S> {
fn from(output: EndorsementProofGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for EndorsementProof<S> {
const NSID: &'static str = "place.atwork.endorsementProof";
type Record = EndorsementProofRecord;
}
impl Collection for EndorsementProofRecord {
const NSID: &'static str = "place.atwork.endorsementProof";
type Record = EndorsementProofRecord;
}
impl<S: BosStr> LexiconSchema for EndorsementProof<S> {
fn nsid() -> &'static str {
"place.atwork.endorsementProof"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_atwork_endorsementProof()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod endorsement_proof_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 Cid;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Cid = Unset;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Cid = Set<members::cid>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct cid(());
}
}
pub struct EndorsementProofBuilder<S: BosStr, St: endorsement_proof_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Cid<S>>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> EndorsementProof<S> {
pub fn new() -> EndorsementProofBuilder<S, endorsement_proof_state::Empty> {
EndorsementProofBuilder::new()
}
}
impl<S: BosStr> EndorsementProofBuilder<S, endorsement_proof_state::Empty> {
pub fn new() -> Self {
EndorsementProofBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EndorsementProofBuilder<S, St>
where
St: endorsement_proof_state::State,
St::Cid: endorsement_proof_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> EndorsementProofBuilder<S, endorsement_proof_state::SetCid<St>> {
self._fields.0 = Option::Some(value.into());
EndorsementProofBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> EndorsementProofBuilder<S, St>
where
St: endorsement_proof_state::State,
St::Cid: endorsement_proof_state::IsSet,
{
pub fn build(self) -> EndorsementProof<S> {
EndorsementProof {
cid: self._fields.0.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> EndorsementProof<S> {
EndorsementProof {
cid: self._fields.0.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_place_atwork_endorsementProof() -> 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("place.atwork.endorsementProof"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"A cryptographic proof record that validates an endorsement by containing the CID of the endorsement content.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![SmolStr::new_static("cid")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"The CID (Content Identifier) of the endorsement content that this proof validates. The endorsement's signatures array references this proof record.",
),
),
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map
},
..Default::default()
}
}