diff --git a/lexicons.json b/lexicons.json index eb02ebdd7f..f2c25ca611 100644 --- a/lexicons.json +++ b/lexicons.json @@ -689,7 +689,7 @@ }, "app.bsky.graph.searchStarterPacksV2": { "uri": "at://did:plc:4v4y5r3lwsbtmsxhile2ljac/com.atproto.lexicon.schema/app.bsky.graph.searchStarterPacksV2", - "cid": "bafyreifzm4bcm3tw26peaor6u2ebj7qehfapnjyazhfj5tp6r2zikvet54" + "cid": "bafyreiftevu66nkth5uprlwhoxtxloz4aqym25hu3wj2bal2vcuupa6uky" }, "app.bsky.graph.starterpack": { "uri": "at://did:plc:4v4y5r3lwsbtmsxhile2ljac/com.atproto.lexicon.schema/app.bsky.graph.starterpack", diff --git a/lexicons/app/bsky/graph/searchStarterPacksV2.json b/lexicons/app/bsky/graph/searchStarterPacksV2.json index 4885c9dfe3..9d6949e0e2 100644 --- a/lexicons/app/bsky/graph/searchStarterPacksV2.json +++ b/lexicons/app/bsky/graph/searchStarterPacksV2.json @@ -1,34 +1,14 @@ { - "lexicon": 1, "id": "app.bsky.graph.searchStarterPacksV2", "defs": { "main": { "type": "query", - "description": "Find starter packs matching search criteria. Does not require auth.", - "parameters": { - "type": "params", - "required": ["q"], - "properties": { - "q": { - "type": "string", - "description": "Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended." - }, - "limit": { - "type": "integer", - "minimum": 1, - "maximum": 100, - "default": 25 - }, - "cursor": { - "type": "string" - } - } - }, "output": { - "encoding": "application/json", "schema": { "type": "object", - "required": ["starterPacks"], + "required": [ + "starterPacks" + ], "properties": { "cursor": { "type": "string" @@ -40,13 +20,38 @@ "starterPacks": { "type": "array", "items": { - "type": "ref", - "ref": "app.bsky.graph.defs#starterPackView" + "ref": "app.bsky.graph.defs#starterPackView", + "type": "ref" } } } + }, + "encoding": "application/json" + }, + "parameters": { + "type": "params", + "required": [ + "q" + ], + "properties": { + "q": { + "type": "string", + "description": "Search query string. Syntax, phrase, boolean, and faceting is unspecified, but Lucene query syntax is recommended." + }, + "limit": { + "type": "integer", + "default": 25, + "maximum": 100, + "minimum": 1 + }, + "cursor": { + "type": "string" + } } - } + }, + "description": "Find starter packs matching search criteria. Does not require auth." } - } + }, + "$type": "com.atproto.lexicon.schema", + "lexicon": 1 }