File tree 5 files changed +53
-5
lines changed
5 files changed +53
-5
lines changed Original file line number Diff line number Diff line change 1
- https://github.com/bluesky-social/atproto/tree/6e382f67aa73532efadfea80ff96a27b526cb178 /lexicons
1
+ https://github.com/bluesky-social/atproto/tree/44f81f2eb9229e21aec4472b3a05e855396dbec5 /lexicons
Original file line number Diff line number Diff line change
1
+ {
2
+ "lexicon" : 1 ,
3
+ "id" : " chat.bsky.convo.updateAllRead" ,
4
+ "defs" : {
5
+ "main" : {
6
+ "type" : " procedure" ,
7
+ "input" : {
8
+ "encoding" : " application/json" ,
9
+ "schema" : {
10
+ "type" : " object" ,
11
+ "properties" : {
12
+ "status" : {
13
+ "type" : " string" ,
14
+ "knownValues" : [" request" , " accepted" ]
15
+ }
16
+ }
17
+ }
18
+ },
19
+ "output" : {
20
+ "encoding" : " application/json" ,
21
+ "schema" : {
22
+ "type" : " object" ,
23
+ "required" : [" updatedCount" ],
24
+ "properties" : {
25
+ "updatedCount" : {
26
+ "description" : " The count of updated convos." ,
27
+ "type" : " integer"
28
+ }
29
+ }
30
+ }
31
+ }
32
+ }
33
+ }
34
+ }
Original file line number Diff line number Diff line change 310
310
},
311
311
"modEventComment" : {
312
312
"type" : " object" ,
313
- "description" : " Add a comment to a subject" ,
314
- "required" : [" comment" ],
313
+ "description" : " Add a comment to a subject. An empty comment will clear any previously set sticky comment." ,
315
314
"properties" : {
316
315
"comment" : {
317
316
"type" : " string"
Original file line number Diff line number Diff line change @@ -2670,6 +2670,17 @@ declare module '@atcute/client/lexicons' {
2670
2670
}
2671
2671
}
2672
2672
2673
+ namespace ChatBskyConvoUpdateAllRead {
2674
+ interface Params { }
2675
+ interface Input {
2676
+ status ?: 'accepted' | 'request' | ( string & { } ) ;
2677
+ }
2678
+ interface Output {
2679
+ /** The count of updated convos. */
2680
+ updatedCount : number ;
2681
+ }
2682
+ }
2683
+
2673
2684
namespace ChatBskyConvoUpdateRead {
2674
2685
interface Params { }
2675
2686
interface Input {
@@ -3051,6 +3062,10 @@ declare module '@atcute/client/lexicons' {
3051
3062
input : ChatBskyConvoUnmuteConvo . Input ;
3052
3063
output : ChatBskyConvoUnmuteConvo . Output ;
3053
3064
} ;
3065
+ 'chat.bsky.convo.updateAllRead' : {
3066
+ input : ChatBskyConvoUpdateAllRead . Input ;
3067
+ output : ChatBskyConvoUpdateAllRead . Output ;
3068
+ } ;
3054
3069
'chat.bsky.convo.updateRead' : {
3055
3070
input : ChatBskyConvoUpdateRead . Input ;
3056
3071
output : ChatBskyConvoUpdateRead . Output ;
Original file line number Diff line number Diff line change @@ -170,10 +170,10 @@ declare module '@atcute/client/lexicons' {
170
170
acknowledgeAccountSubjects ?: boolean ;
171
171
comment ?: string ;
172
172
}
173
- /** Add a comment to a subject */
173
+ /** Add a comment to a subject. An empty comment will clear any previously set sticky comment. */
174
174
interface ModEventComment {
175
175
[ Brand . Type ] ?: 'tools.ozone.moderation.defs#modEventComment' ;
176
- comment : string ;
176
+ comment ? : string ;
177
177
/** Make the comment persistent on the subject */
178
178
sticky ?: boolean ;
179
179
}
You can’t perform that action at this time.
0 commit comments