-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.json
More file actions
120 lines (120 loc) · 2.61 KB
/
Copy pathdocs.json
File metadata and controls
120 lines (120 loc) · 2.61 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"$schema": "https://mintlify.com/docs.json",
"theme": "mint",
"name": "Cloak Bot SDK",
"colors": {
"primary": "#2e76e2",
"light": "#57aaf2",
"dark": "#234585"
},
"appearance": {
"default": "dark"
},
"fonts": {
"family": "Source Sans 3"
},
"favicon": "/favicon.svg",
"logo": {
"light": "/logo/light.svg",
"dark": "/logo/dark.svg",
"href": "https://cloak.chat"
},
"navigation": {
"groups": [
{
"group": "Get started",
"pages": [
"index",
"quickstart"
]
},
{
"group": "Core concepts",
"pages": [
"concepts/how-bots-work",
"concepts/permissions",
"concepts/message-delivery",
"concepts/keys-and-keystore",
"concepts/connection-lifecycle"
]
},
{
"group": "Guides",
"pages": [
"guides/sending-messages",
"guides/reactions",
"guides/editing-and-pinning",
"guides/message-history",
"guides/moderation",
"guides/channels-and-groups",
"guides/members-and-roles",
"guides/guild-handle",
"guides/handling-errors"
]
},
{
"group": "Examples",
"pages": [
"examples/welcome-bot",
"examples/moderation-bot"
]
},
{
"group": "API reference",
"pages": [
"api-reference/client",
"api-reference/events",
"api-reference/types",
"api-reference/errors",
"api-reference/permissions"
]
},
{
"group": "Legal",
"pages": [
"legal/developer-terms"
]
}
]
},
"navbar": {
"primary": {
"type": "button",
"label": "Open Cloak",
"href": "https://cloak.chat"
}
},
"contextual": {
"options": [
"copy",
"view",
"chatgpt",
"claude"
]
},
"footer": {
"links": [
{
"header": "Cloak",
"items": [
{ "label": "Homepage", "href": "https://cloak.chat" },
{ "label": "Quickstart", "href": "/quickstart" }
]
},
{
"header": "SDK",
"items": [
{ "label": "API reference", "href": "/api-reference/client" },
{ "label": "Permissions", "href": "/api-reference/permissions" }
]
},
{
"header": "Legal",
"items": [
{ "label": "Bot Developer Terms", "href": "/legal/developer-terms" },
{ "label": "Privacy Policy", "href": "https://cloak.chat/privacy" }
]
}
]
}
}