-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathsidebars.ts
More file actions
213 lines (202 loc) · 4.89 KB
/
Copy pathsidebars.ts
File metadata and controls
213 lines (202 loc) · 4.89 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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
// sidebars.ts
import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"
import { SidebarItemConfig } from "@docusaurus/plugin-content-docs/src/sidebars/types"
type SidebarItemsConfig = SidebarItemConfig[]
// sidebars.ts
//import type { SidebarsConfig } from "@docusaurus/plugin-content-docs"
// adjust imports depending on how those files export
import oelSidebar from "./sidebars-oel"
import networkSidebar from "./sidebars-network"
import ossSidebar from "./sidebars-oss"
import integratesSidebar from "./sidebars-integrates"
import agenticSidebar from "./sidebars-agentic"
import ciamSidebar from "./sidebars-ciam"
import b2bSidebar from "./sidebars-b2b"
import quickstartsSidebar, {
quickstartsNetworkSidebar,
quickstartsNetworkOnlySidebar,
quickstartsOelSidebar,
quickstartsOssSidebar,
} from "./sidebars-quickstarts"
const cli: SidebarItemsConfig = [
{
type: "category",
label: "Ory CLI reference",
collapsed: false,
collapsible: false,
link: {
type: "generated-index",
slug: "/category/ory-cli-reference",
},
items: [
"guides/cli/installation",
"guides/cli/cli-basics",
"guides/cli/identity-cli",
"guides/cli/oauth2-cli",
"guides/cli/configure-permission-service",
"guides/cli/proxy-and-tunnel",
"guides/cli/config-with-cli",
{
type: "category",
label: "CLI commands reference",
link: {
type: "generated-index",
},
items: [
{
type: "autogenerated",
dirName: "cli",
},
],
},
],
},
]
const api: SidebarItemsConfig = [
"reference/api",
"ecosystem/api-design",
{
type: "category",
label: "Operations",
collapsed: false,
collapsible: false,
link: {
type: "generated-index",
slug: "/category/operations-reference",
},
items: [
"concepts/personal-access-token",
"guides/cors",
"guides/api-rest-pagination",
{
type: "category",
label: "Rate limits",
link: {
type: "doc",
id: "guides/rate-limits",
},
items: [
"guides/rate-limits-legacy",
{
type: "category",
label: "Rate limits - New",
link: {
type: "doc",
id: "guides/rate-limits-new",
},
items: [
"guides/rate-limits-project",
"guides/rate-limits-endpoint",
],
},
],
},
"guides/load-performance-testing",
"guides/ip-allowlist",
"api/eventual-consistency",
"kratos/reference/jsonnet",
"guides/user-impersonation",
],
},
]
const troubleshooting: SidebarItemsConfig = [
{
type: "category",
label: "Troubleshooting",
collapsible: false,
collapsed: false,
link: {
type: "generated-index",
slug: "/category/troubleshooting-reference",
},
items: [
{
type: "autogenerated",
dirName: "troubleshooting",
},
"oauth2-oidc/identity-provider-integration-settings",
"guides/upgrade/sdk-v1",
"hydra/debug",
"hydra/debug/logout",
"hydra/debug/token-endpoint-auth-method",
],
},
]
const security: SidebarItemsConfig = [
{
type: "category",
label: "Security and compliance",
collapsible: false,
collapsed: false,
link: {
type: "generated-index",
slug: "/category/security-compliance",
},
items: [
{
type: "autogenerated",
dirName: "security-compliance",
},
"kratos/concepts/security",
"concepts/password-policy",
"hydra/security-architecture",
],
},
]
const elements: SidebarItemsConfig = [
"elements/index",
{
type: "category",
label: "Guides",
collapsible: false,
link: {
type: "generated-index",
title: "Quickstarts",
description: "Learn how to use Ory Elements in your application!",
slug: "/elements/guides",
keywords: ["guides"],
},
items: [
{
type: "autogenerated",
dirName: "elements/guides",
},
],
},
{
type: "category",
label: "Reference",
collapsible: false,
link: {
type: "generated-index",
title: "Ory Elements Reference",
description: "Learn about the most important Ory Elements concepts!",
slug: "/elements/reference",
keywords: ["guides"],
},
items: [
...require("./docs/elements/reference/typedoc-sidebar.ts").items,
"elements/css-reference",
],
},
]
const sidebars: SidebarsConfig = {
networkSidebar,
oelSidebar,
ossSidebar,
agenticSidebar,
integratesSidebar,
ciamSidebar,
b2bSidebar,
quickstartsSidebar,
quickstartsNetworkSidebar,
quickstartsNetworkOnlySidebar,
quickstartsOelSidebar,
quickstartsOssSidebar,
api,
cli,
troubleshooting,
security,
elements,
}
export default sidebars