-
Notifications
You must be signed in to change notification settings - Fork 1
/
commands.json
95 lines (95 loc) · 3.09 KB
/
commands.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[
{
"category": "General",
"commands": [
{
"command": "help",
"permission_level": 0,
"arguments": [
{
"name": "command",
"required": false,
"type": "example",
"description": "Optional argument to show more information about a specific command."
}
],
"description": "Shows the list of available commands.",
"example": "help command"
},
{
"command": "admin_roles",
"permission_level": 3,
"arguments": [
],
"description": "Sets up the admin roles for commands.",
"example": "admin_roles"
}
]
},
{
"category": "Tracker",
"commands": [
{
"command": "newtracker",
"permission_level": 3,
"arguments": [
{
"name": "channel",
"required": true,
"type": "string",
"description": "The channel to send tracker notifications to."
},
{
"name": "document_id",
"required": true,
"type": "string",
"description": "The spreaadsheet to track changes in."
}
],
"description": "Monitors a spreadsheet for changes, then announces those changes in Discord.",
"example": "newtracker #channel 1a2b3c4d5e1a2b3c4d5e"
},
{
"command": "trackers",
"permission_level": 3,
"arguments": [
],
"description": "Lists all active trackers.",
"example": "trackers"
},
{
"command": "deletetracker",
"permission_level": 3,
"arguments": [
{
"name": "document_id",
"required": true,
"type": "string",
"description": "The spreadsheet to delete."
}
],
"description": "Deletes the tracker for the specified spreadsheet.",
"example": "trackers 1a2b3c4d5e1a2b3c4d5e"
}
]
},
{
"category": "example",
"commands": [
{
"command": "example",
"permission_level": 0,
"arguments": [
{
"name": "example",
"required": true,
"type": "example",
"description": "example"
}
],
"description": "example",
"example": "example"
}
]
}
]