06d2328eeb
* lexicon: misc chat-related tweaks/fixes * ozone: track convo ids on chat message reports * add changeset * fix tests --------- Co-authored-by: dholms <dtholmgren@gmail.com>
31 lines
673 B
JSON
31 lines
673 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "chat.bsky.convo.sendMessage",
|
|
"defs": {
|
|
"main": {
|
|
"type": "procedure",
|
|
"input": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["convoId", "message"],
|
|
"properties": {
|
|
"convoId": { "type": "string" },
|
|
"message": {
|
|
"type": "ref",
|
|
"ref": "chat.bsky.convo.defs#messageInput"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "ref",
|
|
"ref": "chat.bsky.convo.defs#messageView"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|