#[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::blob::BlobRef;
use jacquard_common::types::collection::{Collection, RecordError};
use jacquard_common::types::string::{AtUri, Cid, Datetime, Language, UriValue};
use jacquard_common::types::uri::{RecordUri, UriError};
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::com_atproto::repo::strong_ref::StrongRef;
use crate::ai_syui::log::chat;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", rename = "ai.syui.log.chat", tag = "$type")]
pub struct Chat<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub bsky_post_ref: Option<StrongRef<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub content: Option<chat::Markdown<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cover_image: Option<BlobRef<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub description: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub langs: Option<Vec<Language>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub parent: Option<AtUri<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub path: Option<CowStr<'a>>,
pub published_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub root: Option<AtUri<'a>>,
#[serde(borrow)]
pub site: UriValue<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub tags: Option<Vec<CowStr<'a>>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub text_content: Option<CowStr<'a>>,
#[serde(borrow)]
pub title: CowStr<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub translations: Option<chat::TranslationMap<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub updated_at: Option<Datetime>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct ChatGetRecordOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cid: Option<Cid<'a>>,
#[serde(borrow)]
pub uri: AtUri<'a>,
#[serde(borrow)]
pub value: Chat<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct Markdown<'a> {
#[serde(borrow)]
pub text: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct Translation<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub content: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub title: Option<CowStr<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct TranslationMap<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub en: Option<chat::Translation<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub ja: Option<chat::Translation<'a>>,
}
impl<'a> Chat<'a> {
pub fn uri(
uri: impl Into<CowStr<'a>>,
) -> Result<RecordUri<'a, ChatRecord>, UriError> {
RecordUri::try_from_uri(AtUri::new_cow(uri.into())?)
}
}
#[derive(Debug, Serialize, Deserialize)]
pub struct ChatRecord;
impl XrpcResp for ChatRecord {
const NSID: &'static str = "ai.syui.log.chat";
const ENCODING: &'static str = "application/json";
type Output<'de> = ChatGetRecordOutput<'de>;
type Err<'de> = RecordError<'de>;
}
impl From<ChatGetRecordOutput<'_>> for Chat<'_> {
fn from(output: ChatGetRecordOutput<'_>) -> Self {
use jacquard_common::IntoStatic;
output.value.into_static()
}
}
impl Collection for Chat<'_> {
const NSID: &'static str = "ai.syui.log.chat";
type Record = ChatRecord;
}
impl Collection for ChatRecord {
const NSID: &'static str = "ai.syui.log.chat";
type Record = ChatRecord;
}
impl<'a> LexiconSchema for Chat<'a> {
fn nsid() -> &'static str {
"ai.syui.log.chat"
}
fn def_name() -> &'static str {
"main"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ai_syui_log_chat()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.cover_image {
{
let size = value.blob().size;
if size > 1000000usize {
return Err(ConstraintError::BlobTooLarge {
path: ValidationPath::from_field("cover_image"),
max: 1000000usize,
actual: size,
});
}
}
}
if let Some(ref value) = self.cover_image {
{
let mime = value.blob().mime_type.as_str();
let accepted: &[&str] = &["image/*"];
let matched = accepted
.iter()
.any(|pattern| {
if *pattern == "*/*" {
true
} else if pattern.ends_with("/*") {
let prefix = &pattern[..pattern.len() - 2];
mime.starts_with(prefix)
&& mime.as_bytes().get(prefix.len()) == Some(&b'/')
} else {
mime == *pattern
}
});
if !matched {
return Err(ConstraintError::BlobMimeTypeNotAccepted {
path: ValidationPath::from_field("cover_image"),
accepted: vec!["image/*".to_string()],
actual: mime.to_string(),
});
}
}
}
if let Some(ref value) = self.description {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 30000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("description"),
max: 30000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.description {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 3000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("description"),
max: 3000usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.langs {
#[allow(unused_comparisons)]
if value.len() > 3usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("langs"),
max: 3usize,
actual: value.len(),
});
}
}
{
let value = &self.title;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 5000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 5000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.title;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 500usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("title"),
max: 500usize,
actual: count,
});
}
}
}
Ok(())
}
}
impl<'a> LexiconSchema for Markdown<'a> {
fn nsid() -> &'static str {
"ai.syui.log.chat"
}
fn def_name() -> &'static str {
"markdown"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ai_syui_log_chat()
}
fn validate(&self) -> Result<(), ConstraintError> {
{
let value = &self.text;
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("text"),
max: 1000000usize,
actual: <str>::len(value.as_ref()),
});
}
}
{
let value = &self.text;
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 100000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("text"),
max: 100000usize,
actual: count,
});
}
}
}
Ok(())
}
}
impl<'a> LexiconSchema for Translation<'a> {
fn nsid() -> &'static str {
"ai.syui.log.chat"
}
fn def_name() -> &'static str {
"translation"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ai_syui_log_chat()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.content {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 1000000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("content"),
max: 1000000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.content {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 100000usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("content"),
max: 100000usize,
actual: count,
});
}
}
}
if let Some(ref value) = self.title {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 5000usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("title"),
max: 5000usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.title {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 500usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("title"),
max: 500usize,
actual: count,
});
}
}
}
Ok(())
}
}
impl<'a> LexiconSchema for TranslationMap<'a> {
fn nsid() -> &'static str {
"ai.syui.log.chat"
}
fn def_name() -> &'static str {
"translationMap"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_ai_syui_log_chat()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod chat_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 Site;
type PublishedAt;
type Title;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Site = Unset;
type PublishedAt = Unset;
type Title = Unset;
}
pub struct SetSite<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetSite<S> {}
impl<S: State> State for SetSite<S> {
type Site = Set<members::site>;
type PublishedAt = S::PublishedAt;
type Title = S::Title;
}
pub struct SetPublishedAt<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetPublishedAt<S> {}
impl<S: State> State for SetPublishedAt<S> {
type Site = S::Site;
type PublishedAt = Set<members::published_at>;
type Title = S::Title;
}
pub struct SetTitle<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetTitle<S> {}
impl<S: State> State for SetTitle<S> {
type Site = S::Site;
type PublishedAt = S::PublishedAt;
type Title = Set<members::title>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct site(());
pub struct published_at(());
pub struct title(());
}
}
pub struct ChatBuilder<'a, S: chat_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<StrongRef<'a>>,
Option<chat::Markdown<'a>>,
Option<BlobRef<'a>>,
Option<CowStr<'a>>,
Option<Vec<Language>>,
Option<AtUri<'a>>,
Option<CowStr<'a>>,
Option<Datetime>,
Option<AtUri<'a>>,
Option<UriValue<'a>>,
Option<Vec<CowStr<'a>>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<chat::TranslationMap<'a>>,
Option<Datetime>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> Chat<'a> {
pub fn new() -> ChatBuilder<'a, chat_state::Empty> {
ChatBuilder::new()
}
}
impl<'a> ChatBuilder<'a, chat_state::Empty> {
pub fn new() -> Self {
ChatBuilder {
_state: PhantomData,
_fields: (
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
None,
),
_lifetime: PhantomData,
}
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn bsky_post_ref(mut self, value: impl Into<Option<StrongRef<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_bsky_post_ref(mut self, value: Option<StrongRef<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn content(mut self, value: impl Into<Option<chat::Markdown<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_content(mut self, value: Option<chat::Markdown<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn cover_image(mut self, value: impl Into<Option<BlobRef<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_cover_image(mut self, value: Option<BlobRef<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn description(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn langs(mut self, value: impl Into<Option<Vec<Language>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_langs(mut self, value: Option<Vec<Language>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn parent(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_parent(mut self, value: Option<AtUri<'a>>) -> Self {
self._fields.5 = value;
self
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn path(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.6 = value.into();
self
}
pub fn maybe_path(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.6 = value;
self
}
}
impl<'a, S> ChatBuilder<'a, S>
where
S: chat_state::State,
S::PublishedAt: chat_state::IsUnset,
{
pub fn published_at(
mut self,
value: impl Into<Datetime>,
) -> ChatBuilder<'a, chat_state::SetPublishedAt<S>> {
self._fields.7 = Option::Some(value.into());
ChatBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn root(mut self, value: impl Into<Option<AtUri<'a>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_root(mut self, value: Option<AtUri<'a>>) -> Self {
self._fields.8 = value;
self
}
}
impl<'a, S> ChatBuilder<'a, S>
where
S: chat_state::State,
S::Site: chat_state::IsUnset,
{
pub fn site(
mut self,
value: impl Into<UriValue<'a>>,
) -> ChatBuilder<'a, chat_state::SetSite<S>> {
self._fields.9 = Option::Some(value.into());
ChatBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn tags(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_tags(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
self._fields.10 = value;
self
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn text_content(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.11 = value.into();
self
}
pub fn maybe_text_content(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.11 = value;
self
}
}
impl<'a, S> ChatBuilder<'a, S>
where
S: chat_state::State,
S::Title: chat_state::IsUnset,
{
pub fn title(
mut self,
value: impl Into<CowStr<'a>>,
) -> ChatBuilder<'a, chat_state::SetTitle<S>> {
self._fields.12 = Option::Some(value.into());
ChatBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn translations(
mut self,
value: impl Into<Option<chat::TranslationMap<'a>>>,
) -> Self {
self._fields.13 = value.into();
self
}
pub fn maybe_translations(
mut self,
value: Option<chat::TranslationMap<'a>>,
) -> Self {
self._fields.13 = value;
self
}
}
impl<'a, S: chat_state::State> ChatBuilder<'a, S> {
pub fn updated_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.14 = value.into();
self
}
pub fn maybe_updated_at(mut self, value: Option<Datetime>) -> Self {
self._fields.14 = value;
self
}
}
impl<'a, S> ChatBuilder<'a, S>
where
S: chat_state::State,
S::Site: chat_state::IsSet,
S::PublishedAt: chat_state::IsSet,
S::Title: chat_state::IsSet,
{
pub fn build(self) -> Chat<'a> {
Chat {
bsky_post_ref: self._fields.0,
content: self._fields.1,
cover_image: self._fields.2,
description: self._fields.3,
langs: self._fields.4,
parent: self._fields.5,
path: self._fields.6,
published_at: self._fields.7.unwrap(),
root: self._fields.8,
site: self._fields.9.unwrap(),
tags: self._fields.10,
text_content: self._fields.11,
title: self._fields.12.unwrap(),
translations: self._fields.13,
updated_at: self._fields.14,
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>,
>,
) -> Chat<'a> {
Chat {
bsky_post_ref: self._fields.0,
content: self._fields.1,
cover_image: self._fields.2,
description: self._fields.3,
langs: self._fields.4,
parent: self._fields.5,
path: self._fields.6,
published_at: self._fields.7.unwrap(),
root: self._fields.8,
site: self._fields.9.unwrap(),
tags: self._fields.10,
text_content: self._fields.11,
title: self._fields.12.unwrap(),
translations: self._fields.13,
updated_at: self._fields.14,
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_ai_syui_log_chat() -> 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("ai.syui.log.chat"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("main"),
LexUserType::Record(LexRecord {
description: Some(
CowStr::new_static(
"Record containing a chat message. Compatible with site.standard.document.",
),
),
key: Some(CowStr::new_static("tid")),
record: LexRecordRecord::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("site"), SmolStr::new_static("title"),
SmolStr::new_static("publishedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("bskyPostRef"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.repo.strongRef"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static(
"Open union for content. Supports markdown and other formats via $type.",
),
),
refs: vec![CowStr::new_static("#markdown")],
closed: Some(false),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("coverImage"),
LexObjectProperty::Blob(LexBlob { ..Default::default() }),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"A brief description or excerpt from the message.",
),
),
max_length: Some(30000usize),
max_graphemes: Some(3000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("langs"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Indicates human language of message content.",
),
),
items: LexArrayItem::String(LexString {
format: Some(LexStringFormat::Language),
..Default::default()
}),
max_length: Some(3usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("parent"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT-URI of the parent message being replied to.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("path"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Combine with site URL to construct a canonical URL to the message.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("publishedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Timestamp of the message's publish time.",
),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("root"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"AT-URI of the root message in a thread.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("site"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Points to a publication record (at://) or a publication URL (https://).",
),
),
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("tags"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static("Tags to categorize the message."),
),
items: LexArrayItem::String(LexString {
max_length: Some(1280usize),
max_graphemes: Some(128usize),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("textContent"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static(
"Plaintext representation of the message content. Should not contain markdown or other formatting.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Title of the message or thread topic."),
),
max_length: Some(5000usize),
max_graphemes: Some(500usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("translations"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#translationMap"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("updatedAt"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Timestamp of the message's last edit."),
),
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map
},
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("markdown"),
LexUserType::Object(LexObject {
description: Some(CowStr::new_static("Markdown content format.")),
required: Some(vec![SmolStr::new_static("text")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("text"),
LexObjectProperty::String(LexString {
description: Some(
CowStr::new_static("Markdown text content."),
),
max_length: Some(1000000usize),
max_graphemes: Some(100000usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("translation"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static("A translation of a chat message."),
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("content"),
LexObjectProperty::String(LexString {
max_length: Some(1000000usize),
max_graphemes: Some(100000usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("title"),
LexObjectProperty::String(LexString {
max_length: Some(5000usize),
max_graphemes: Some(500usize),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("translationMap"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static("Map of language codes to translations."),
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("en"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#translation"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("ja"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#translation"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}