forked from RooCodeInc/Roo-Code-Docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebars.ts
More file actions
550 lines (548 loc) · 24.6 KB
/
sidebars.ts
File metadata and controls
550 lines (548 loc) · 24.6 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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
import type {SidebarsConfig} from '@docusaurus/plugin-content-docs';
const sidebars: SidebarsConfig = {
tutorialSidebar: [
'index',
{
type: 'category',
label: 'Getting Started',
items: [
'getting-started/installing',
'getting-started/connecting-api-provider',
'getting-started/your-first-task',
'basic-usage/the-chat-interface',
'basic-usage/typing-your-requests',
'basic-usage/how-tools-work',
'basic-usage/context-mentions',
'basic-usage/using-modes',
'tips-and-tricks',
],
},
{
type: 'category',
label: 'Features',
collapsed: false,
collapsible: false,
items: [
'features/api-configuration-profiles',
'features/auto-approving-actions',
'features/boomerang-tasks',
'features/browser-use',
'features/checkpoints',
'features/code-actions',
'features/custom-instructions',
'features/custom-modes',
'features/fast-edits',
'features/enhance-prompt',
'features/settings-management',
'features/intelligent-context-condensing',
'features/keyboard-shortcuts',
'features/marketplace',
'features/model-temperature',
'features/concurrent-file-reads',
'features/rooignore',
'features/suggested-responses',
'features/shell-integration',
{
type: 'category',
label: 'MCP',
items: [
{
type: 'doc',
id: 'features/mcp/overview',
label: 'MCP Overview'
},
'features/mcp/using-mcp-in-roo',
'features/mcp/what-is-mcp',
'features/mcp/server-transports',
'features/mcp/mcp-vs-api',
'features/mcp/recommended-mcp-servers',
],
},
{
type: 'category',
label: 'Experimental',
items: [
'features/experimental/experimental-features',
'features/experimental/codebase-indexing',
'features/experimental/concurrent-file-edits',
'features/experimental/power-steering',
],
},
'features/more-features',
],
},
{
type: 'category',
label: 'Advanced Usage',
items: [
{
type: 'category',
label: 'Available Tools',
items: [
'advanced-usage/available-tools/tool-use-overview',
'advanced-usage/available-tools/access-mcp-resource',
'advanced-usage/available-tools/apply-diff',
'advanced-usage/available-tools/ask-followup-question',
'advanced-usage/available-tools/attempt-completion',
'advanced-usage/available-tools/browser-action',
'advanced-usage/available-tools/codebase-search',
'advanced-usage/available-tools/execute-command',
'advanced-usage/available-tools/insert-content',
'advanced-usage/available-tools/list-code-definition-names',
'advanced-usage/available-tools/list-files',
'advanced-usage/available-tools/new-task',
'advanced-usage/available-tools/read-file',
'advanced-usage/available-tools/search-files',
'advanced-usage/available-tools/search-and-replace',
'advanced-usage/available-tools/switch-mode',
'advanced-usage/available-tools/use-mcp-tool',
'advanced-usage/available-tools/write-to-file',
],
},
'advanced-usage/context-poisoning',
'advanced-usage/large-projects',
'advanced-usage/local-models',
'advanced-usage/local-development-setup',
'advanced-usage/prompt-engineering',
'advanced-usage/prompt-structure',
'advanced-usage/rate-limits-costs',
'advanced-usage/footgun-prompting',
'advanced-usage/roo-code-nightly',
],
},
{
type: 'category',
label: 'Model Providers',
items: [
'providers/anthropic',
'providers/claude-code',
'providers/bedrock',
'providers/deepseek',
'providers/chutes',
'providers/gemini',
'providers/glama',
'providers/groq',
'providers/human-relay',
'providers/lmstudio',
'providers/litellm',
'providers/mistral',
'providers/ollama',
'providers/openai',
'providers/openai-compatible',
'providers/openrouter',
'providers/requesty',
'providers/unbound',
'providers/vertex',
'providers/vscode-lm',
'providers/xai',
]
},
{
type: 'category',
label: 'FAQ',
items: [
'faq',
],
},
'tutorial-videos',
{
type: 'link',
label: 'Contributing (GitHub)',
href: 'https://github.com/RooCodeInc/Roo-Code/blob/main/CONTRIBUTING.md',
},
{
type: 'category',
label: 'Community',
items: [
'community/index',
{
type: 'category',
label: 'Projects',
items: [
'community/sparc',
'community/memory-bank',
'community/tips-and-tricks',
'community/dynamic-rules',
'community/roo-commander',
'community/maestro',
'community/roocabulary',
],
},
{
type: 'category',
label: 'Custom Modes Gallery',
items: [
'community/custom-modes/jest-test-engineer',
'community/custom-modes/research-mode',
'community/custom-modes/vibe-mode',
'community/custom-modes/documentation-writer',
'community/custom-modes/user-story-creator',
'community/custom-modes/junior-developer-code-reviewer',
'community/custom-modes/senior-developer-code-reviewer',
'community/custom-modes/orchestrator',
'community/custom-modes/advanced-orchestrator',
],
},
],
},
{
type: 'category',
label: 'Update Notes',
items: [
'update-notes/index',
{
type: 'category',
label: '3.21',
items: [
{ type: 'doc', id: 'update-notes/v3.21', label: '3.21 Combined' },
{ type: 'doc', id: 'update-notes/v3.21.5', label: '3.21.5' },
{ type: 'doc', id: 'update-notes/v3.21.4', label: '3.21.4' },
{ type: 'doc', id: 'update-notes/v3.21.3', label: '3.21.3' },
{ type: 'doc', id: 'update-notes/v3.21.2', label: '3.21.2' },
{ type: 'doc', id: 'update-notes/v3.21.1', label: '3.21.1' },
{ type: 'doc', id: 'update-notes/v3.21.0', label: '3.21.0' },
],
},
{
type: 'category',
label: '3.20',
items: [
{ type: 'doc', id: 'update-notes/v3.20', label: '3.20 Combined' },
{ type: 'doc', id: 'update-notes/v3.20.3', label: '3.20.3' },
{ type: 'doc', id: 'update-notes/v3.20.2', label: '3.20.2' },
{ type: 'doc', id: 'update-notes/v3.20.1', label: '3.20.1' },
{ type: 'doc', id: 'update-notes/v3.20.0', label: '3.20.0' },
],
},
{
type: 'category',
label: '3.19',
items: [
{ type: 'doc', id: 'update-notes/v3.19', label: '3.19 Combined' },
{ type: 'doc', id: 'update-notes/v3.19.0', label: '3.19.0' },
{ type: 'doc', id: 'update-notes/v3.19.1', label: '3.19.1' },
{ type: 'doc', id: 'update-notes/v3.19.2', label: '3.19.2' },
{ type: 'doc', id: 'update-notes/v3.19.3', label: '3.19.3' },
{ type: 'doc', id: 'update-notes/v3.19.4', label: '3.19.4' },
{ type: 'doc', id: 'update-notes/v3.19.5', label: '3.19.5' },
{ type: 'doc', id: 'update-notes/v3.19.6', label: '3.19.6' },
{ type: 'doc', id: 'update-notes/v3.19.7', label: '3.19.7' },
],
},
{
type: 'category',
label: '3.18',
items: [
{ type: 'doc', id: 'update-notes/v3.18', label: '3.18 Combined' },
{ type: 'doc', id: 'update-notes/v3.18.0', label: '3.18.0' },
{ type: 'doc', id: 'update-notes/v3.18.1', label: '3.18.1' },
{ type: 'doc', id: 'update-notes/v3.18.2', label: '3.18.2' },
{ type: 'doc', id: 'update-notes/v3.18.3', label: '3.18.3' },
{ type: 'doc', id: 'update-notes/v3.18.4', label: '3.18.4' },
{ type: 'doc', id: 'update-notes/v3.18.5', label: '3.18.5' },
],
},
{
type: 'category',
label: '3.17',
items: [
{ type: 'doc', id: 'update-notes/v3.17', label: '3.17 Combined' },
{ type: 'doc', id: 'update-notes/v3.17.0', label: '3.17.0' },
{ type: 'doc', id: 'update-notes/v3.17.1', label: '3.17.1' },
{ type: 'doc', id: 'update-notes/v3.17.2', label: '3.17.2' },
],
},
{
type: 'category',
label: '3.16',
items: [
{ type: 'doc', id: 'update-notes/v3.16', label: '3.16 Combined' },
{ type: 'doc', id: 'update-notes/v3.16.0', label: '3.16.0' },
{ type: 'doc', id: 'update-notes/v3.16.1', label: '3.16.1' },
{ type: 'doc', id: 'update-notes/v3.16.2', label: '3.16.2' },
{ type: 'doc', id: 'update-notes/v3.16.3', label: '3.16.3' },
{ type: 'doc', id: 'update-notes/v3.16.4', label: '3.16.4' },
{ type: 'doc', id: 'update-notes/v3.16.5', label: '3.16.5' },
{ type: 'doc', id: 'update-notes/v3.16.6', label: '3.16.6' },
],
},
{
type: 'category',
label: '3.15',
items: [
{ type: 'doc', id: 'update-notes/v3.15', label: '3.15 Combined' },
{ type: 'doc', id: 'update-notes/v3.15.0', label: '3.15.0' },
{ type: 'doc', id: 'update-notes/v3.15.1', label: '3.15.1' },
{ type: 'doc', id: 'update-notes/v3.15.2', label: '3.15.2' },
{ type: 'doc', id: 'update-notes/v3.15.3', label: '3.15.3' },
{ type: 'doc', id: 'update-notes/v3.15.4', label: '3.15.4' },
{ type: 'doc', id: 'update-notes/v3.15.5', label: '3.15.5' },
],
},
{
type: 'category',
label: '3.14',
items: [
{ type: 'doc', id: 'update-notes/v3.14', label: '3.14 Combined' },
{ type: 'doc', id: 'update-notes/v3.14.0', label: '3.14.0' },
{ type: 'doc', id: 'update-notes/v3.14.1', label: '3.14.1' },
{ type: 'doc', id: 'update-notes/v3.14.2', label: '3.14.2' },
{ type: 'doc', id: 'update-notes/v3.14.3', label: '3.14.3' },
],
},
{
type: 'category',
label: '3.13',
items: [
{ type: 'doc', id: 'update-notes/v3.13', label: '3.13 Combined' },
{ type: 'doc', id: 'update-notes/v3.13.0', label: '3.13.0' },
{ type: 'doc', id: 'update-notes/v3.13.1', label: '3.13.1' },
{ type: 'doc', id: 'update-notes/v3.13.2', label: '3.13.2' },
],
},
{
type: 'category',
label: '3.12',
items: [
{ type: 'doc', id: 'update-notes/v3.12', label: '3.12 Combined' },
{ type: 'doc', id: 'update-notes/v3.12.0', label: '3.12.0' },
{ type: 'doc', id: 'update-notes/v3.12.1', label: '3.12.1' },
{ type: 'doc', id: 'update-notes/v3.12.2', label: '3.12.2' },
{ type: 'doc', id: 'update-notes/v3.12.3', label: '3.12.3' },
],
},
{
type: 'category',
label: '3.11',
items: [
{ type: 'doc', id: 'update-notes/v3.11', label: '3.11 Combined' },
{ type: 'doc', id: 'update-notes/v3.11.0', label: '3.11.0' },
{ type: 'doc', id: 'update-notes/v3.11.1', label: '3.11.1' },
{ type: 'doc', id: 'update-notes/v3.11.2', label: '3.11.2' },
{ type: 'doc', id: 'update-notes/v3.11.3', label: '3.11.3' },
{ type: 'doc', id: 'update-notes/v3.11.4', label: '3.11.4' },
{ type: 'doc', id: 'update-notes/v3.11.5', label: '3.11.5' },
{ type: 'doc', id: 'update-notes/v3.11.6', label: '3.11.6' },
{ type: 'doc', id: 'update-notes/v3.11.7', label: '3.11.7' },
{ type: 'doc', id: 'update-notes/v3.11.8', label: '3.11.8' },
{ type: 'doc', id: 'update-notes/v3.11.9', label: '3.11.9' },
{ type: 'doc', id: 'update-notes/v3.11.10', label: '3.11.10' },
{ type: 'doc', id: 'update-notes/v3.11.11', label: '3.11.11' },
{ type: 'doc', id: 'update-notes/v3.11.12', label: '3.11.12' },
{ type: 'doc', id: 'update-notes/v3.11.13', label: '3.11.13' },
{ type: 'doc', id: 'update-notes/v3.11.14', label: '3.11.14' },
{ type: 'doc', id: 'update-notes/v3.11.15', label: '3.11.15' },
{ type: 'doc', id: 'update-notes/v3.11.16', label: '3.11.16' },
{ type: 'doc', id: 'update-notes/v3.11.17', label: '3.11.17' },
],
},
{
type: 'category',
label: '3.10',
items: [
{ type: 'doc', id: 'update-notes/v3.10', label: '3.10 Combined' },
{ type: 'doc', id: 'update-notes/v3.10.0', label: '3.10.0' },
{ type: 'doc', id: 'update-notes/v3.10.1', label: '3.10.1' },
{ type: 'doc', id: 'update-notes/v3.10.2', label: '3.10.2' },
{ type: 'doc', id: 'update-notes/v3.10.3', label: '3.10.3' },
{ type: 'doc', id: 'update-notes/v3.10.4', label: '3.10.4' },
{ type: 'doc', id: 'update-notes/v3.10.5', label: '3.10.5' },
],
},
{
type: 'category',
label: '3.9',
items: [
{ type: 'doc', id: 'update-notes/v3.9', label: '3.9 Combined' },
{ type: 'doc', id: 'update-notes/v3.9.0', label: '3.9.0' },
{ type: 'doc', id: 'update-notes/v3.9.1', label: '3.9.1' },
{ type: 'doc', id: 'update-notes/v3.9.2', label: '3.9.2' },
],
},
{
type: 'category',
label: '3.8',
items: [
{ type: 'doc', id: 'update-notes/v3.8', label: '3.8 Combined' },
{ type: 'doc', id: 'update-notes/v3.8.0', label: '3.8.0' },
{ type: 'doc', id: 'update-notes/v3.8.1', label: '3.8.1' },
{ type: 'doc', id: 'update-notes/v3.8.2', label: '3.8.2' },
{ type: 'doc', id: 'update-notes/v3.8.3', label: '3.8.3' },
{ type: 'doc', id: 'update-notes/v3.8.4', label: '3.8.4' },
{ type: 'doc', id: 'update-notes/v3.8.5', label: '3.8.5' },
{ type: 'doc', id: 'update-notes/v3.8.6', label: '3.8.6' },
],
},
{
type: 'category',
label: '3.7',
items: [
{ type: 'doc', id: 'update-notes/v3.7', label: '3.7 Combined' },
{ type: 'doc', id: 'update-notes/v3.7.0', label: '3.7.0' },
{ type: 'doc', id: 'update-notes/v3.7.1', label: '3.7.1' },
{ type: 'doc', id: 'update-notes/v3.7.2', label: '3.7.2' },
{ type: 'doc', id: 'update-notes/v3.7.3', label: '3.7.3' },
{ type: 'doc', id: 'update-notes/v3.7.4', label: '3.7.4' },
{ type: 'doc', id: 'update-notes/v3.7.5', label: '3.7.5' },
{ type: 'doc', id: 'update-notes/v3.7.6', label: '3.7.6' },
{ type: 'doc', id: 'update-notes/v3.7.7', label: '3.7.7' },
{ type: 'doc', id: 'update-notes/v3.7.8', label: '3.7.8' },
{ type: 'doc', id: 'update-notes/v3.7.9', label: '3.7.9' },
{ type: 'doc', id: 'update-notes/v3.7.10', label: '3.7.10' },
{ type: 'doc', id: 'update-notes/v3.7.11', label: '3.7.11' },
{ type: 'doc', id: 'update-notes/v3.7.12', label: '3.7.12' },
],
},
{
type: 'category',
label: '3.3',
items: [
{ type: 'doc', id: 'update-notes/v3.3', label: '3.3 Combined' },
{ type: 'doc', id: 'update-notes/v3.3.0', label: '3.3.0' },
{ type: 'doc', id: 'update-notes/v3.3.1', label: '3.3.1' },
{ type: 'doc', id: 'update-notes/v3.3.2', label: '3.3.2' },
{ type: 'doc', id: 'update-notes/v3.3.3', label: '3.3.3' },
{ type: 'doc', id: 'update-notes/v3.3.4', label: '3.3.4' },
{ type: 'doc', id: 'update-notes/v3.3.5', label: '3.3.5' },
{ type: 'doc', id: 'update-notes/v3.3.6', label: '3.3.6' },
{ type: 'doc', id: 'update-notes/v3.3.7', label: '3.3.7' },
{ type: 'doc', id: 'update-notes/v3.3.8', label: '3.3.8' },
{ type: 'doc', id: 'update-notes/v3.3.9', label: '3.3.9' },
{ type: 'doc', id: 'update-notes/v3.3.10', label: '3.3.10' },
{ type: 'doc', id: 'update-notes/v3.3.11', label: '3.3.11' },
{ type: 'doc', id: 'update-notes/v3.3.12', label: '3.3.12' },
{ type: 'doc', id: 'update-notes/v3.3.13', label: '3.3.13' },
{ type: 'doc', id: 'update-notes/v3.3.14', label: '3.3.14' },
{ type: 'doc', id: 'update-notes/v3.3.15', label: '3.3.15' },
{ type: 'doc', id: 'update-notes/v3.3.16', label: '3.3.16' },
{ type: 'doc', id: 'update-notes/v3.3.17', label: '3.3.17' },
{ type: 'doc', id: 'update-notes/v3.3.18', label: '3.3.18' },
{ type: 'doc', id: 'update-notes/v3.3.19', label: '3.3.19' },
{ type: 'doc', id: 'update-notes/v3.3.20', label: '3.3.20' },
{ type: 'doc', id: 'update-notes/v3.3.21', label: '3.3.21' },
{ type: 'doc', id: 'update-notes/v3.3.22', label: '3.3.22' },
{ type: 'doc', id: 'update-notes/v3.3.23', label: '3.3.23' },
{ type: 'doc', id: 'update-notes/v3.3.24', label: '3.3.24' },
{ type: 'doc', id: 'update-notes/v3.3.25', label: '3.3.25' },
{ type: 'doc', id: 'update-notes/v3.3.26', label: '3.3.26' },
],
},
{
type: 'category',
label: '3.1',
items: [
{ type: 'doc', id: 'update-notes/v3.1', label: '3.1 Combined' },
{ type: 'doc', id: 'update-notes/v3.1.0', label: '3.1.0' },
{ type: 'doc', id: 'update-notes/v3.1.1', label: '3.1.1' },
{ type: 'doc', id: 'update-notes/v3.1.2', label: '3.1.2' },
{ type: 'doc', id: 'update-notes/v3.1.3', label: '3.1.3' },
{ type: 'doc', id: 'update-notes/v3.1.4', label: '3.1.4' }, // Includes 3.1.5 fix
{ type: 'doc', id: 'update-notes/v3.1.6', label: '3.1.6' },
{ type: 'doc', id: 'update-notes/v3.1.7', label: '3.1.7' },
],
},
{
type: 'category',
label: '3.0',
items: [
{ type: 'doc', id: 'update-notes/v3.0', label: '3.0 Combined' },
{ type: 'doc', id: 'update-notes/v3.0.0', label: '3.0.0' },
{ type: 'doc', id: 'update-notes/v3.0.1', label: '3.0.1' },
{ type: 'doc', id: 'update-notes/v3.0.2', label: '3.0.2' },
{ type: 'doc', id: 'update-notes/v3.0.3', label: '3.0.3' },
],
},
{
type: 'category',
label: '3.2',
items: [
{ type: 'doc', id: 'update-notes/v3.2', label: '3.2 Combined' },
{ type: 'doc', id: 'update-notes/v3.2.0', label: '3.2.0' }, // Includes 3.2.1, 3.2.2
{ type: 'doc', id: 'update-notes/v3.2.3', label: '3.2.3' },
{ type: 'doc', id: 'update-notes/v3.2.4', label: '3.2.4' },
{ type: 'doc', id: 'update-notes/v3.2.5', label: '3.2.5' },
{ type: 'doc', id: 'update-notes/v3.2.6', label: '3.2.6' },
{ type: 'doc', id: 'update-notes/v3.2.7', label: '3.2.7' },
{ type: 'doc', id: 'update-notes/v3.2.8', label: '3.2.8' },
],
},
{
type: 'category',
label: '2.2',
items: [
{ type: 'doc', id: 'update-notes/v2.2', label: '2.2 Combined' },
{ type: 'doc', id: 'update-notes/v2.2.0', label: '2.2.0' },
{ type: 'doc', id: 'update-notes/v2.2.1', label: '2.2.1' },
{ type: 'doc', id: 'update-notes/v2.2.2', label: '2.2.2' },
{ type: 'doc', id: 'update-notes/v2.2.3', label: '2.2.3' },
{ type: 'doc', id: 'update-notes/v2.2.4', label: '2.2.4' },
{ type: 'doc', id: 'update-notes/v2.2.5', label: '2.2.5' },
{ type: 'doc', id: 'update-notes/v2.2.6', label: '2.2.6' }, // Includes 2.2.7-2.2.10
{ type: 'doc', id: 'update-notes/v2.2.11', label: '2.2.11' },
{ type: 'doc', id: 'update-notes/v2.2.12', label: '2.2.12' },
{ type: 'doc', id: 'update-notes/v2.2.13', label: '2.2.13' },
{ type: 'doc', id: 'update-notes/v2.2.14', label: '2.2.14' }, // Includes 2.2.15
{ type: 'doc', id: 'update-notes/v2.2.16', label: '2.2.16' },
{ type: 'doc', id: 'update-notes/v2.2.17', label: '2.2.17' },
{ type: 'doc', id: 'update-notes/v2.2.18', label: '2.2.18' },
{ type: 'doc', id: 'update-notes/v2.2.19', label: '2.2.19' },
{ type: 'doc', id: 'update-notes/v2.2.20', label: '2.2.20' },
{ type: 'doc', id: 'update-notes/v2.2.21', label: '2.2.21' },
{ type: 'doc', id: 'update-notes/v2.2.22', label: '2.2.22' },
{ type: 'doc', id: 'update-notes/v2.2.23', label: '2.2.23' },
{ type: 'doc', id: 'update-notes/v2.2.24', label: '2.2.24' },
{ type: 'doc', id: 'update-notes/v2.2.25', label: '2.2.25' },
{ type: 'doc', id: 'update-notes/v2.2.26', label: '2.2.26' },
{ type: 'doc', id: 'update-notes/v2.2.27', label: '2.2.27' },
{ type: 'doc', id: 'update-notes/v2.2.28', label: '2.2.28' },
{ type: 'doc', id: 'update-notes/v2.2.29', label: '2.2.29' },
{ type: 'doc', id: 'update-notes/v2.2.30', label: '2.2.30' },
{ type: 'doc', id: 'update-notes/v2.2.31', label: '2.2.31' },
{ type: 'doc', id: 'update-notes/v2.2.32', label: '2.2.32' },
{ type: 'doc', id: 'update-notes/v2.2.33', label: '2.2.33' },
{ type: 'doc', id: 'update-notes/v2.2.34', label: '2.2.34' },
{ type: 'doc', id: 'update-notes/v2.2.35', label: '2.2.35' },
{ type: 'doc', id: 'update-notes/v2.2.36', label: '2.2.36' }, // Includes 2.2.37
{ type: 'doc', id: 'update-notes/v2.2.38', label: '2.2.38' },
{ type: 'doc', id: 'update-notes/v2.2.39', label: '2.2.39' },
{ type: 'doc', id: 'update-notes/v2.2.40', label: '2.2.40' },
{ type: 'doc', id: 'update-notes/v2.2.41', label: '2.2.41' },
{ type: 'doc', id: 'update-notes/v2.2.42', label: '2.2.42' },
{ type: 'doc', id: 'update-notes/v2.2.43', label: '2.2.43' },
{ type: 'doc', id: 'update-notes/v2.2.44', label: '2.2.44' },
{ type: 'doc', id: 'update-notes/v2.2.45', label: '2.2.45' },
{ type: 'doc', id: 'update-notes/v2.2.46', label: '2.2.46' },
],
},
{
type: 'category',
label: '2.1',
items: [
{ type: 'doc', id: 'update-notes/v2.1', label: '2.1 Combined' },
{ type: 'doc', id: 'update-notes/v2.1.2', label: '2.1.2' },
{ type: 'doc', id: 'update-notes/v2.1.3', label: '2.1.3' },
{ type: 'doc', id: 'update-notes/v2.1.4', label: '2.1.4' },
{ type: 'doc', id: 'update-notes/v2.1.5', label: '2.1.5' },
{ type: 'doc', id: 'update-notes/v2.1.6', label: '2.1.6' },
{ type: 'doc', id: 'update-notes/v2.1.7', label: '2.1.7' },
{ type: 'doc', id: 'update-notes/v2.1.8', label: '2.1.8' },
{ type: 'doc', id: 'update-notes/v2.1.9', label: '2.1.9' },
{ type: 'doc', id: 'update-notes/v2.1.10', label: '2.1.10' },
{ type: 'doc', id: 'update-notes/v2.1.11', label: '2.1.11' },
{ type: 'doc', id: 'update-notes/v2.1.12', label: '2.1.12' },
{ type: 'doc', id: 'update-notes/v2.1.13', label: '2.1.13' },
{ type: 'doc', id: 'update-notes/v2.1.14', label: '2.1.14' },
{ type: 'doc', id: 'update-notes/v2.1.15', label: '2.1.15' },
{ type: 'doc', id: 'update-notes/v2.1.16', label: '2.1.16' },
{ type: 'doc', id: 'update-notes/v2.1.17', label: '2.1.17' },
{ type: 'doc', id: 'update-notes/v2.1.18', label: '2.1.18' },
{ type: 'doc', id: 'update-notes/v2.1.19', label: '2.1.19' },
{ type: 'doc', id: 'update-notes/v2.1.20', label: '2.1.20' },
{ type: 'doc', id: 'update-notes/v2.1.21', label: '2.1.21' },
],
},
],
},
],
};
export default sidebars;