social.colibri.beta.actor.putSettings
Schema Diff
+4 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "social.colibri.beta.actor.putSettings:input.shareActivity" }
- AddedEdge AddedEdge { src: "social.colibri.beta.actor.putSettings:input", tgt: "social.colibri.beta.actor.putSettings:input.shareActivity", kind: "prop", name: Some("shareActivity") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "social.colibri.beta.actor.putSettings:input.shareActivity" }
Additional Notes
- Non-breaking: AddedEdge { src: "social.colibri.beta.actor.putSettings:input", tgt: "social.colibri.beta.actor.putSettings:input.shareActivity", kind: "prop", name: Some("shareActivity") }
1
1
{
2
2
"id": "social.colibri.beta.actor.putSettings",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"properties": {
10
10
"gifFavorites": {
11
11
"type": "array",
12
12
"items": {
13
13
"ref": "social.colibri.beta.embed.defs#gifView",
14
14
"type": "ref"
15
15
},
16
16
"description": "GIFs saved from the picker, stored whole. Absent leaves the current value unchanged."
17
17
},
18
+
"shareActivity": {
19
+
"type": "boolean",
20
+
"description": "Whether the AppView may show what the user is listening to. Absent leaves the current value unchanged."
21
+
},
18
22
"communityOrder": {
19
23
"type": "array",
20
24
"items": {
21
25
"type": "string",
22
26
"format": "did",
23
27
"description": "A community."
24
28
},
25
29
"description": "Communities in preferred sidebar order. Absent leaves the current value unchanged."
26
30
},
27
31
"notificationLevel": {
28
32
"type": "string",
29
33
"description": "Which messages produce a notification. Absent leaves the current value unchanged.",
30
34
"knownValues": [
31
35
"all",
32
36
"mentionsAndReplies"
33
37
]
34
38
}
35
39
}
36
40
},
37
41
"encoding": "application/json"
38
42
},
39
43
"errors": [
40
44
{
41
45
"name": "AuthRequired",
42
46
"description": "The request has no valid service auth."
43
47
},
44
48
{
45
49
"name": "InvalidRequest",
46
50
"description": "A field is present but does not hold an allowed value."
47
51
}
48
52
],
49
53
"output": {
50
54
"schema": {
51
55
"type": "object",
52
56
"required": [
53
57
"preferences"
54
58
],
55
59
"properties": {
56
60
"preferences": {
57
61
"ref": "social.colibri.beta.actor.defs#preferences",
58
62
"type": "ref",
59
63
"description": "The requesting user's settings, after the update."
60
64
}
61
65
}
62
66
},
63
67
"encoding": "application/json"
64
68
},
65
69
"description": "Pushes the requesting user's social.colibri.beta.actor.settings record to the AppView, so it takes effect immediately instead of waiting for a sync notification. The client writes the record to its own personal space first, then calls this. An absent field leaves the current value unchanged."
66
70
}
67
71
},
68
72
"$type": "com.atproto.lexicon.schema",
69
73
"lexicon": 1
70
74
}