af7d3912a3
* lexicon: initial starter pack record lexicons * lexicon: first pass on views for starter packs * lexicon: add starter pack query endpoints, misc fixes * lexicon: add starter pack related fields to profile views * lexicon: codegen * api prerelease * bsky: protos for starter packs * appview: implement starter pack endpoints in dataplane, protos update * appview: starter pack hydration and view, mock dataplane indexing * appview: wire-up starter pack graph endpoints * appview: test basic starter packs functionality, update dev-env * fix snaps for profile createdAt * appview: fix list item count for starter packs in dataplane * fix ozone snaps, tidy * appview: reorg list aggs for starter packs * appview: starter pack lexicon and proto tweaks, move around aggregations * appview: fix views and snaps * api prerelease * fix snaps * appview: misc proto updates for starter packs, snaps * appview: add starter pack counts to profile detail * build * api prerelease * pds: starter pack slur detection * lexicon: starter pack notifications and batch fetch * appview: starter pack notification and batch fetch * appview: add starterpack-joined notif to dataplane and test * api prerelease * ozone: fix snaps * pds build * ✨ Proxy starterpack requests through ozone and include takedowns (#2594) * ✨ Proxy starterpack requests through ozone and include takedowns * 🧹 Cleanup * ✅ Commit snapshots * ✅ Update snapshot * lexicon: move starterpacks back to TIDs * changeset --------- Co-authored-by: Foysal Ahamed <foysal@blueskyweb.xyz>
35 lines
812 B
JSON
35 lines
812 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "app.bsky.graph.getStarterPack",
|
|
"defs": {
|
|
"main": {
|
|
"type": "query",
|
|
"description": "Gets a view of a starter pack.",
|
|
"parameters": {
|
|
"type": "params",
|
|
"required": ["starterPack"],
|
|
"properties": {
|
|
"starterPack": {
|
|
"type": "string",
|
|
"format": "at-uri",
|
|
"description": "Reference (AT-URI) of the starter pack record."
|
|
}
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["starterPack"],
|
|
"properties": {
|
|
"starterPack": {
|
|
"type": "ref",
|
|
"ref": "app.bsky.graph.defs#starterPackView"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|