|
5 | 5 | * @module
|
6 | 6 | * Contains type declarations for Bluesky lexicons
|
7 | 7 | * @generated
|
8 |
| - * Generated on: 2025-02-23T09:41:54.872Z |
| 8 | + * Generated on: 2025-02-25T03:29:51.134Z |
9 | 9 | * Version: main
|
10 |
| - * Source: https://github.com/bluesky-social/atproto/tree/6e382f67aa73532efadfea80ff96a27b526cb178/lexicons |
| 10 | + * Source: https://github.com/bluesky-social/atproto/tree/44f81f2eb9229e21aec4472b3a05e855396dbec5/lexicons |
11 | 11 | */
|
12 | 12 |
|
13 | 13 | /** Base type with optional type field */
|
@@ -2645,6 +2645,17 @@ export declare namespace ChatBskyConvoUnmuteConvo {
|
2645 | 2645 | }
|
2646 | 2646 | }
|
2647 | 2647 |
|
| 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 | + |
2648 | 2659 | export declare namespace ChatBskyConvoUpdateRead {
|
2649 | 2660 | interface Params extends TypedBase {}
|
2650 | 2661 | interface Input extends TypedBase {
|
@@ -4460,9 +4471,9 @@ export declare namespace ToolsOzoneModerationDefs {
|
4460 | 4471 | acknowledgeAccountSubjects?: boolean;
|
4461 | 4472 | comment?: string;
|
4462 | 4473 | }
|
4463 |
| - /** Add a comment to a subject */ |
| 4474 | + /** Add a comment to a subject. An empty comment will clear any previously set sticky comment. */ |
4464 | 4475 | interface ModEventComment extends TypedBase {
|
4465 |
| - comment: string; |
| 4476 | + comment?: string; |
4466 | 4477 | /** Make the comment persistent on the subject */
|
4467 | 4478 | sticky?: boolean;
|
4468 | 4479 | }
|
@@ -5971,6 +5982,10 @@ export declare interface Procedures {
|
5971 | 5982 | input: ChatBskyConvoUnmuteConvo.Input;
|
5972 | 5983 | output: ChatBskyConvoUnmuteConvo.Output;
|
5973 | 5984 | };
|
| 5985 | + "chat.bsky.convo.updateAllRead": { |
| 5986 | + input: ChatBskyConvoUpdateAllRead.Input; |
| 5987 | + output: ChatBskyConvoUpdateAllRead.Output; |
| 5988 | + }; |
5974 | 5989 | "chat.bsky.convo.updateRead": {
|
5975 | 5990 | input: ChatBskyConvoUpdateRead.Input;
|
5976 | 5991 | output: ChatBskyConvoUpdateRead.Output;
|
|
0 commit comments