1import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
2
3const sidebars: SidebarsConfig = {
4 docs: [{ type: 'autogenerated', dirName: '.' }],
5
6 api: [
7 'api/overview',
8 'api/arrow-flight-sql/index',
9 'api/jdbc/index',
10 'api/odbc/index',
11 'api/auth/index',
12 'api/tls/index',
13 {
14 type: 'category',
15 label: 'HTTP',
16 collapsible: true,
17 collapsed: false,
18 items: [{ type: 'autogenerated', dirName: 'api/HTTP' }],
19 },
20 ],
21};
22
23export default sidebars;
24
1import type { SidebarsConfig } from '@docusaurus/plugin-content-docs';
2
3const sidebars: SidebarsConfig = {
4 docs: [{ type: 'autogenerated', dirName: '.' }],
5
6 api: [
7 'api/overview',
8 'api/arrow-flight-sql/index',
9 'api/jdbc/index',
10 'api/odbc/index',
11 'api/auth/index',
12 'api/tls/index',
13 {
14 type: 'category',
15 label: 'HTTP',
16 collapsible: true,
17 collapsed: false,
18 items: [{ type: 'autogenerated', dirName: 'api/HTTP' }],
19 },
20 ],
21};
22
23export default sidebars;
24