Skip to content

Commit 3c2af13

Browse files
chore: Update lexicons (#75)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 006eaca commit 3c2af13

File tree

1 file changed

+19
-4
lines changed

1 file changed

+19
-4
lines changed

packages/lexicons/src/lib/lexicons.ts

+19-4
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-23T09:41:54.872Z
8+
* Generated on: 2025-02-25T03:29:51.134Z
99
* Version: main
10-
* Source: https://github.com/bluesky-social/atproto/tree/6e382f67aa73532efadfea80ff96a27b526cb178/lexicons
10+
* Source: https://github.com/bluesky-social/atproto/tree/44f81f2eb9229e21aec4472b3a05e855396dbec5/lexicons
1111
*/
1212

1313
/** Base type with optional type field */
@@ -2645,6 +2645,17 @@ export declare namespace ChatBskyConvoUnmuteConvo {
26452645
}
26462646
}
26472647

2648+
export declare namespace ChatBskyConvoUpdateAllRead {
2649+
interface Params extends TypedBase {}
2650+
interface Input extends TypedBase {
2651+
status?: "accepted" | "request" | (string & {});
2652+
}
2653+
interface Output extends TypedBase {
2654+
/** The count of updated convos. */
2655+
updatedCount: number;
2656+
}
2657+
}
2658+
26482659
export declare namespace ChatBskyConvoUpdateRead {
26492660
interface Params extends TypedBase {}
26502661
interface Input extends TypedBase {
@@ -4460,9 +4471,9 @@ export declare namespace ToolsOzoneModerationDefs {
44604471
acknowledgeAccountSubjects?: boolean;
44614472
comment?: string;
44624473
}
4463-
/** Add a comment to a subject */
4474+
/** Add a comment to a subject. An empty comment will clear any previously set sticky comment. */
44644475
interface ModEventComment extends TypedBase {
4465-
comment: string;
4476+
comment?: string;
44664477
/** Make the comment persistent on the subject */
44674478
sticky?: boolean;
44684479
}
@@ -5971,6 +5982,10 @@ export declare interface Procedures {
59715982
input: ChatBskyConvoUnmuteConvo.Input;
59725983
output: ChatBskyConvoUnmuteConvo.Output;
59735984
};
5985+
"chat.bsky.convo.updateAllRead": {
5986+
input: ChatBskyConvoUpdateAllRead.Input;
5987+
output: ChatBskyConvoUpdateAllRead.Output;
5988+
};
59745989
"chat.bsky.convo.updateRead": {
59755990
input: ChatBskyConvoUpdateRead.Input;
59765991
output: ChatBskyConvoUpdateRead.Output;

0 commit comments

Comments
 (0)