From 163733560fc9d85baaa0facbba531c1bab78eb20 Mon Sep 17 00:00:00 2001 From: mary.my.id Date: Sat, 04 Apr 2026 13:08:11 +0000 Subject: [PATCH] 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 --- lexicons/knot/subscribeRepos.json | 4 ++-- 1 file(s) changed, 2 insertion(s)(+), 2 deletion(s)(-) diff --git a/lexicons/knot/subscribeRepos.json b/lexicons/knot/subscribeRepos.json --- a/lexicons/knot/subscribeRepos.json +++ b/lexicons/knot/subscribeRepos.json @@ -17,7 +17,7 @@ "message": { "schema": { "type": "union", - "refs": ["#identity", "gitRefUpdate"] + "refs": ["#identity", "sh.tangled.git.refUpdate"] } }, "errors": [ @@ -50,7 +50,7 @@ "required": ["seq", "repo"], "properties": { "seq": { "type": "integer", "description": "The stream sequence number of this message." }, - "did": { "type": "string", "format": "at-uri", "description": "Repository AT-URI identifier" } + "repo": { "type": "string", "format": "at-uri", "description": "Repository AT-URI identifier" } } } } -- tangled.sh