-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
74 lines (72 loc) · 1.74 KB
/
sidebars.ts
File metadata and controls
74 lines (72 loc) · 1.74 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
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs";
const sidebars: SidebarsConfig = {
userGuideSidebar: [
{
type: "category",
label: "Getting started",
link: { type: "doc", id: "getting-started/index" },
items: ["getting-started/ui", "getting-started/api"],
},
{
type: "category",
label: "User Guide",
items: [
"user-guide/reader-setup",
"user-guide/asset-management",
"user-guide/location-tracking",
"user-guide/reports-exports",
"user-guide/organization-management",
],
},
],
appTourSidebar: [
"app-tour/index",
"app-tour/home",
"app-tour/inventory",
"app-tour/locate",
"app-tour/barcode",
"app-tour/assets",
"app-tour/locations",
"app-tour/reports",
"app-tour/settings",
"app-tour/help",
"app-tour/authoring",
],
apiSidebar: [
{
type: "category",
label: "API Documentation",
link: { type: "doc", id: "api/README" },
items: [
"api/quickstart",
"api/authentication",
"api/resource-identifiers",
"api/data-model",
"api/id-format",
"api/date-fields",
"api/pagination-filtering-sorting",
"api/errors",
"api/http-method-coverage",
"api/rate-limits",
"api/design-notes",
"api/versioning",
"api/changelog",
"api/webhooks",
"api/postman",
"api/private-endpoints",
],
},
],
integrationsSidebar: [
"integrations/index",
{
type: "category",
label: "Integration Guides",
items: [
"integrations/mqtt-message-format",
"integrations/fixed-reader-setup",
],
},
],
};
export default sidebars;