-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0e9453
commit 4b25a8b
Showing
27 changed files
with
1,286 additions
and
206 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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,51 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "app.bsky.graph.getRelationships", | ||
"defs": { | ||
"main": { | ||
"type": "query", | ||
"description": "Enumerates public relationships between one account, and a list of other accounts", | ||
"parameters": { | ||
"type": "params", | ||
"required": ["actor"], | ||
"properties": { | ||
"actor": { "type": "string", "format": "at-identifier" }, | ||
"others": { | ||
"type": "array", | ||
"maxLength": 30, | ||
"items": { | ||
"type": "string", | ||
"format": "at-identifier" | ||
} | ||
} | ||
} | ||
}, | ||
"output": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["relationships"], | ||
"properties": { | ||
"actor": { "type": "string", "format": "did" }, | ||
"relationships": { | ||
"type": "array", | ||
"items": { | ||
"type": "union", | ||
"refs": [ | ||
"app.bsky.graph.defs#relationship", | ||
"app.bsky.graph.defs#notFoundActor" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"errors": [ | ||
{ | ||
"name": "ActorNotFound", | ||
"description": "the primary actor at-identifier could not be resolved" | ||
} | ||
] | ||
} | ||
} | ||
} |
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.
42 changes: 42 additions & 0 deletions
42
bluesky/lexicons/app/bsky/unspecced/getTaggedSuggestions.json
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,42 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "app.bsky.unspecced.getTaggedSuggestions", | ||
"defs": { | ||
"main": { | ||
"type": "query", | ||
"description": "Get a list of suggestions (feeds and users) tagged with categories", | ||
"parameters": { | ||
"type": "params", | ||
"properties": {} | ||
}, | ||
"output": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["suggestions"], | ||
"properties": { | ||
"suggestions": { | ||
"type": "array", | ||
"items": { | ||
"type": "ref", | ||
"ref": "#suggestion" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"suggestion": { | ||
"type": "object", | ||
"required": ["tag", "subjectType", "subject"], | ||
"properties": { | ||
"tag": { "type": "string" }, | ||
"subjectType": { | ||
"type": "string", | ||
"knownValues": ["actor", "feed"] | ||
}, | ||
"subject": { "type": "string", "format": "uri" } | ||
} | ||
} | ||
} | ||
} |
40 changes: 0 additions & 40 deletions
40
bluesky/lexicons/app/bsky/unspecced/getTimelineSkeleton.json
This file was deleted.
Oops, something went wrong.
43 changes: 43 additions & 0 deletions
43
bluesky/lexicons/com/atproto/admin/createCommunicationTemplate.json
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,43 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "com.atproto.admin.createCommunicationTemplate", | ||
"defs": { | ||
"main": { | ||
"type": "procedure", | ||
"description": "Administrative action to create a new, re-usable communication (email for now) template.", | ||
"input": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["subject", "contentMarkdown", "name"], | ||
"properties": { | ||
"name": { | ||
"type": "string", | ||
"description": "Name of the template." | ||
}, | ||
"contentMarkdown": { | ||
"type": "string", | ||
"description": "Content of the template, markdown supported, can contain variable placeholders." | ||
}, | ||
"subject": { | ||
"type": "string", | ||
"description": "Subject of the message, used in emails." | ||
}, | ||
"createdBy": { | ||
"type": "string", | ||
"format": "did", | ||
"description": "DID of the user who is creating the template." | ||
} | ||
} | ||
} | ||
}, | ||
"output": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "ref", | ||
"ref": "com.atproto.admin.defs#communicationTemplateView" | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.