A vibe coded tangled fork which supports pijul.

lexicons: fix errors in subscribeRepos lexicon

the subscription message schema was referencing a completely invalid ref, and the gitSync2 interface referenced a required property that doesn't exist

authored by

mary.my.id and committed by tangled.org 16373356 53c56c0b

+2 -2
+2 -2
lexicons/knot/subscribeRepos.json
··· 17 17 "message": { 18 18 "schema": { 19 19 "type": "union", 20 - "refs": ["#identity", "gitRefUpdate"] 20 + "refs": ["#identity", "sh.tangled.git.refUpdate"] 21 21 } 22 22 }, 23 23 "errors": [ ··· 50 50 "required": ["seq", "repo"], 51 51 "properties": { 52 52 "seq": { "type": "integer", "description": "The stream sequence number of this message." }, 53 - "did": { "type": "string", "format": "at-uri", "description": "Repository AT-URI identifier" } 53 + "repo": { "type": "string", "format": "at-uri", "description": "Repository AT-URI identifier" } 54 54 } 55 55 } 56 56 }