Music streaming on ATProto!

feat!(lexicons/v0.feed.playlistTrack): add required `createdAt` field

ovyerus.com b70ebbdf c2b6afba

verified
Changed files
+7 -2
packages
lexicons
defs
sh
comet
+7 -2
packages/lexicons/defs/sh/comet/v0/feed/playlistTrack.json
··· 8 "key": "tid", 9 "record": { 10 "type": "object", 11 - "required": ["track", "playlist", "position"], 12 "properties": { 13 "track": { 14 "type": "string", ··· 18 "type": "string", 19 "format": "at-uri" 20 }, 21 - "position": { "type": "integer", "minimum": 0 } 22 } 23 } 24 }
··· 8 "key": "tid", 9 "record": { 10 "type": "object", 11 + "required": ["track", "playlist", "position", "createdAt"], 12 "properties": { 13 "track": { 14 "type": "string", ··· 18 "type": "string", 19 "format": "at-uri" 20 }, 21 + "position": { "type": "integer", "minimum": 0 }, 22 + "createdAt": { 23 + "type": "string", 24 + "format": "datetime", 25 + "description": "Timestamp for when the track entry was originally added to the playlist." 26 + } 27 } 28 } 29 }