[SDK] Add lexicon codegen pipeline (@atproto/lex) (#11346)
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,73 @@
|
||||
{
|
||||
"id": "com.atproto.sync.listBlobs",
|
||||
"defs": {
|
||||
"main": {
|
||||
"type": "query",
|
||||
"errors": [
|
||||
{
|
||||
"name": "RepoNotFound"
|
||||
},
|
||||
{
|
||||
"name": "RepoTakendown"
|
||||
},
|
||||
{
|
||||
"name": "RepoSuspended"
|
||||
},
|
||||
{
|
||||
"name": "RepoDeactivated"
|
||||
}
|
||||
],
|
||||
"output": {
|
||||
"schema": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"cids"
|
||||
],
|
||||
"properties": {
|
||||
"cids": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"format": "cid"
|
||||
}
|
||||
},
|
||||
"cursor": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"encoding": "application/json"
|
||||
},
|
||||
"parameters": {
|
||||
"type": "params",
|
||||
"required": [
|
||||
"did"
|
||||
],
|
||||
"properties": {
|
||||
"did": {
|
||||
"type": "string",
|
||||
"format": "did",
|
||||
"description": "The DID of the repo."
|
||||
},
|
||||
"limit": {
|
||||
"type": "integer",
|
||||
"default": 500,
|
||||
"maximum": 1000,
|
||||
"minimum": 1
|
||||
},
|
||||
"since": {
|
||||
"type": "string",
|
||||
"format": "tid",
|
||||
"description": "Optional revision of the repo to list blobs since."
|
||||
},
|
||||
"cursor": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"description": "List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS."
|
||||
}
|
||||
},
|
||||
"$type": "com.atproto.lexicon.schema",
|
||||
"lexicon": 1
|
||||
}
|
||||
Reference in New Issue
Block a user