chat.bsky.convo.updateRead
Schema Diff
+7 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.updateRead",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"convoId"
11
11
],
12
12
"properties": {
13
13
"convoId": {
14
14
"type": "string"
15
15
},
16
16
"messageId": {
17
17
"type": "string"
18
18
}
19
19
}
20
20
},
21
21
"encoding": "application/json"
22
22
},
23
+
"errors": [
24
+
{
25
+
"name": "InvalidConvo"
26
+
}
27
+
],
23
28
"output": {
24
29
"schema": {
25
30
"type": "object",
26
31
"required": [
27
32
"convo"
28
33
],
29
34
"properties": {
30
35
"convo": {
31
36
"ref": "chat.bsky.convo.defs#convoView",
32
37
"type": "ref"
33
38
}
34
39
}
35
40
},
36
41
"encoding": "application/json"
37
-
}
42
+
},
43
+
"description": "Updates the read state of a conversation from, optionally specifying the last read message."
38
44
}
39
45
},
40
46
"$type": "com.atproto.lexicon.schema",
41
47
"lexicon": 1
42
48
}