chat.bsky.convo.deleteMessageForSelf
Schema Diff
+11 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.deleteMessageForSelf",
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
"messageId"
12
12
],
13
13
"properties": {
14
14
"convoId": {
15
15
"type": "string"
16
16
},
17
17
"messageId": {
18
18
"type": "string"
19
19
}
20
20
}
21
21
},
22
22
"encoding": "application/json"
23
23
},
24
+
"errors": [
25
+
{
26
+
"name": "InvalidConvo"
27
+
},
28
+
{
29
+
"name": "MessageDeleteNotAllowed",
30
+
"description": "Indicates that this message cannot be deleted, e.g. because it is a system message."
31
+
}
32
+
],
24
33
"output": {
25
34
"schema": {
26
35
"ref": "chat.bsky.convo.defs#deletedMessageView",
27
36
"type": "ref"
28
37
},
29
38
"encoding": "application/json"
30
-
}
39
+
},
40
+
"description": "Marks a message as deleted for the viewer, so they won't see that message in future enumerations."
31
41
}
32
42
},
33
43
"$type": "com.atproto.lexicon.schema",
34
44
"lexicon": 1
35
45
}