chat.bsky.convo.unmuteConvo
Schema Diff
+7 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.unmuteConvo",
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
"required": [
24
29
"convo"
25
30
],
26
31
"properties": {
27
32
"convo": {
28
33
"ref": "chat.bsky.convo.defs#convoView",
29
34
"type": "ref"
30
35
}
31
36
}
32
37
},
33
38
"encoding": "application/json"
34
-
}
39
+
},
40
+
"description": "Unmutes a conversation, allowing notifications related to it."
35
41
}
36
42
},
37
43
"$type": "com.atproto.lexicon.schema",
38
44
"lexicon": 1
39
45
}