d32f7215f6
* wip * schema tweaks * room -> chat * missed one * missed another * deleted messages + incoming message settings * add schemas for blocking users * chat update schemas * make updateUserSettings more generic * fix dangling ref * fix dangling refs * mute chats & leave chats * schema consistency, naming * lexicon for updating chat read state * dm lexicon updates, add batch send endpoint * dm sender on deleted message * Add codegen for temp lex * lexicon: switch temp.dm to chat.bsky namespace, misc fixes * lexicon: codegen * lexicon: fix some chat/convo terminology * lexicon: codegen * moderator schemas * codegen * lexicon: consistency in chat lexicons * lexicon: add chat to associated profile info * add ref to updateActorAccess * add annotation on convoView for disabled members * codegen * remove dm references from ozone schemas * lexicon: chat account deletion, data export, and profile state * lexicon typo * lexicon typo * lexicon: mark chat senders as required * add changeset * appview: proper support for chat.bsky lexicons --------- Co-authored-by: dholms <dtholmgren@gmail.com> Co-authored-by: Eric Bailey <git@esb.lol>
39 lines
831 B
JSON
39 lines
831 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "chat.bsky.convo.listConvos",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"parameters": {
|
|
"type": "params",
|
|
"properties": {
|
|
"limit": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 100,
|
|
"default": 50
|
|
},
|
|
"cursor": { "type": "string" }
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["convos"],
|
|
"properties": {
|
|
"cursor": { "type": "string" },
|
|
"convos": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "ref",
|
|
"ref": "chat.bsky.convo.defs#convoView"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|