chatBskyConvoUpdateRead top-level constant
chat.bsky.convo.updateRead
Implementation
const chatBskyConvoUpdateRead = <String, dynamic>{
"lexicon": 1,
"id": "chat.bsky.convo.updateRead",
"defs": {
"main": {
"type": "procedure",
"input": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["convoId"],
"properties": {
"convoId": {"type": "string"},
"messageId": {"type": "string"}
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["convo"],
"properties": {
"convo": {"type": "ref", "ref": "chat.bsky.convo.defs#convoView"}
}
}
}
}
}
};