This repository has no description
931 B
28 lines
1{
2 "lexicon": 1,
3 "id": "org.tangled.temp.notification.updatePreferences",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Update notification preferences for the authenticated user. Only provided fields are updated.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "properties": {
13 "repoStarred": { "type": "boolean" },
14 "issueCreated": { "type": "boolean" },
15 "issueCommented": { "type": "boolean" },
16 "issueClosed": { "type": "boolean" },
17 "pullCreated": { "type": "boolean" },
18 "pullCommented": { "type": "boolean" },
19 "pullMerged": { "type": "boolean" },
20 "followed": { "type": "boolean" },
21 "userMentioned": { "type": "boolean" },
22 "emailNotifications": { "type": "boolean" }
23 }
24 }
25 }
26 }
27 }
28}