chat.bsky.convo.acceptConvo
Schema Diff
+7 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.acceptConvo",
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
}
17
17
},
18
18
"encoding": "application/json"
19
19
},
20
+
"errors": [
21
+
{
22
+
"name": "InvalidConvo"
23
+
}
24
+
],
20
25
"output": {
21
26
"schema": {
22
27
"type": "object",
23
28
"properties": {
24
29
"rev": {
25
30
"type": "string",
26
31
"description": "Rev when the convo was accepted. If not present, the convo was already accepted."
27
32
}
28
33
}
29
34
},
30
35
"encoding": "application/json"
31
-
}
36
+
},
37
+
"description": "Marks a conversation as accepted, so it is shown in the list of accepted convos instead on the request convos."
32
38
}
33
39
},
34
40
"$type": "com.atproto.lexicon.schema",
35
41
"lexicon": 1
36
42
}