From f288e18baa9646ec4666a3dbdbf73c8d8d96af82 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 2 Sep 2026 16:48:55 +0300 Subject: [PATCH] Pull latest lexicons (video alt text fix) (#11631) --- lexicons.json | 2 +- lexicons/app/bsky/feed/defs.json | 54 +++++++++++++++---------------- lexicons/app/bsky/graph/defs.json | 10 ++++++ 3 files changed, 38 insertions(+), 28 deletions(-) diff --git a/lexicons.json b/lexicons.json index 1d7ecd3c87..b36ba16b61 100644 --- a/lexicons.json +++ b/lexicons.json @@ -538,7 +538,7 @@ }, "app.bsky.graph.defs": { "uri": "at://did:plc:4v4y5r3lwsbtmsxhile2ljac/com.atproto.lexicon.schema/app.bsky.graph.defs", - "cid": "bafyreifcipomli7yggtl46xufgxlnrw7se6xmsdxmzgfcz2tiu76ljatxm" + "cid": "bafyreief2f7zpllyicjugbn7faohmnzwujeiytfzj76uckxmrqmtdvechy" }, "app.bsky.graph.follow": { "uri": "at://did:plc:4v4y5r3lwsbtmsxhile2ljac/com.atproto.lexicon.schema/app.bsky.graph.follow", diff --git a/lexicons/app/bsky/feed/defs.json b/lexicons/app/bsky/feed/defs.json index a59b32914d..97cb057f6f 100644 --- a/lexicons/app/bsky/feed/defs.json +++ b/lexicons/app/bsky/feed/defs.json @@ -169,6 +169,28 @@ } } }, + "knownLikers": { + "type": "object", + "required": [ + "count", + "actors" + ], + "properties": { + "count": { + "type": "integer" + }, + "actors": { + "type": "array", + "items": { + "ref": "app.bsky.actor.defs#profileViewBasic", + "type": "ref" + }, + "maxLength": 5, + "minLength": 0 + } + }, + "description": "The post's likers whom you also follow" + }, "requestLess": { "type": "token", "description": "Request that less content like the given feed item be shown in the feed" @@ -194,6 +216,11 @@ "bookmarked": { "type": "boolean" }, + "knownLikers": { + "ref": "#knownLikers", + "type": "ref", + "description": "This property is present only in selected cases, as an optimization." + }, "threadMuted": { "type": "boolean" }, @@ -202,37 +229,10 @@ }, "embeddingDisabled": { "type": "boolean" - }, - "knownLikers": { - "description": "This property is present only in selected cases, as an optimization.", - "type": "ref", - "ref": "#knownLikers" } }, "description": "Metadata about the requesting account's relationship with the subject content. Only has meaningful content for authed requests." }, - "knownLikers": { - "type": "object", - "description": "The post's likers whom you also follow", - "required": [ - "count", - "actors" - ], - "properties": { - "count": { - "type": "integer" - }, - "actors": { - "type": "array", - "minLength": 0, - "maxLength": 5, - "items": { - "type": "ref", - "ref": "app.bsky.actor.defs#profileViewBasic" - } - } - } - }, "feedViewPost": { "type": "object", "required": [ diff --git a/lexicons/app/bsky/graph/defs.json b/lexicons/app/bsky/graph/defs.json index eca42fc875..8d77562184 100644 --- a/lexicons/app/bsky/graph/defs.json +++ b/lexicons/app/bsky/graph/defs.json @@ -100,6 +100,11 @@ "subject": { "ref": "app.bsky.actor.defs#profileView", "type": "ref" + }, + "subjectOptedOut": { + "type": "boolean", + "const": true, + "description": "Set to true when the subject has opted out of appearing in the reference list. Only set when the viewer owns the list." } } }, @@ -228,6 +233,11 @@ "blocked": { "type": "string", "format": "at-uri" + }, + "referenceListOptOut": { + "type": "string", + "format": "at-uri", + "description": "The authenticated viewer's app.bsky.graph.referencelistoptout record URI for this reference list. Only set for reference lists. A client can delete this record to undo the opt-out." } } },