#[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::ident::AtIdentifier;
use jacquard_common::types::string::{AtUri, Cid, Datetime};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
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::systems_timker::hawlt::note::Note;
use crate::systems_timker::hawlt::list_notes;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ListNotes<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
pub repo: AtIdentifier<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ListNotesOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
pub notes: Vec<list_notes::NoteView<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 NoteView<S: BosStr = DefaultStr> {
pub cid: Cid<S>,
pub indexed_at: Datetime,
pub uri: AtUri<S>,
pub value: Note<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct ListNotesResponse;
impl jacquard_common::xrpc::XrpcResp for ListNotesResponse {
const NSID: &'static str = "systems.timker.hawlt.listNotes";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = ListNotesOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for ListNotes<S> {
const NSID: &'static str = "systems.timker.hawlt.listNotes";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = ListNotesResponse;
}
pub struct ListNotesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ListNotesRequest {
const PATH: &'static str = "/xrpc/systems.timker.hawlt.listNotes";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = ListNotes<S>;
type Response = ListNotesResponse;
}
impl<S: BosStr> LexiconSchema for NoteView<S> {
fn nsid() -> &'static str {
"systems.timker.hawlt.listNotes"
}
fn def_name() -> &'static str {
"noteView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_systems_timker_hawlt_listNotes()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod list_notes_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;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Repo = 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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct repo(());
}
}
pub struct ListNotesBuilder<S: BosStr, St: list_notes_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<i64>, Option<AtIdentifier<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> ListNotes<S> {
pub fn new() -> ListNotesBuilder<S, list_notes_state::Empty> {
ListNotesBuilder::new()
}
}
impl<S: BosStr> ListNotesBuilder<S, list_notes_state::Empty> {
pub fn new() -> Self {
ListNotesBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: list_notes_state::State> ListNotesBuilder<S, St> {
pub fn cursor(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St: list_notes_state::State> ListNotesBuilder<S, St> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.1 = value;
self
}
}
impl<S: BosStr, St> ListNotesBuilder<S, St>
where
St: list_notes_state::State,
St::Repo: list_notes_state::IsUnset,
{
pub fn repo(
mut self,
value: impl Into<AtIdentifier<S>>,
) -> ListNotesBuilder<S, list_notes_state::SetRepo<St>> {
self._fields.2 = Option::Some(value.into());
ListNotesBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> ListNotesBuilder<S, St>
where
St: list_notes_state::State,
St::Repo: list_notes_state::IsSet,
{
pub fn build(self) -> ListNotes<S> {
ListNotes {
cursor: self._fields.0,
limit: self._fields.1,
repo: self._fields.2.unwrap(),
}
}
}
pub mod note_view_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 IndexedAt;
type Uri;
type Cid;
type Value;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type IndexedAt = Unset;
type Uri = Unset;
type Cid = Unset;
type Value = Unset;
}
pub struct SetIndexedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIndexedAt<St> {}
impl<St: State> State for SetIndexedAt<St> {
type IndexedAt = Set<members::indexed_at>;
type Uri = St::Uri;
type Cid = St::Cid;
type Value = St::Value;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type IndexedAt = St::IndexedAt;
type Uri = Set<members::uri>;
type Cid = St::Cid;
type Value = St::Value;
}
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 IndexedAt = St::IndexedAt;
type Uri = St::Uri;
type Cid = Set<members::cid>;
type Value = St::Value;
}
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 IndexedAt = St::IndexedAt;
type Uri = St::Uri;
type Cid = St::Cid;
type Value = Set<members::value>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct indexed_at(());
pub struct uri(());
pub struct cid(());
pub struct value(());
}
}
pub struct NoteViewBuilder<S: BosStr, St: note_view_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Cid<S>>, Option<Datetime>, Option<AtUri<S>>, Option<Note<S>>),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> NoteView<S> {
pub fn new() -> NoteViewBuilder<S, note_view_state::Empty> {
NoteViewBuilder::new()
}
}
impl<S: BosStr> NoteViewBuilder<S, note_view_state::Empty> {
pub fn new() -> Self {
NoteViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr, St> NoteViewBuilder<S, St>
where
St: note_view_state::State,
St::Cid: note_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> NoteViewBuilder<S, note_view_state::SetCid<St>> {
self._fields.0 = Option::Some(value.into());
NoteViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> NoteViewBuilder<S, St>
where
St: note_view_state::State,
St::IndexedAt: note_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> NoteViewBuilder<S, note_view_state::SetIndexedAt<St>> {
self._fields.1 = Option::Some(value.into());
NoteViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> NoteViewBuilder<S, St>
where
St: note_view_state::State,
St::Uri: note_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> NoteViewBuilder<S, note_view_state::SetUri<St>> {
self._fields.2 = Option::Some(value.into());
NoteViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> NoteViewBuilder<S, St>
where
St: note_view_state::State,
St::Value: note_view_state::IsUnset,
{
pub fn value(
mut self,
value: impl Into<Note<S>>,
) -> NoteViewBuilder<S, note_view_state::SetValue<St>> {
self._fields.3 = Option::Some(value.into());
NoteViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<S: BosStr, St> NoteViewBuilder<S, St>
where
St: note_view_state::State,
St::IndexedAt: note_view_state::IsSet,
St::Uri: note_view_state::IsSet,
St::Cid: note_view_state::IsSet,
St::Value: note_view_state::IsSet,
{
pub fn build(self) -> NoteView<S> {
NoteView {
cid: self._fields.0.unwrap(),
indexed_at: self._fields.1.unwrap(),
uri: self._fields.2.unwrap(),
value: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> NoteView<S> {
NoteView {
cid: self._fields.0.unwrap(),
indexed_at: self._fields.1.unwrap(),
uri: self._fields.2.unwrap(),
value: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_systems_timker_hawlt_listNotes() -> 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("systems.timker.hawlt.listNotes"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcQuery(LexXrpcQuery {
parameters: Some(
LexXrpcQueryParameter::Params(LexXrpcParameters {
required: Some(vec![SmolStr::new_static("repo")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cursor"),
LexXrpcParametersProperty::String(LexString {
max_length: Some(100usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("limit"),
LexXrpcParametersProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("repo"),
LexXrpcParametersProperty::String(LexString {
format: Some(LexStringFormat::AtIdentifier),
..Default::default()
}),
);
map
},
..Default::default()
}),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("noteView"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"A note record with its AT URI, CID, and server-side index timestamp.",
),
),
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("cid"),
SmolStr::new_static("value"),
SmolStr::new_static("indexedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("indexedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("value"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("systems.timker.hawlt.note"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}