#[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::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime};
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::{Serialize, Deserialize};
use crate::my_skylights::Item;
use crate::my_skylights::rel;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
rename = "my.skylights.rel",
tag = "$type",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Rel<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub finished_at: Option<Vec<Datetime>>,
pub item: Item<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub note: Option<rel::Note<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub rating: Option<rel::Rating<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 RelGetRecordOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cid: Option<Cid<S>>,
pub uri: AtUri<S>,
pub value: Rel<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct Note<S: BosStr = DefaultStr> {
pub created_at: Datetime,
pub updated_at: Datetime,
pub value: 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 Rating<S: BosStr = DefaultStr> {
pub created_at: Datetime,
pub value: i64,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> Rel<S> {
pub fn uri(uri: S) -> Result<RecordUri<S, RelRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new(uri)?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct RelRecord;
impl XrpcResp for RelRecord {
const NSID: &'static str = "my.skylights.rel";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = RelGetRecordOutput<S>;
type Err = RecordError;
}
impl<S: BosStr> From<RelGetRecordOutput<S>> for Rel<S> {
fn from(output: RelGetRecordOutput<S>) -> Self {
output.value
}
}
impl<S: BosStr> Collection for Rel<S> {
const NSID: &'static str = "my.skylights.rel";
type Record = RelRecord;
}
impl Collection for RelRecord {
const NSID: &'static str = "my.skylights.rel";
type Record = RelRecord;
}
impl<S: BosStr> LexiconSchema for Rel<S> {
fn nsid() -> &'static str {
"my.skylights.rel"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_my_skylights_rel()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for Note<S> {
fn nsid() -> &'static str {
"my.skylights.rel"
}
fn def_name() -> &'static str {
"note"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_my_skylights_rel()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for Rating<S> {
fn nsid() -> &'static str {
"my.skylights.rel"
}
fn def_name() -> &'static str {
"rating"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_my_skylights_rel()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.value;
if *value > 10i64 {
return Err(ConstraintError::Maximum {
path: ValidationPath::from_field("value"),
max: 10i64,
actual: *value,
});
}
}
{
let value = &self.value;
if *value < 1i64 {
return Err(ConstraintError::Minimum {
path: ValidationPath::from_field("value"),
min: 1i64,
actual: *value,
});
}
}
Ok(())
}
}
pub mod rel_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 Item;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Item = Unset;
}
pub struct SetItem<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetItem<St> {}
impl<St: State> State for SetItem<St> {
type Item = Set<members::item>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct item(());
}
}
pub struct RelBuilder<S: BosStr, St: rel_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Vec<Datetime>>,
Option<Item<S>>,
Option<rel::Note<S>>,
Option<rel::Rating<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Rel<S> {
pub fn new() -> RelBuilder<S, rel_state::Empty> {
RelBuilder::new()
}
}
impl<S: BosStr> RelBuilder<S, rel_state::Empty> {
pub fn new() -> Self {
RelBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: rel_state::State> RelBuilder<S, St> {
pub fn finished_at(mut self, value: impl Into<Option<Vec<Datetime>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_finished_at(mut self, value: Option<Vec<Datetime>>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> RelBuilder<S, St>
where
St: rel_state::State,
St::Item: rel_state::IsUnset,
{
pub fn item(
mut self,
value: impl Into<Item<S>>,
) -> RelBuilder<S, rel_state::SetItem<St>> {
self._fields.1 = Option::Some(value.into());
RelBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St: rel_state::State> RelBuilder<S, St> {
pub fn note(mut self, value: impl Into<Option<rel::Note<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_note(mut self, value: Option<rel::Note<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<S: BosStr, St: rel_state::State> RelBuilder<S, St> {
pub fn rating(mut self, value: impl Into<Option<rel::Rating<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_rating(mut self, value: Option<rel::Rating<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<S: BosStr, St> RelBuilder<S, St>
where
St: rel_state::State,
St::Item: rel_state::IsSet,
{
pub fn build(self) -> Rel<S> {
Rel {
finished_at: self._fields.0,
item: self._fields.1.unwrap(),
note: self._fields.2,
rating: self._fields.3,
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Rel<S> {
Rel {
finished_at: self._fields.0,
item: self._fields.1.unwrap(),
note: self._fields.2,
rating: self._fields.3,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_my_skylights_rel() -> 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("my.skylights.rel"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(vec![SmolStr::new_static("item")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("finishedAt"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("item"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("my.skylights.defs#item"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("note"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#note"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("rating"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#rating"),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("note"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("value"),
SmolStr::new_static("createdAt"),
SmolStr::new_static("updatedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("value"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("rating"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("value"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("value"),
LexObjectProperty::Integer(LexInteger {
minimum: Some(1i64),
maximum: Some(10i64),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod note_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 Value;
type CreatedAt;
type UpdatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Value = Unset;
type CreatedAt = Unset;
type UpdatedAt = Unset;
}
pub struct SetValue<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetValue<St> {}
impl<St: State> State for SetValue<St> {
type Value = Set<members::value>;
type CreatedAt = St::CreatedAt;
type UpdatedAt = St::UpdatedAt;
}
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 Value = St::Value;
type CreatedAt = Set<members::created_at>;
type UpdatedAt = St::UpdatedAt;
}
pub struct SetUpdatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUpdatedAt<St> {}
impl<St: State> State for SetUpdatedAt<St> {
type Value = St::Value;
type CreatedAt = St::CreatedAt;
type UpdatedAt = Set<members::updated_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct value(());
pub struct created_at(());
pub struct updated_at(());
}
}
pub struct NoteBuilder<S: BosStr, St: note_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<Datetime>, Option<S>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Note<S> {
pub fn new() -> NoteBuilder<S, note_state::Empty> {
NoteBuilder::new()
}
}
impl<S: BosStr> NoteBuilder<S, note_state::Empty> {
pub fn new() -> Self {
NoteBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> NoteBuilder<S, St>
where
St: note_state::State,
St::CreatedAt: note_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> NoteBuilder<S, note_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
NoteBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> NoteBuilder<S, St>
where
St: note_state::State,
St::UpdatedAt: note_state::IsUnset,
{
pub fn updated_at(
mut self,
value: impl Into<Datetime>,
) -> NoteBuilder<S, note_state::SetUpdatedAt<St>> {
self._fields.1 = Option::Some(value.into());
NoteBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> NoteBuilder<S, St>
where
St: note_state::State,
St::Value: note_state::IsUnset,
{
pub fn value(
mut self,
value: impl Into<S>,
) -> NoteBuilder<S, note_state::SetValue<St>> {
self._fields.2 = Option::Some(value.into());
NoteBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> NoteBuilder<S, St>
where
St: note_state::State,
St::Value: note_state::IsSet,
St::CreatedAt: note_state::IsSet,
St::UpdatedAt: note_state::IsSet,
{
pub fn build(self) -> Note<S> {
Note {
created_at: self._fields.0.unwrap(),
updated_at: self._fields.1.unwrap(),
value: self._fields.2.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Note<S> {
Note {
created_at: self._fields.0.unwrap(),
updated_at: self._fields.1.unwrap(),
value: self._fields.2.unwrap(),
extra_data: Some(extra_data),
}
}
}
pub mod rating_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 Value;
type CreatedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Value = Unset;
type CreatedAt = Unset;
}
pub struct SetValue<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetValue<St> {}
impl<St: State> State for SetValue<St> {
type Value = Set<members::value>;
type CreatedAt = St::CreatedAt;
}
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 Value = St::Value;
type CreatedAt = Set<members::created_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct value(());
pub struct created_at(());
}
}
pub struct RatingBuilder<S: BosStr, St: rating_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Datetime>, Option<i64>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> Rating<S> {
pub fn new() -> RatingBuilder<S, rating_state::Empty> {
RatingBuilder::new()
}
}
impl<S: BosStr> RatingBuilder<S, rating_state::Empty> {
pub fn new() -> Self {
RatingBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RatingBuilder<S, St>
where
St: rating_state::State,
St::CreatedAt: rating_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> RatingBuilder<S, rating_state::SetCreatedAt<St>> {
self._fields.0 = Option::Some(value.into());
RatingBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RatingBuilder<S, St>
where
St: rating_state::State,
St::Value: rating_state::IsUnset,
{
pub fn value(
mut self,
value: impl Into<i64>,
) -> RatingBuilder<S, rating_state::SetValue<St>> {
self._fields.1 = Option::Some(value.into());
RatingBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> RatingBuilder<S, St>
where
St: rating_state::State,
St::Value: rating_state::IsSet,
St::CreatedAt: rating_state::IsSet,
{
pub fn build(self) -> Rating<S> {
Rating {
created_at: self._fields.0.unwrap(),
value: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Rating<S> {
Rating {
created_at: self._fields.0.unwrap(),
value: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}