jacquard-api 0.12.0-beta.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: top.launchpadx.agent.thought
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[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, Datetime, UriValue};
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};
/// Agent thought record.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    rename = "top.launchpadx.agent.thought",
    tag = "$type",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct Thought<S: BosStr = DefaultStr> {
    ///Timestamp when the thought was recorded.
    pub created_at: Datetime,
    ///Additional context or details for the thought.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub note: Option<S>,
    ///URI of the content being processed by the agent.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub subject_uri: Option<UriValue<S>>,
    ///Job type identifier the agent is thinking about.
    pub work_type: S,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// Typed wrapper for GetRecord response with this collection's record type.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ThoughtGetRecordOutput<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cid: Option<Cid<S>>,
    pub uri: AtUri<S>,
    pub value: Thought<S>,
}

impl<S: BosStr> Thought<S> {
    pub fn uri(uri: S) -> Result<RecordUri<S, ThoughtRecord>, UriError> {
        RecordUri::try_from_uri(AtUri::new(uri)?)
    }
}

/// Marker type for deserializing records from this collection.

#[derive(Debug, Serialize, Deserialize)]
pub struct ThoughtRecord;
impl XrpcResp for ThoughtRecord {
    const NSID: &'static str = "top.launchpadx.agent.thought";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ThoughtGetRecordOutput<S>;
    type Err = RecordError;
}

impl<S: BosStr> From<ThoughtGetRecordOutput<S>> for Thought<S> {
    fn from(output: ThoughtGetRecordOutput<S>) -> Self {
        output.value
    }
}

impl<S: BosStr> Collection for Thought<S> {
    const NSID: &'static str = "top.launchpadx.agent.thought";
    type Record = ThoughtRecord;
}

impl Collection for ThoughtRecord {
    const NSID: &'static str = "top.launchpadx.agent.thought";
    type Record = ThoughtRecord;
}

impl<S: BosStr> LexiconSchema for Thought<S> {
    fn nsid() -> &'static str {
        "top.launchpadx.agent.thought"
    }
    fn def_name() -> &'static str {
        "main"
    }
    fn lexicon_doc() -> LexiconDoc<'static> {
        lexicon_doc_top_launchpadx_agent_thought()
    }
    fn validate(&self) -> Result<(), ConstraintError> {
        Ok(())
    }
}

pub mod thought_state {

    pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
    #[allow(unused)]
    use ::core::marker::PhantomData;
    mod sealed {
        pub trait Sealed {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {
        type WorkType;
        type CreatedAt;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type WorkType = Unset;
        type CreatedAt = Unset;
    }
    ///State transition - sets the `work_type` field to Set
    pub struct SetWorkType<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetWorkType<St> {}
    impl<St: State> State for SetWorkType<St> {
        type WorkType = Set<members::work_type>;
        type CreatedAt = St::CreatedAt;
    }
    ///State transition - sets the `created_at` field to Set
    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 WorkType = St::WorkType;
        type CreatedAt = Set<members::created_at>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `work_type` field
        pub struct work_type(());
        ///Marker type for the `created_at` field
        pub struct created_at(());
    }
}

/// Builder for constructing an instance of this type.
pub struct ThoughtBuilder<S: BosStr, St: thought_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (Option<Datetime>, Option<S>, Option<UriValue<S>>, Option<S>),
    _type: PhantomData<fn() -> S>,
}

impl<S: BosStr> Thought<S> {
    /// Create a new builder for this type.
    pub fn new() -> ThoughtBuilder<S, thought_state::Empty> {
        ThoughtBuilder::new()
    }
}

impl<S: BosStr> ThoughtBuilder<S, thought_state::Empty> {
    /// Create a new builder with all fields unset.
    pub fn new() -> Self {
        ThoughtBuilder {
            _state: PhantomData,
            _fields: (None, None, None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ThoughtBuilder<S, St>
where
    St: thought_state::State,
    St::CreatedAt: thought_state::IsUnset,
{
    /// Set the `createdAt` field (required)
    pub fn created_at(
        mut self,
        value: impl Into<Datetime>,
    ) -> ThoughtBuilder<S, thought_state::SetCreatedAt<St>> {
        self._fields.0 = Option::Some(value.into());
        ThoughtBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St: thought_state::State> ThoughtBuilder<S, St> {
    /// Set the `note` field (optional)
    pub fn note(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `note` field to an Option value (optional)
    pub fn maybe_note(mut self, value: Option<S>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<S: BosStr, St: thought_state::State> ThoughtBuilder<S, St> {
    /// Set the `subjectUri` field (optional)
    pub fn subject_uri(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `subjectUri` field to an Option value (optional)
    pub fn maybe_subject_uri(mut self, value: Option<UriValue<S>>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<S: BosStr, St> ThoughtBuilder<S, St>
where
    St: thought_state::State,
    St::WorkType: thought_state::IsUnset,
{
    /// Set the `workType` field (required)
    pub fn work_type(
        mut self,
        value: impl Into<S>,
    ) -> ThoughtBuilder<S, thought_state::SetWorkType<St>> {
        self._fields.3 = Option::Some(value.into());
        ThoughtBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _type: PhantomData,
        }
    }
}

impl<S: BosStr, St> ThoughtBuilder<S, St>
where
    St: thought_state::State,
    St::WorkType: thought_state::IsSet,
    St::CreatedAt: thought_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> Thought<S> {
        Thought {
            created_at: self._fields.0.unwrap(),
            note: self._fields.1,
            subject_uri: self._fields.2,
            work_type: self._fields.3.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data.
    pub fn build_with_data(self, extra_data: BTreeMap<SmolStr, Data<S>>) -> Thought<S> {
        Thought {
            created_at: self._fields.0.unwrap(),
            note: self._fields.1,
            subject_uri: self._fields.2,
            work_type: self._fields.3.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

fn lexicon_doc_top_launchpadx_agent_thought() -> 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("top.launchpadx.agent.thought"),
        defs: {
            let mut map = BTreeMap::new();
            map.insert(
                SmolStr::new_static("main"),
                LexUserType::Record(LexRecord {
                    description: Some(CowStr::new_static("Agent thought record.")),
                    key: Some(CowStr::new_static("tid")),
                    record: LexRecordRecord::Object(LexObject {
                        required: Some(vec![
                            SmolStr::new_static("workType"),
                            SmolStr::new_static("createdAt"),
                        ]),
                        properties: {
                            #[allow(unused_mut)]
                            let mut map = BTreeMap::new();
                            map.insert(
                                SmolStr::new_static("createdAt"),
                                LexObjectProperty::String(LexString {
                                    description: Some(CowStr::new_static(
                                        "Timestamp when the thought was recorded.",
                                    )),
                                    format: Some(LexStringFormat::Datetime),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("note"),
                                LexObjectProperty::String(LexString {
                                    description: Some(CowStr::new_static(
                                        "Additional context or details for the thought.",
                                    )),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("subjectUri"),
                                LexObjectProperty::String(LexString {
                                    description: Some(CowStr::new_static(
                                        "URI of the content being processed by the agent.",
                                    )),
                                    format: Some(LexStringFormat::Uri),
                                    ..Default::default()
                                }),
                            );
                            map.insert(
                                SmolStr::new_static("workType"),
                                LexObjectProperty::String(LexString {
                                    description: Some(CowStr::new_static(
                                        "Job type identifier the agent is thinking about.",
                                    )),
                                    ..Default::default()
                                }),
                            );
                            map
                        },
                        ..Default::default()
                    }),
                    ..Default::default()
                }),
            );
            map
        },
        ..Default::default()
    }
}