-
Notifications
You must be signed in to change notification settings - Fork 573
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into multi-pds-auth
- Loading branch information
Showing
130 changed files
with
3,384 additions
and
3,534 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
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,24 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "com.atproto.admin.getAccountInfo", | ||
"defs": { | ||
"main": { | ||
"type": "query", | ||
"description": "View details about an account.", | ||
"parameters": { | ||
"type": "params", | ||
"required": ["did"], | ||
"properties": { | ||
"did": { "type": "string", "format": "did" } | ||
} | ||
}, | ||
"output": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "ref", | ||
"ref": "com.atproto.admin.defs#accountView" | ||
} | ||
} | ||
} | ||
} | ||
} |
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,39 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "com.atproto.admin.getSubjectStatus", | ||
"defs": { | ||
"main": { | ||
"type": "query", | ||
"description": "Fetch the service-specific the admin status of a subject (account, record, or blob)", | ||
"parameters": { | ||
"type": "params", | ||
"properties": { | ||
"did": { "type": "string", "format": "did" }, | ||
"uri": { "type": "string", "format": "at-uri" }, | ||
"blob": { "type": "string", "format": "cid" } | ||
} | ||
}, | ||
"output": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["subject"], | ||
"properties": { | ||
"subject": { | ||
"type": "union", | ||
"refs": [ | ||
"com.atproto.admin.defs#repoRef", | ||
"com.atproto.repo.strongRef", | ||
"com.atproto.admin.defs#repoBlobRef" | ||
] | ||
}, | ||
"takedown": { | ||
"type": "ref", | ||
"ref": "com.atproto.admin.defs#statusAttr" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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,52 @@ | ||
{ | ||
"lexicon": 1, | ||
"id": "com.atproto.admin.updateSubjectStatus", | ||
"defs": { | ||
"main": { | ||
"type": "procedure", | ||
"description": "Update the service-specific admin status of a subject (account, record, or blob)", | ||
"input": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["subject"], | ||
"properties": { | ||
"subject": { | ||
"type": "union", | ||
"refs": [ | ||
"com.atproto.admin.defs#repoRef", | ||
"com.atproto.repo.strongRef", | ||
"com.atproto.admin.defs#repoBlobRef" | ||
] | ||
}, | ||
"takedown": { | ||
"type": "ref", | ||
"ref": "com.atproto.admin.defs#statusAttr" | ||
} | ||
} | ||
} | ||
}, | ||
"output": { | ||
"encoding": "application/json", | ||
"schema": { | ||
"type": "object", | ||
"required": ["subject"], | ||
"properties": { | ||
"subject": { | ||
"type": "union", | ||
"refs": [ | ||
"com.atproto.admin.defs#repoRef", | ||
"com.atproto.repo.strongRef", | ||
"com.atproto.admin.defs#repoBlobRef" | ||
] | ||
}, | ||
"takedown": { | ||
"type": "ref", | ||
"ref": "com.atproto.admin.defs#statusAttr" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
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
Oops, something went wrong.