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>
22 lines
465 B
JSON
22 lines
465 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "chat.bsky.actor.declaration",
|
|
"defs": {
|
|
"main": {
|
|
"type": "record",
|
|
"description": "A declaration of a Bluesky chat account.",
|
|
"key": "literal:self",
|
|
"record": {
|
|
"type": "object",
|
|
"required": ["allowIncoming"],
|
|
"properties": {
|
|
"allowIncoming": {
|
|
"type": "string",
|
|
"knownValues": ["all", "none", "following"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|