#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_common::types::string::{AtUri, Cid, Datetime};
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::systems_timker::hawlt::note::Note;
use crate::systems_timker::hawlt::list_notes;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ListNotes<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(borrow)]
pub repo: AtIdentifier<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ListNotesOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(borrow)]
pub notes: Vec<list_notes::NoteView<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct NoteView<'a> {
#[serde(borrow)]
pub cid: Cid<'a>,
pub indexed_at: Datetime,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: Note<'a>,
}
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<'de> = ListNotesOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for ListNotes<'a> {
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<'de> = ListNotes<'de>;
type Response = ListNotesResponse;
}
impl<'a> LexiconSchema for NoteView<'a> {
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<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRepo<S> {}
impl<S: State> State for SetRepo<S> {
type Repo = Set<members::repo>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct repo(());
}
}
pub struct ListNotesBuilder<'a, S: list_notes_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>, Option<i64>, Option<AtIdentifier<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> ListNotes<'a> {
pub fn new() -> ListNotesBuilder<'a, list_notes_state::Empty> {
ListNotesBuilder::new()
}
}
impl<'a> ListNotesBuilder<'a, list_notes_state::Empty> {
pub fn new() -> Self {
ListNotesBuilder {
_state: PhantomData,
_fields: (None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S: list_notes_state::State> ListNotesBuilder<'a, S> {
pub fn cursor(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: list_notes_state::State> ListNotesBuilder<'a, S> {
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<'a, S> ListNotesBuilder<'a, S>
where
S: list_notes_state::State,
S::Repo: list_notes_state::IsUnset,
{
pub fn repo(
mut self,
value: impl Into<AtIdentifier<'a>>,
) -> ListNotesBuilder<'a, list_notes_state::SetRepo<S>> {
self._fields.2 = Option::Some(value.into());
ListNotesBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> ListNotesBuilder<'a, S>
where
S: list_notes_state::State,
S::Repo: list_notes_state::IsSet,
{
pub fn build(self) -> ListNotes<'a> {
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 Uri;
type Cid;
type Value;
type IndexedAt;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Uri = Unset;
type Cid = Unset;
type Value = Unset;
type IndexedAt = Unset;
}
pub struct SetUri<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetUri<S> {}
impl<S: State> State for SetUri<S> {
type Uri = Set<members::uri>;
type Cid = S::Cid;
type Value = S::Value;
type IndexedAt = S::IndexedAt;
}
pub struct SetCid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetCid<S> {}
impl<S: State> State for SetCid<S> {
type Uri = S::Uri;
type Cid = Set<members::cid>;
type Value = S::Value;
type IndexedAt = S::IndexedAt;
}
pub struct SetValue<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetValue<S> {}
impl<S: State> State for SetValue<S> {
type Uri = S::Uri;
type Cid = S::Cid;
type Value = Set<members::value>;
type IndexedAt = S::IndexedAt;
}
pub struct SetIndexedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetIndexedAt<S> {}
impl<S: State> State for SetIndexedAt<S> {
type Uri = S::Uri;
type Cid = S::Cid;
type Value = S::Value;
type IndexedAt = Set<members::indexed_at>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct uri(());
pub struct cid(());
pub struct value(());
pub struct indexed_at(());
}
}
pub struct NoteViewBuilder<'a, S: note_view_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Cid<'a>>, Option<Datetime>, Option<AtUri<'a>>, Option<Note<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> NoteView<'a> {
pub fn new() -> NoteViewBuilder<'a, note_view_state::Empty> {
NoteViewBuilder::new()
}
}
impl<'a> NoteViewBuilder<'a, note_view_state::Empty> {
pub fn new() -> Self {
NoteViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> NoteViewBuilder<'a, S>
where
S: note_view_state::State,
S::Cid: note_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<'a>>,
) -> NoteViewBuilder<'a, note_view_state::SetCid<S>> {
self._fields.0 = Option::Some(value.into());
NoteViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> NoteViewBuilder<'a, S>
where
S: note_view_state::State,
S::IndexedAt: note_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> NoteViewBuilder<'a, note_view_state::SetIndexedAt<S>> {
self._fields.1 = Option::Some(value.into());
NoteViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> NoteViewBuilder<'a, S>
where
S: note_view_state::State,
S::Uri: note_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<'a>>,
) -> NoteViewBuilder<'a, note_view_state::SetUri<S>> {
self._fields.2 = Option::Some(value.into());
NoteViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> NoteViewBuilder<'a, S>
where
S: note_view_state::State,
S::Value: note_view_state::IsUnset,
{
pub fn value(
mut self,
value: impl Into<Note<'a>>,
) -> NoteViewBuilder<'a, note_view_state::SetValue<S>> {
self._fields.3 = Option::Some(value.into());
NoteViewBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> NoteViewBuilder<'a, S>
where
S: note_view_state::State,
S::Uri: note_view_state::IsSet,
S::Cid: note_view_state::IsSet,
S::Value: note_view_state::IsSet,
S::IndexedAt: note_view_state::IsSet,
{
pub fn build(self) -> NoteView<'a> {
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<
jacquard_common::deps::smol_str::SmolStr,
jacquard_common::types::value::Data<'a>,
>,
) -> NoteView<'a> {
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()
}
}