chat.bsky.convo.listConvoRequests
Schema Diff
+2 -2
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 1 non-breaking change.
Breaking Changes (1)
- RemovedEdge RemovedEdge { src: "chat.bsky.convo.listConvoRequests:output.requests:items", tgt: "chat.bsky.convo.listConvoRequests:output.requests:items:variant1", kind: "variant", name: Some("chat.bsky.group.defs#joinRequestView") }
Non-Breaking Changes (1)
- AddedEdge AddedEdge { src: "chat.bsky.convo.listConvoRequests:output.requests:items", tgt: "chat.bsky.convo.listConvoRequests:output.requests:items:variant1", kind: "variant", name: Some("chat.bsky.group.defs#joinRequestConvoView") }
Migration Guidance
Additional Notes
- Breaking: RemovedEdge { src: "chat.bsky.convo.listConvoRequests:output.requests:items", tgt: "chat.bsky.convo.listConvoRequests:output.requests:items:variant1", kind: "variant", name: Some("chat.bsky.group.defs#joinRequestView") }
- Non-breaking: AddedEdge { src: "chat.bsky.convo.listConvoRequests:output.requests:items", tgt: "chat.bsky.convo.listConvoRequests:output.requests:items:variant1", kind: "variant", name: Some("chat.bsky.group.defs#joinRequestConvoView") }
1
1
{
2
2
"id": "chat.bsky.convo.listConvoRequests",
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
"requests"
11
11
],
12
12
"properties": {
13
13
"cursor": {
14
14
"type": "string"
15
15
},
16
16
"requests": {
17
17
"type": "array",
18
18
"items": {
19
19
"refs": [
20
20
"chat.bsky.convo.defs#convoView",
21
-
"chat.bsky.group.defs#joinRequestView"
21
+
"chat.bsky.group.defs#joinRequestConvoView"
22
22
],
23
23
"type": "union"
24
24
}
25
25
}
26
26
}
27
27
},
28
28
"encoding": "application/json"
29
29
},
30
30
"parameters": {
31
31
"type": "params",
32
32
"properties": {
33
33
"limit": {
34
34
"type": "integer",
35
35
"default": 50,
36
36
"maximum": 100,
37
37
"minimum": 1
38
38
},
39
39
"cursor": {
40
40
"type": "string"
41
41
}
42
42
}
43
43
},
44
-
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Returns a page of incoming conversation requests for the user. Direct convo requests are returned as convoView; group join requests are returned as joinRequestView."
44
+
"description": "Returns a page of incoming conversation requests for the user. Direct convo requests are returned as convoView; group join requests made by the user are returned as joinRequestConvoView."
45
45
}
46
46
},
47
47
"$type": "com.atproto.lexicon.schema",
48
48
"lexicon": 1
49
49
}