chat.bsky.convo.unlockConvo
Schema Diff
+4 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.unlockConvo",
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
20
"errors": [
21
21
{
22
22
"name": "InvalidConvo"
23
23
},
24
24
{
25
25
"name": "InsufficientRole"
26
+
},
27
+
{
28
+
"name": "ConvoLockedByModeration"
26
29
}
27
30
],
28
31
"output": {
29
32
"schema": {
30
33
"type": "object",
31
34
"required": [
32
35
"convo"
33
36
],
34
37
"properties": {
35
38
"convo": {
36
39
"ref": "chat.bsky.convo.defs#convoView",
37
40
"type": "ref"
38
41
}
39
42
}
40
43
},
41
44
"encoding": "application/json"
42
45
},
43
-
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Unlocks a group convo so it is able to receive new content."
46
+
"description": "Unlocks a group convo so it is able to receive new content."
44
47
}
45
48
},
46
49
"$type": "com.atproto.lexicon.schema",
47
50
"lexicon": 1
48
51
}