|
5 | 5 | * @module
|
6 | 6 | * Contains type declarations for Bluesky lexicons
|
7 | 7 | * @generated
|
8 |
| - * Generated on: 2025-02-09T16:30:44.251Z |
| 8 | + * Generated on: 2025-02-17T22:14:45.665Z |
9 | 9 | * Version: main
|
10 |
| - * Source: https://github.com/bluesky-social/atproto/tree/709a85b0b633b5483b7161db64b429c746239153/lexicons |
| 10 | + * Source: https://github.com/bluesky-social/atproto/tree/b41ff4b4e309f5c1594a79d64f4090eaa4587a3c/lexicons |
11 | 11 | */
|
12 | 12 |
|
13 | 13 | /** Base type with optional type field */
|
@@ -4574,6 +4574,25 @@ export declare namespace ToolsOzoneModerationDefs {
|
4574 | 4574 | interface RecordViewNotFound extends TypedBase {
|
4575 | 4575 | uri: At.Uri;
|
4576 | 4576 | }
|
| 4577 | + interface ReporterStats extends TypedBase { |
| 4578 | + /** The total number of reports made by the user on accounts. */ |
| 4579 | + accountReportCount: number; |
| 4580 | + did: At.DID; |
| 4581 | + /** The total number of accounts labeled as a result of the user's reports. */ |
| 4582 | + labeledAccountCount: number; |
| 4583 | + /** The total number of records labeled as a result of the user's reports. */ |
| 4584 | + labeledRecordCount: number; |
| 4585 | + /** The total number of reports made by the user on records. */ |
| 4586 | + recordReportCount: number; |
| 4587 | + /** The total number of accounts reported by the user. */ |
| 4588 | + reportedAccountCount: number; |
| 4589 | + /** The total number of records reported by the user. */ |
| 4590 | + reportedRecordCount: number; |
| 4591 | + /** The total number of accounts taken down as a result of the user's reports. */ |
| 4592 | + takendownAccountCount: number; |
| 4593 | + /** The total number of records taken down as a result of the user's reports. */ |
| 4594 | + takendownRecordCount: number; |
| 4595 | + } |
4577 | 4596 | interface RepoView extends TypedBase {
|
4578 | 4597 | did: At.DID;
|
4579 | 4598 | handle: At.Handle;
|
@@ -4746,6 +4765,18 @@ export declare namespace ToolsOzoneModerationGetRepo {
|
4746 | 4765 | }
|
4747 | 4766 | }
|
4748 | 4767 |
|
| 4768 | +/** Get reporter stats for a list of users. */ |
| 4769 | +export declare namespace ToolsOzoneModerationGetReporterStats { |
| 4770 | + interface Params extends TypedBase { |
| 4771 | + /** Maximum array length: 100 */ |
| 4772 | + dids: At.DID[]; |
| 4773 | + } |
| 4774 | + type Input = undefined; |
| 4775 | + interface Output extends TypedBase { |
| 4776 | + stats: ToolsOzoneModerationDefs.ReporterStats[]; |
| 4777 | + } |
| 4778 | +} |
| 4779 | + |
4749 | 4780 | /** Get details about some repositories. */
|
4750 | 4781 | export declare namespace ToolsOzoneModerationGetRepos {
|
4751 | 4782 | interface Params extends TypedBase {
|
@@ -5702,6 +5733,10 @@ export declare interface Queries {
|
5702 | 5733 | params: ToolsOzoneModerationGetRepo.Params;
|
5703 | 5734 | output: ToolsOzoneModerationGetRepo.Output;
|
5704 | 5735 | };
|
| 5736 | + "tools.ozone.moderation.getReporterStats": { |
| 5737 | + params: ToolsOzoneModerationGetReporterStats.Params; |
| 5738 | + output: ToolsOzoneModerationGetReporterStats.Output; |
| 5739 | + }; |
5705 | 5740 | "tools.ozone.moderation.getRepos": {
|
5706 | 5741 | params: ToolsOzoneModerationGetRepos.Params;
|
5707 | 5742 | output: ToolsOzoneModerationGetRepos.Output;
|
|
0 commit comments