chat.bsky.convo.listConvos
Schema Diff
+9 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.listConvos",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"convos"
11
11
],
12
12
"properties": {
13
13
"convos": {
14
14
"type": "array",
15
15
"items": {
16
16
"ref": "chat.bsky.convo.defs#convoView",
17
17
"type": "ref"
18
18
}
19
19
},
20
20
"cursor": {
21
21
"type": "string"
22
22
}
23
23
}
24
24
},
25
25
"encoding": "application/json"
26
26
},
27
27
"parameters": {
28
28
"type": "params",
29
29
"properties": {
30
30
"kind": {
31
31
"type": "string",
32
32
"description": "Filter by conversation kind.",
33
33
"knownValues": [
34
34
"direct",
35
35
"group"
36
36
]
37
37
},
38
38
"limit": {
39
39
"type": "integer",
40
40
"default": 50,
41
41
"maximum": 100,
42
42
"minimum": 1
43
43
},
44
44
"cursor": {
45
45
"type": "string"
46
46
},
47
47
"status": {
48
48
"type": "string",
49
49
"description": "Filter convos by their status. It is discouraged to call with \"request\" and preferred to call chat.bsky.convo.listConvoRequests, which also includes group join requests made by the user.",
50
50
"knownValues": [
51
51
"request",
52
52
"accepted"
53
53
]
54
54
},
55
55
"readState": {
56
56
"type": "string",
57
57
"knownValues": [
58
58
"unread"
59
59
]
60
+
},
61
+
"lockStatus": {
62
+
"type": "string",
63
+
"description": "Filter by conversation lock status. Values follow chat.bsky.convo.defs#convoLockStatus.",
64
+
"knownValues": [
65
+
"unlocked",
66
+
"locked",
67
+
"locked-permanently"
68
+
]
60
69
}
61
70
}
62
71
},
63
72
"description": "Returns a page of conversations (direct or group) for the user."
64
73
}
65
74
},
66
75
"$type": "com.atproto.lexicon.schema",
67
76
"lexicon": 1
68
77
}