Skip to content

Commit ff8f207

Browse files
chore: Update lexicons (#63)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 5cb690f commit ff8f207

File tree

1 file changed

+37
-2
lines changed

1 file changed

+37
-2
lines changed

packages/lexicons/src/lib/lexicons.ts

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
* @module
66
* Contains type declarations for Bluesky lexicons
77
* @generated
8-
* Generated on: 2025-02-09T16:30:44.251Z
8+
* Generated on: 2025-02-17T22:14:45.665Z
99
* Version: main
10-
* Source: https://github.com/bluesky-social/atproto/tree/709a85b0b633b5483b7161db64b429c746239153/lexicons
10+
* Source: https://github.com/bluesky-social/atproto/tree/b41ff4b4e309f5c1594a79d64f4090eaa4587a3c/lexicons
1111
*/
1212

1313
/** Base type with optional type field */
@@ -4574,6 +4574,25 @@ export declare namespace ToolsOzoneModerationDefs {
45744574
interface RecordViewNotFound extends TypedBase {
45754575
uri: At.Uri;
45764576
}
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+
}
45774596
interface RepoView extends TypedBase {
45784597
did: At.DID;
45794598
handle: At.Handle;
@@ -4746,6 +4765,18 @@ export declare namespace ToolsOzoneModerationGetRepo {
47464765
}
47474766
}
47484767

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+
47494780
/** Get details about some repositories. */
47504781
export declare namespace ToolsOzoneModerationGetRepos {
47514782
interface Params extends TypedBase {
@@ -5702,6 +5733,10 @@ export declare interface Queries {
57025733
params: ToolsOzoneModerationGetRepo.Params;
57035734
output: ToolsOzoneModerationGetRepo.Output;
57045735
};
5736+
"tools.ozone.moderation.getReporterStats": {
5737+
params: ToolsOzoneModerationGetReporterStats.Params;
5738+
output: ToolsOzoneModerationGetReporterStats.Output;
5739+
};
57055740
"tools.ozone.moderation.getRepos": {
57065741
params: ToolsOzoneModerationGetRepos.Params;
57075742
output: ToolsOzoneModerationGetRepos.Output;

0 commit comments

Comments
 (0)