chat.bsky.convo.listConvos
Schema Diff
+20 -1
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
+
"kind": {
31
+
"type": "string",
32
+
"description": "Filter by conversation kind.",
33
+
"knownValues": [
34
+
"direct",
35
+
"group"
36
+
]
37
+
},
30
38
"limit": {
31
39
"type": "integer",
32
40
"default": 50,
33
41
"maximum": 100,
34
42
"minimum": 1
35
43
},
36
44
"cursor": {
37
45
"type": "string"
38
46
},
39
47
"status": {
40
48
"type": "string",
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.",
41
50
"knownValues": [
42
51
"request",
43
52
"accepted"
44
53
]
45
54
},
46
55
"readState": {
47
56
"type": "string",
48
57
"knownValues": [
49
58
"unread"
50
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
+
]
51
69
}
52
70
}
53
-
}
71
+
},
72
+
"description": "Returns a page of conversations (direct or group) for the user."
54
73
}
55
74
},
56
75
"$type": "com.atproto.lexicon.schema",
57
76
"lexicon": 1
58
77
}