this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lexicon updates

+68 -15
+12 -4
lexicons/app/bsky/actor/defs.json
··· 32 32 "status": { 33 33 "type": "ref", 34 34 "ref": "#statusView" 35 + }, 36 + "debug": { 37 + "type": "unknown", 38 + "description": "Debug information for internal development" 35 39 } 36 40 } 37 41 }, ··· 71 75 "status": { 72 76 "type": "ref", 73 77 "ref": "#statusView" 78 + }, 79 + "debug": { 80 + "type": "unknown", 81 + "description": "Debug information for internal development" 74 82 } 75 83 } 76 84 }, ··· 123 131 "status": { 124 132 "type": "ref", 125 133 "ref": "#statusView" 134 + }, 135 + "debug": { 136 + "type": "unknown", 137 + "description": "Debug information for internal development" 126 138 } 127 139 } 128 140 }, ··· 402 414 "type": "string", 403 415 "description": "Sorting mode for threads.", 404 416 "knownValues": ["oldest", "newest", "most-likes", "random", "hotness"] 405 - }, 406 - "prioritizeFollowedUsers": { 407 - "type": "boolean", 408 - "description": "Show followed users at the top of all replies." 409 417 } 410 418 } 411 419 },
+5 -1
lexicons/app/bsky/feed/defs.json
··· 34 34 "type": "array", 35 35 "items": { "type": "ref", "ref": "com.atproto.label.defs#label" } 36 36 }, 37 - "threadgate": { "type": "ref", "ref": "#threadgateView" } 37 + "threadgate": { "type": "ref", "ref": "#threadgateView" }, 38 + "debug": { 39 + "type": "unknown", 40 + "description": "Debug information for internal development" 41 + } 38 42 } 39 43 }, 40 44 "viewerState": {
-5
lexicons/app/bsky/unspecced/getPostThreadOtherV2.json
··· 13 13 "type": "string", 14 14 "format": "at-uri", 15 15 "description": "Reference (AT-URI) to post record. This is the anchor post." 16 - }, 17 - "prioritizeFollowedUsers": { 18 - "type": "boolean", 19 - "description": "Whether to prioritize posts from followed users. It only has effect when the user is authenticated.", 20 - "default": false 21 16 } 22 17 } 23 18 },
-5
lexicons/app/bsky/unspecced/getPostThreadV2.json
··· 33 33 "minimum": 0, 34 34 "maximum": 100 35 35 }, 36 - "prioritizeFollowedUsers": { 37 - "type": "boolean", 38 - "description": "Whether to prioritize posts from followed users. It only has effect when the user is authenticated.", 39 - "default": false 40 - }, 41 36 "sort": { 42 37 "type": "string", 43 38 "description": "Sorting for the thread replies.",
+51
lexicons/com/atproto/lexicon/resolveLexicon.json
··· 1 + { 2 + "lexicon": 1, 3 + "id": "com.atproto.lexicon.resolveLexicon", 4 + "defs": { 5 + "main": { 6 + "type": "query", 7 + "description": "Resolves an atproto lexicon (NSID) to a schema.", 8 + "parameters": { 9 + "type": "params", 10 + "properties": { 11 + "nsid": { 12 + "format": "nsid", 13 + "type": "string", 14 + "description": "The lexicon NSID to resolve." 15 + } 16 + }, 17 + "required": ["nsid"] 18 + }, 19 + "output": { 20 + "encoding": "application/json", 21 + "schema": { 22 + "type": "object", 23 + "properties": { 24 + "cid": { 25 + "type": "string", 26 + "format": "cid", 27 + "description": "The CID of the lexicon schema record." 28 + }, 29 + "schema": { 30 + "type": "ref", 31 + "ref": "com.atproto.lexicon.schema#main", 32 + "description": "The resolved lexicon schema record." 33 + }, 34 + "uri": { 35 + "type": "string", 36 + "format": "at-uri", 37 + "description": "The AT-URI of the lexicon schema record." 38 + } 39 + }, 40 + "required": ["uri", "cid", "schema"] 41 + } 42 + }, 43 + "errors": [ 44 + { 45 + "description": "No lexicon was resolved for the NSID.", 46 + "name": "LexiconNotFound" 47 + } 48 + ] 49 + } 50 + } 51 + }