Listen to and share the music in the Atmosphere. musicsky.up.railway.app/
nextjs atproto music typescript react
3
fork

Configure Feed

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

feat: fix add missing lexicon

Signed-off-by: mejsiejdev <mejsiejdev@gmail.com>

authored by

mejsiejdev and committed by tangled.org 0eba375d 4436796d

+16 -1
+16 -1
packages/lexicons/defs/app/musicsky/temp/getComments.json
··· 23 23 "cursor": { 24 24 "type": "string", 25 25 "description": "Pagination cursor." 26 + }, 27 + "viewer": { 28 + "type": "string", 29 + "description": "DID of the viewer, used to include viewer state (e.g. liked)." 26 30 } 27 31 } 28 32 }, ··· 66 70 "type": "ref", 67 71 "ref": "#parentRef" 68 72 }, 69 - "deleted": { "type": "boolean" } 73 + "deleted": { "type": "boolean" }, 74 + "likeCount": { "type": "integer" }, 75 + "viewer": { 76 + "type": "ref", 77 + "ref": "#viewerState" 78 + } 79 + } 80 + }, 81 + "viewerState": { 82 + "type": "object", 83 + "properties": { 84 + "like": { "type": "string", "description": "URI of the viewer's like record, if liked." } 70 85 } 71 86 }, 72 87 "parentRef": {