-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update lexicons to commit ad1fcf138711139ceedcf63db3702bf3b6cdb753
- Loading branch information
1 parent
f60d639
commit 525960b
Showing
15 changed files
with
311 additions
and
264 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "app.bsky.feed.getActorLikes", | ||
"defs": { | ||
"main": { | ||
"type": "query", | ||
"description": "A view of the posts liked by an actor.", | ||
"parameters": { | ||
"type": "params", | ||
"required": ["actor"], | ||
"properties": { | ||
"actor": {"type": "string", "format": "at-identifier"}, | ||
"limit": {"type": "integer", "minimum": 1, "maximum": 100, "default": 50}, | ||
"cursor": {"type": "string"} | ||
} | ||
}, | ||
"output": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["feed"], | ||
"properties": { | ||
"cursor": {"type": "string"}, | ||
"feed": { | ||
"type": "array", | ||
"items": {"type": "ref", "ref": "app.bsky.feed.defs#feedViewPost"} | ||
} | ||
} | ||
} | ||
}, | ||
"errors": [ | ||
{"name": "BlockedActor"}, | ||
{"name": "BlockedByActor"} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "app.bsky.notification.registerPush", | ||
"defs": { | ||
"main": { | ||
"type": "procedure", | ||
"description": "Register for push notifications with a service", | ||
"input": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["serviceDid", "token", "platform", "appId"], | ||
"properties": { | ||
"serviceDid": {"type": "string", "format": "did"}, | ||
"token": {"type": "string"}, | ||
"platform": {"type": "string", "knownValues": ["ios", "android", "web"]}, | ||
"appId": {"type": "string"} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "com.atproto.sync.getLatestCommit", | ||
"defs": { | ||
"main": { | ||
"type": "query", | ||
"description": "Gets the current commit CID & revision of the repo.", | ||
"parameters": { | ||
"type": "params", | ||
"required": ["did"], | ||
"properties": { | ||
"did": { | ||
"type": "string", | ||
"format": "did", | ||
"description": "The DID of the repo." | ||
} | ||
} | ||
}, | ||
"output": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["cid", "rev"], | ||
"properties": { | ||
"cid": {"type": "string", "format": "cid"}, | ||
"rev": {"type": "string"} | ||
} | ||
} | ||
}, | ||
"errors": [ | ||
{"name": "RepoNotFound"} | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "com.atproto.temp.upgradeRepoVersion", | ||
"defs": { | ||
"main": { | ||
"type": "procedure", | ||
"description": "Upgrade a repo to v3", | ||
"input": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["did"], | ||
"properties": { | ||
"did": { "type": "string", "format": "did" } | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.