blume 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/CHANGELOG.md +29 -0
  2. package/dist/cli/index.js +441 -259
  3. package/dist/cli/index.js.map +12 -11
  4. package/dist/types/core/config-input.d.ts +27 -8
  5. package/dist/types/core/data.d.ts +12 -0
  6. package/dist/types/core/i18n-ui.d.ts +136 -136
  7. package/dist/types/core/schema.d.ts +420 -350
  8. package/dist/types/core/types.d.ts +10 -0
  9. package/dist/types/openapi/references.d.ts +12 -7
  10. package/docs/advanced/api-reference.mdx +11 -3
  11. package/docs/configuration/seo.mdx +20 -1
  12. package/docs/content/components.mdx +1 -2
  13. package/docs/content/navigation.mdx +10 -0
  14. package/docs/content/syntax.mdx +116 -4
  15. package/package.json +1 -1
  16. package/skills/blume-migrate/SKILL.md +170 -0
  17. package/skills/blume-migrate/assets/oxfmt@0.55.0.patch +20 -0
  18. package/skills/blume-migrate/references/docusaurus.md +95 -0
  19. package/skills/blume-migrate/references/fumadocs.md +95 -0
  20. package/skills/blume-migrate/references/mintlify.md +155 -0
  21. package/skills/blume-migrate/references/monorepo.md +224 -0
  22. package/skills/blume-migrate/references/nextra.md +76 -0
  23. package/skills/blume-migrate/references/starlight.md +116 -0
  24. package/skills/blume-migrate/scripts/mintlify-codemod.mjs +466 -0
  25. package/src/astro/component-slots.ts +3 -2
  26. package/src/astro/generate.ts +82 -23
  27. package/src/astro/templates.ts +93 -34
  28. package/src/components/content/Callout.astro +8 -2
  29. package/src/components/content/Prompt.astro +25 -13
  30. package/src/components/layout/Header.astro +4 -8
  31. package/src/components/layout/Logo.astro +13 -1
  32. package/src/components/layout/PageFeedback.astro +1 -1
  33. package/src/components/layout/PageLayout.astro +4 -8
  34. package/src/components/layout/Pagination.astro +6 -6
  35. package/src/components/layout/RootLayout.astro +4 -8
  36. package/src/components/layout/Search.astro +1 -1
  37. package/src/components/layout/nav-utils.ts +9 -7
  38. package/src/core/config-input.ts +29 -8
  39. package/src/core/data.ts +9 -1
  40. package/src/core/navigation.ts +55 -13
  41. package/src/core/schema.ts +17 -1
  42. package/src/core/sources/watch.ts +5 -0
  43. package/src/core/types.ts +10 -0
  44. package/src/markdown/index.ts +2 -0
  45. package/src/markdown/language-icon.ts +2 -1
  46. package/src/markdown/table-wrap.ts +43 -0
  47. package/src/og/card.ts +39 -12
  48. package/src/og/index.ts +1 -1
  49. package/src/og/logo.ts +21 -0
  50. package/src/openapi/references.ts +19 -16
  51. package/src/theme/entry.ts +50 -5
@@ -43,12 +43,12 @@ declare const pageMetaBaseSchema: z.ZodObject<{
43
43
  version: z.ZodOptional<z.ZodString>;
44
44
  }, "strict", z.ZodTypeAny, {
45
45
  date?: string | undefined;
46
- category?: string | undefined;
47
46
  version?: string | undefined;
47
+ category?: string | undefined;
48
48
  }, {
49
49
  date?: string | Date | undefined;
50
- category?: string | undefined;
51
50
  version?: string | undefined;
51
+ category?: string | undefined;
52
52
  }>>;
53
53
  /** Publish date for feed-backed content like blog/changelog. */
54
54
  date: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
@@ -69,8 +69,8 @@ declare const pageMetaBaseSchema: z.ZodObject<{
69
69
  boost?: number | undefined;
70
70
  tags?: string[] | undefined;
71
71
  }, {
72
- boost?: number | undefined;
73
72
  exclude?: boolean | undefined;
73
+ boost?: number | undefined;
74
74
  tags?: string[] | undefined;
75
75
  }>>;
76
76
  seo: z.ZodDefault<z.ZodObject<{
@@ -92,19 +92,19 @@ declare const pageMetaBaseSchema: z.ZodObject<{
92
92
  title?: string | undefined;
93
93
  image?: string | undefined;
94
94
  description?: string | undefined;
95
- canonical?: string | undefined;
96
95
  x?: {
97
96
  creator?: string | undefined;
98
97
  } | undefined;
98
+ canonical?: string | undefined;
99
99
  }, {
100
100
  title?: string | undefined;
101
101
  image?: string | undefined;
102
102
  description?: string | undefined;
103
- noindex?: boolean | undefined;
104
- canonical?: string | undefined;
105
103
  x?: {
106
104
  creator?: string | undefined;
107
105
  } | undefined;
106
+ noindex?: boolean | undefined;
107
+ canonical?: string | undefined;
108
108
  }>>;
109
109
  sidebar: z.ZodDefault<z.ZodObject<{
110
110
  badge: z.ZodOptional<z.ZodString>;
@@ -115,24 +115,27 @@ declare const pageMetaBaseSchema: z.ZodObject<{
115
115
  }, "strict", z.ZodTypeAny, {
116
116
  hidden: boolean;
117
117
  icon?: string | undefined;
118
- badge?: string | undefined;
119
118
  label?: string | undefined;
120
119
  order?: number | undefined;
120
+ badge?: string | undefined;
121
121
  }, {
122
- hidden?: boolean | undefined;
123
122
  icon?: string | undefined;
124
- badge?: string | undefined;
125
123
  label?: string | undefined;
126
124
  order?: number | undefined;
125
+ hidden?: boolean | undefined;
126
+ badge?: string | undefined;
127
127
  }>>;
128
128
  slug: z.ZodOptional<z.ZodString>;
129
129
  title: z.ZodOptional<z.ZodString>;
130
130
  type: z.ZodOptional<z.ZodString>;
131
131
  }, "strict", z.ZodTypeAny, {
132
- deprecated: boolean;
133
- draft: boolean;
134
- hidden: boolean;
135
- noindex: boolean;
132
+ sidebar: {
133
+ hidden: boolean;
134
+ icon?: string | undefined;
135
+ label?: string | undefined;
136
+ order?: number | undefined;
137
+ badge?: string | undefined;
138
+ };
136
139
  search: {
137
140
  exclude: boolean;
138
141
  boost?: number | undefined;
@@ -143,21 +146,27 @@ declare const pageMetaBaseSchema: z.ZodObject<{
143
146
  title?: string | undefined;
144
147
  image?: string | undefined;
145
148
  description?: string | undefined;
146
- canonical?: string | undefined;
147
149
  x?: {
148
150
  creator?: string | undefined;
149
151
  } | undefined;
152
+ canonical?: string | undefined;
150
153
  };
151
- sidebar: {
152
- hidden: boolean;
153
- icon?: string | undefined;
154
- badge?: string | undefined;
155
- label?: string | undefined;
156
- order?: number | undefined;
157
- };
154
+ deprecated: boolean;
155
+ draft: boolean;
156
+ hidden: boolean;
157
+ noindex: boolean;
158
158
  type?: string | undefined;
159
159
  title?: string | undefined;
160
160
  date?: string | undefined;
161
+ icon?: string | undefined;
162
+ description?: string | undefined;
163
+ lastModified?: string | undefined;
164
+ slug?: string | undefined;
165
+ changelog?: {
166
+ date?: string | undefined;
167
+ version?: string | undefined;
168
+ category?: string | undefined;
169
+ } | undefined;
161
170
  authors?: string | z.objectOutputType<{
162
171
  avatar: z.ZodOptional<z.ZodString>;
163
172
  image: z.ZodOptional<z.ZodString>;
@@ -169,65 +178,56 @@ declare const pageMetaBaseSchema: z.ZodObject<{
169
178
  name: z.ZodString;
170
179
  url: z.ZodOptional<z.ZodString>;
171
180
  }, z.ZodUnknown, "strip">)[] | undefined;
172
- changelog?: {
173
- date?: string | undefined;
174
- category?: string | undefined;
175
- version?: string | undefined;
176
- } | undefined;
177
- description?: string | undefined;
178
- icon?: string | undefined;
179
- lastModified?: string | undefined;
180
- slug?: string | undefined;
181
181
  }, {
182
182
  type?: string | undefined;
183
183
  title?: string | undefined;
184
184
  date?: string | Date | undefined;
185
- authors?: string | z.objectInputType<{
186
- avatar: z.ZodOptional<z.ZodString>;
187
- image: z.ZodOptional<z.ZodString>;
188
- name: z.ZodString;
189
- url: z.ZodOptional<z.ZodString>;
190
- }, z.ZodUnknown, "strip"> | (string | z.objectInputType<{
191
- avatar: z.ZodOptional<z.ZodString>;
192
- image: z.ZodOptional<z.ZodString>;
193
- name: z.ZodString;
194
- url: z.ZodOptional<z.ZodString>;
195
- }, z.ZodUnknown, "strip">)[] | undefined;
196
- changelog?: {
197
- date?: string | Date | undefined;
198
- category?: string | undefined;
199
- version?: string | undefined;
200
- } | undefined;
201
- deprecated?: boolean | undefined;
202
- description?: string | undefined;
203
- draft?: boolean | undefined;
204
- hidden?: boolean | undefined;
205
185
  icon?: string | undefined;
186
+ description?: string | undefined;
206
187
  lastModified?: string | Date | undefined;
207
- noindex?: boolean | undefined;
188
+ slug?: string | undefined;
189
+ sidebar?: {
190
+ icon?: string | undefined;
191
+ label?: string | undefined;
192
+ order?: number | undefined;
193
+ hidden?: boolean | undefined;
194
+ badge?: string | undefined;
195
+ } | undefined;
208
196
  search?: {
209
- boost?: number | undefined;
210
197
  exclude?: boolean | undefined;
198
+ boost?: number | undefined;
211
199
  tags?: string[] | undefined;
212
200
  } | undefined;
201
+ changelog?: {
202
+ date?: string | Date | undefined;
203
+ version?: string | undefined;
204
+ category?: string | undefined;
205
+ } | undefined;
213
206
  seo?: {
214
207
  title?: string | undefined;
215
208
  image?: string | undefined;
216
209
  description?: string | undefined;
217
- noindex?: boolean | undefined;
218
- canonical?: string | undefined;
219
210
  x?: {
220
211
  creator?: string | undefined;
221
212
  } | undefined;
213
+ noindex?: boolean | undefined;
214
+ canonical?: string | undefined;
222
215
  } | undefined;
223
- sidebar?: {
224
- hidden?: boolean | undefined;
225
- icon?: string | undefined;
226
- badge?: string | undefined;
227
- label?: string | undefined;
228
- order?: number | undefined;
229
- } | undefined;
230
- slug?: string | undefined;
216
+ deprecated?: boolean | undefined;
217
+ authors?: string | z.objectInputType<{
218
+ avatar: z.ZodOptional<z.ZodString>;
219
+ image: z.ZodOptional<z.ZodString>;
220
+ name: z.ZodString;
221
+ url: z.ZodOptional<z.ZodString>;
222
+ }, z.ZodUnknown, "strip"> | (string | z.objectInputType<{
223
+ avatar: z.ZodOptional<z.ZodString>;
224
+ image: z.ZodOptional<z.ZodString>;
225
+ name: z.ZodString;
226
+ url: z.ZodOptional<z.ZodString>;
227
+ }, z.ZodUnknown, "strip">)[] | undefined;
228
+ draft?: boolean | undefined;
229
+ hidden?: boolean | undefined;
230
+ noindex?: boolean | undefined;
231
231
  }>;
232
232
  export declare const pageMetaSchema: z.ZodObject<{
233
233
  /** Post author(s) for blog/changelog content; preserved, not yet rendered. */
@@ -268,12 +268,12 @@ export declare const pageMetaSchema: z.ZodObject<{
268
268
  version: z.ZodOptional<z.ZodString>;
269
269
  }, "strict", z.ZodTypeAny, {
270
270
  date?: string | undefined;
271
- category?: string | undefined;
272
271
  version?: string | undefined;
272
+ category?: string | undefined;
273
273
  }, {
274
274
  date?: string | Date | undefined;
275
- category?: string | undefined;
276
275
  version?: string | undefined;
276
+ category?: string | undefined;
277
277
  }>>;
278
278
  /** Publish date for feed-backed content like blog/changelog. */
279
279
  date: z.ZodOptional<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodDate]>, string, string | Date>>;
@@ -294,8 +294,8 @@ export declare const pageMetaSchema: z.ZodObject<{
294
294
  boost?: number | undefined;
295
295
  tags?: string[] | undefined;
296
296
  }, {
297
- boost?: number | undefined;
298
297
  exclude?: boolean | undefined;
298
+ boost?: number | undefined;
299
299
  tags?: string[] | undefined;
300
300
  }>>;
301
301
  seo: z.ZodDefault<z.ZodObject<{
@@ -317,19 +317,19 @@ export declare const pageMetaSchema: z.ZodObject<{
317
317
  title?: string | undefined;
318
318
  image?: string | undefined;
319
319
  description?: string | undefined;
320
- canonical?: string | undefined;
321
320
  x?: {
322
321
  creator?: string | undefined;
323
322
  } | undefined;
323
+ canonical?: string | undefined;
324
324
  }, {
325
325
  title?: string | undefined;
326
326
  image?: string | undefined;
327
327
  description?: string | undefined;
328
- noindex?: boolean | undefined;
329
- canonical?: string | undefined;
330
328
  x?: {
331
329
  creator?: string | undefined;
332
330
  } | undefined;
331
+ noindex?: boolean | undefined;
332
+ canonical?: string | undefined;
333
333
  }>>;
334
334
  sidebar: z.ZodDefault<z.ZodObject<{
335
335
  badge: z.ZodOptional<z.ZodString>;
@@ -340,24 +340,27 @@ export declare const pageMetaSchema: z.ZodObject<{
340
340
  }, "strict", z.ZodTypeAny, {
341
341
  hidden: boolean;
342
342
  icon?: string | undefined;
343
- badge?: string | undefined;
344
343
  label?: string | undefined;
345
344
  order?: number | undefined;
345
+ badge?: string | undefined;
346
346
  }, {
347
- hidden?: boolean | undefined;
348
347
  icon?: string | undefined;
349
- badge?: string | undefined;
350
348
  label?: string | undefined;
351
349
  order?: number | undefined;
350
+ hidden?: boolean | undefined;
351
+ badge?: string | undefined;
352
352
  }>>;
353
353
  slug: z.ZodOptional<z.ZodString>;
354
354
  title: z.ZodOptional<z.ZodString>;
355
355
  type: z.ZodOptional<z.ZodString>;
356
356
  }, "strict", z.ZodTypeAny, {
357
- deprecated: boolean;
358
- draft: boolean;
359
- hidden: boolean;
360
- noindex: boolean;
357
+ sidebar: {
358
+ hidden: boolean;
359
+ icon?: string | undefined;
360
+ label?: string | undefined;
361
+ order?: number | undefined;
362
+ badge?: string | undefined;
363
+ };
361
364
  search: {
362
365
  exclude: boolean;
363
366
  boost?: number | undefined;
@@ -368,21 +371,27 @@ export declare const pageMetaSchema: z.ZodObject<{
368
371
  title?: string | undefined;
369
372
  image?: string | undefined;
370
373
  description?: string | undefined;
371
- canonical?: string | undefined;
372
374
  x?: {
373
375
  creator?: string | undefined;
374
376
  } | undefined;
377
+ canonical?: string | undefined;
375
378
  };
376
- sidebar: {
377
- hidden: boolean;
378
- icon?: string | undefined;
379
- badge?: string | undefined;
380
- label?: string | undefined;
381
- order?: number | undefined;
382
- };
379
+ deprecated: boolean;
380
+ draft: boolean;
381
+ hidden: boolean;
382
+ noindex: boolean;
383
383
  type?: string | undefined;
384
384
  title?: string | undefined;
385
385
  date?: string | undefined;
386
+ icon?: string | undefined;
387
+ description?: string | undefined;
388
+ lastModified?: string | undefined;
389
+ slug?: string | undefined;
390
+ changelog?: {
391
+ date?: string | undefined;
392
+ version?: string | undefined;
393
+ category?: string | undefined;
394
+ } | undefined;
386
395
  authors?: string | z.objectOutputType<{
387
396
  avatar: z.ZodOptional<z.ZodString>;
388
397
  image: z.ZodOptional<z.ZodString>;
@@ -394,65 +403,56 @@ export declare const pageMetaSchema: z.ZodObject<{
394
403
  name: z.ZodString;
395
404
  url: z.ZodOptional<z.ZodString>;
396
405
  }, z.ZodUnknown, "strip">)[] | undefined;
397
- changelog?: {
398
- date?: string | undefined;
399
- category?: string | undefined;
400
- version?: string | undefined;
401
- } | undefined;
402
- description?: string | undefined;
403
- icon?: string | undefined;
404
- lastModified?: string | undefined;
405
- slug?: string | undefined;
406
406
  }, {
407
407
  type?: string | undefined;
408
408
  title?: string | undefined;
409
409
  date?: string | Date | undefined;
410
- authors?: string | z.objectInputType<{
411
- avatar: z.ZodOptional<z.ZodString>;
412
- image: z.ZodOptional<z.ZodString>;
413
- name: z.ZodString;
414
- url: z.ZodOptional<z.ZodString>;
415
- }, z.ZodUnknown, "strip"> | (string | z.objectInputType<{
416
- avatar: z.ZodOptional<z.ZodString>;
417
- image: z.ZodOptional<z.ZodString>;
418
- name: z.ZodString;
419
- url: z.ZodOptional<z.ZodString>;
420
- }, z.ZodUnknown, "strip">)[] | undefined;
421
- changelog?: {
422
- date?: string | Date | undefined;
423
- category?: string | undefined;
424
- version?: string | undefined;
425
- } | undefined;
426
- deprecated?: boolean | undefined;
427
- description?: string | undefined;
428
- draft?: boolean | undefined;
429
- hidden?: boolean | undefined;
430
410
  icon?: string | undefined;
411
+ description?: string | undefined;
431
412
  lastModified?: string | Date | undefined;
432
- noindex?: boolean | undefined;
413
+ slug?: string | undefined;
414
+ sidebar?: {
415
+ icon?: string | undefined;
416
+ label?: string | undefined;
417
+ order?: number | undefined;
418
+ hidden?: boolean | undefined;
419
+ badge?: string | undefined;
420
+ } | undefined;
433
421
  search?: {
434
- boost?: number | undefined;
435
422
  exclude?: boolean | undefined;
423
+ boost?: number | undefined;
436
424
  tags?: string[] | undefined;
437
425
  } | undefined;
426
+ changelog?: {
427
+ date?: string | Date | undefined;
428
+ version?: string | undefined;
429
+ category?: string | undefined;
430
+ } | undefined;
438
431
  seo?: {
439
432
  title?: string | undefined;
440
433
  image?: string | undefined;
441
434
  description?: string | undefined;
442
- noindex?: boolean | undefined;
443
- canonical?: string | undefined;
444
435
  x?: {
445
436
  creator?: string | undefined;
446
437
  } | undefined;
438
+ noindex?: boolean | undefined;
439
+ canonical?: string | undefined;
447
440
  } | undefined;
448
- sidebar?: {
449
- hidden?: boolean | undefined;
450
- icon?: string | undefined;
451
- badge?: string | undefined;
452
- label?: string | undefined;
453
- order?: number | undefined;
454
- } | undefined;
455
- slug?: string | undefined;
441
+ deprecated?: boolean | undefined;
442
+ authors?: string | z.objectInputType<{
443
+ avatar: z.ZodOptional<z.ZodString>;
444
+ image: z.ZodOptional<z.ZodString>;
445
+ name: z.ZodString;
446
+ url: z.ZodOptional<z.ZodString>;
447
+ }, z.ZodUnknown, "strip"> | (string | z.objectInputType<{
448
+ avatar: z.ZodOptional<z.ZodString>;
449
+ image: z.ZodOptional<z.ZodString>;
450
+ name: z.ZodString;
451
+ url: z.ZodOptional<z.ZodString>;
452
+ }, z.ZodUnknown, "strip">)[] | undefined;
453
+ draft?: boolean | undefined;
454
+ hidden?: boolean | undefined;
455
+ noindex?: boolean | undefined;
456
456
  }>;
457
457
  export type PageMeta = z.infer<typeof pageMetaBaseSchema>;
458
458
  export type PageMetaInput = z.input<typeof pageMetaBaseSchema>;
@@ -475,14 +475,14 @@ export declare const folderMetaSchema: z.ZodObject<{
475
475
  }, "strict", z.ZodTypeAny, {
476
476
  title?: string | undefined;
477
477
  icon?: string | undefined;
478
- order?: number | undefined;
479
478
  pages?: string[] | undefined;
479
+ order?: number | undefined;
480
480
  collapsed?: boolean | undefined;
481
481
  }, {
482
482
  title?: string | undefined;
483
483
  icon?: string | undefined;
484
- order?: number | undefined;
485
484
  pages?: string[] | undefined;
485
+ order?: number | undefined;
486
486
  collapsed?: boolean | undefined;
487
487
  }>;
488
488
  export type FolderMeta = z.infer<typeof folderMetaSchema>;
@@ -672,14 +672,14 @@ declare const contentSourceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
672
672
  title?: string | undefined;
673
673
  status?: string | undefined;
674
674
  description?: string | undefined;
675
- order?: string | undefined;
676
675
  slug?: string | undefined;
676
+ order?: string | undefined;
677
677
  }, {
678
678
  title?: string | undefined;
679
679
  status?: string | undefined;
680
680
  description?: string | undefined;
681
- order?: string | undefined;
682
681
  slug?: string | undefined;
682
+ order?: string | undefined;
683
683
  }>>;
684
684
  /** Status value treated as published; others map to `draft`. Default `Published`. */
685
685
  publishedValue: z.ZodOptional<z.ZodString>;
@@ -693,8 +693,8 @@ declare const contentSourceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
693
693
  title?: string | undefined;
694
694
  status?: string | undefined;
695
695
  description?: string | undefined;
696
- order?: string | undefined;
697
696
  slug?: string | undefined;
697
+ order?: string | undefined;
698
698
  } | undefined;
699
699
  publishedValue?: string | undefined;
700
700
  }, {
@@ -706,8 +706,8 @@ declare const contentSourceSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<
706
706
  title?: string | undefined;
707
707
  status?: string | undefined;
708
708
  description?: string | undefined;
709
- order?: string | undefined;
710
709
  slug?: string | undefined;
710
+ order?: string | undefined;
711
711
  } | undefined;
712
712
  publishedValue?: string | undefined;
713
713
  }>, z.ZodObject<{
@@ -806,17 +806,17 @@ declare const aiConfigSchema: z.ZodObject<{
806
806
  enabled: z.ZodDefault<z.ZodBoolean>;
807
807
  openapi: z.ZodDefault<z.ZodBoolean>;
808
808
  }, "strict", z.ZodTypeAny, {
809
- enabled: boolean;
810
809
  openapi: boolean;
810
+ enabled: boolean;
811
811
  }, {
812
- enabled?: boolean | undefined;
813
812
  openapi?: boolean | undefined;
813
+ enabled?: boolean | undefined;
814
814
  }>]>>, {
815
- enabled: boolean;
816
815
  openapi: boolean;
816
+ enabled: boolean;
817
817
  }, boolean | {
818
- enabled?: boolean | undefined;
819
818
  openapi?: boolean | undefined;
819
+ enabled?: boolean | undefined;
820
820
  } | undefined>;
821
821
  markdownComponents: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<ComponentMarkdown, z.ZodTypeDef, ComponentMarkdown>>>;
822
822
  /** Expose the docs as an MCP server for connecting agents. */
@@ -844,8 +844,8 @@ declare const aiConfigSchema: z.ZodObject<{
844
844
  }>>;
845
845
  }, "strict", z.ZodTypeAny, {
846
846
  llmsTxt: {
847
- enabled: boolean;
848
847
  openapi: boolean;
848
+ enabled: boolean;
849
849
  };
850
850
  markdownComponents: Record<string, ComponentMarkdown>;
851
851
  mcp: {
@@ -878,8 +878,8 @@ declare const aiConfigSchema: z.ZodObject<{
878
878
  }[] | undefined;
879
879
  } | undefined;
880
880
  llmsTxt?: boolean | {
881
- enabled?: boolean | undefined;
882
881
  openapi?: boolean | undefined;
882
+ enabled?: boolean | undefined;
883
883
  } | undefined;
884
884
  markdownComponents?: Record<string, ComponentMarkdown> | undefined;
885
885
  mcp?: {
@@ -1097,17 +1097,17 @@ export declare const blumeConfigSchema: z.ZodObject<{
1097
1097
  enabled: z.ZodDefault<z.ZodBoolean>;
1098
1098
  openapi: z.ZodDefault<z.ZodBoolean>;
1099
1099
  }, "strict", z.ZodTypeAny, {
1100
- enabled: boolean;
1101
1100
  openapi: boolean;
1101
+ enabled: boolean;
1102
1102
  }, {
1103
- enabled?: boolean | undefined;
1104
1103
  openapi?: boolean | undefined;
1104
+ enabled?: boolean | undefined;
1105
1105
  }>]>>, {
1106
- enabled: boolean;
1107
1106
  openapi: boolean;
1107
+ enabled: boolean;
1108
1108
  }, boolean | {
1109
- enabled?: boolean | undefined;
1110
1109
  openapi?: boolean | undefined;
1110
+ enabled?: boolean | undefined;
1111
1111
  } | undefined>;
1112
1112
  markdownComponents: z.ZodDefault<z.ZodRecord<z.ZodString, z.ZodType<ComponentMarkdown, z.ZodTypeDef, ComponentMarkdown>>>;
1113
1113
  /** Expose the docs as an MCP server for connecting agents. */
@@ -1135,8 +1135,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
1135
1135
  }>>;
1136
1136
  }, "strict", z.ZodTypeAny, {
1137
1137
  llmsTxt: {
1138
- enabled: boolean;
1139
1138
  openapi: boolean;
1139
+ enabled: boolean;
1140
1140
  };
1141
1141
  markdownComponents: Record<string, ComponentMarkdown>;
1142
1142
  mcp: {
@@ -1169,8 +1169,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
1169
1169
  }[] | undefined;
1170
1170
  } | undefined;
1171
1171
  llmsTxt?: boolean | {
1172
- enabled?: boolean | undefined;
1173
1172
  openapi?: boolean | undefined;
1173
+ enabled?: boolean | undefined;
1174
1174
  } | undefined;
1175
1175
  markdownComponents?: Record<string, ComponentMarkdown> | undefined;
1176
1176
  mcp?: {
@@ -1521,14 +1521,14 @@ export declare const blumeConfigSchema: z.ZodObject<{
1521
1521
  title?: string | undefined;
1522
1522
  status?: string | undefined;
1523
1523
  description?: string | undefined;
1524
- order?: string | undefined;
1525
1524
  slug?: string | undefined;
1525
+ order?: string | undefined;
1526
1526
  }, {
1527
1527
  title?: string | undefined;
1528
1528
  status?: string | undefined;
1529
1529
  description?: string | undefined;
1530
- order?: string | undefined;
1531
1530
  slug?: string | undefined;
1531
+ order?: string | undefined;
1532
1532
  }>>;
1533
1533
  /** Status value treated as published; others map to `draft`. Default `Published`. */
1534
1534
  publishedValue: z.ZodOptional<z.ZodString>;
@@ -1542,8 +1542,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
1542
1542
  title?: string | undefined;
1543
1543
  status?: string | undefined;
1544
1544
  description?: string | undefined;
1545
- order?: string | undefined;
1546
1545
  slug?: string | undefined;
1546
+ order?: string | undefined;
1547
1547
  } | undefined;
1548
1548
  publishedValue?: string | undefined;
1549
1549
  }, {
@@ -1555,8 +1555,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
1555
1555
  title?: string | undefined;
1556
1556
  status?: string | undefined;
1557
1557
  description?: string | undefined;
1558
- order?: string | undefined;
1559
1558
  slug?: string | undefined;
1559
+ order?: string | undefined;
1560
1560
  } | undefined;
1561
1561
  publishedValue?: string | undefined;
1562
1562
  }>, z.ZodObject<{
@@ -1571,8 +1571,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
1571
1571
  }>]>, "many">>;
1572
1572
  }, "strict", z.ZodTypeAny, {
1573
1573
  root: string;
1574
- exclude: string[];
1575
1574
  defaultType: string;
1575
+ exclude: string[];
1576
1576
  include: string[];
1577
1577
  pages: string;
1578
1578
  sources?: ({
@@ -1627,8 +1627,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
1627
1627
  title?: string | undefined;
1628
1628
  status?: string | undefined;
1629
1629
  description?: string | undefined;
1630
- order?: string | undefined;
1631
1630
  slug?: string | undefined;
1631
+ order?: string | undefined;
1632
1632
  } | undefined;
1633
1633
  publishedValue?: string | undefined;
1634
1634
  } | {
@@ -1637,7 +1637,6 @@ export declare const blumeConfigSchema: z.ZodObject<{
1637
1637
  })[] | undefined;
1638
1638
  }, {
1639
1639
  root?: string | undefined;
1640
- exclude?: string[] | undefined;
1641
1640
  sources?: ({
1642
1641
  type: "filesystem";
1643
1642
  root?: string | undefined;
@@ -1690,8 +1689,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
1690
1689
  title?: string | undefined;
1691
1690
  status?: string | undefined;
1692
1691
  description?: string | undefined;
1693
- order?: string | undefined;
1694
1692
  slug?: string | undefined;
1693
+ order?: string | undefined;
1695
1694
  } | undefined;
1696
1695
  publishedValue?: string | undefined;
1697
1696
  } | {
@@ -1699,6 +1698,7 @@ export declare const blumeConfigSchema: z.ZodObject<{
1699
1698
  source: ContentSource;
1700
1699
  })[] | undefined;
1701
1700
  defaultType?: string | undefined;
1701
+ exclude?: string[] | undefined;
1702
1702
  include?: string[] | undefined;
1703
1703
  pages?: string | undefined;
1704
1704
  }>>;
@@ -1992,14 +1992,14 @@ export declare const blumeConfigSchema: z.ZodObject<{
1992
1992
  }, "strict", z.ZodTypeAny, {
1993
1993
  path: string;
1994
1994
  label: string;
1995
- description?: string | undefined;
1996
1995
  icon?: string | undefined;
1996
+ description?: string | undefined;
1997
1997
  tag?: string | undefined;
1998
1998
  }, {
1999
1999
  path: string;
2000
2000
  label: string;
2001
- description?: string | undefined;
2002
2001
  icon?: string | undefined;
2002
+ description?: string | undefined;
2003
2003
  tag?: string | undefined;
2004
2004
  }>, "many">>;
2005
2005
  kind: z.ZodEnum<["dropdown", "language", "product", "version"]>;
@@ -2009,19 +2009,19 @@ export declare const blumeConfigSchema: z.ZodObject<{
2009
2009
  items: {
2010
2010
  path: string;
2011
2011
  label: string;
2012
- description?: string | undefined;
2013
2012
  icon?: string | undefined;
2013
+ description?: string | undefined;
2014
2014
  tag?: string | undefined;
2015
2015
  }[];
2016
- kind: "version" | "product" | "dropdown" | "language";
2016
+ kind: "dropdown" | "language" | "product" | "version";
2017
2017
  }, {
2018
2018
  label: string;
2019
- kind: "version" | "product" | "dropdown" | "language";
2019
+ kind: "dropdown" | "language" | "product" | "version";
2020
2020
  items?: {
2021
2021
  path: string;
2022
2022
  label: string;
2023
- description?: string | undefined;
2024
2023
  icon?: string | undefined;
2024
+ description?: string | undefined;
2025
2025
  tag?: string | undefined;
2026
2026
  }[] | undefined;
2027
2027
  }>, "many">>;
@@ -2035,19 +2035,19 @@ export declare const blumeConfigSchema: z.ZodObject<{
2035
2035
  display: z.ZodDefault<z.ZodEnum<["flat", "group", "page"]>>;
2036
2036
  items: z.ZodOptional<z.ZodArray<z.ZodType<SidebarItemConfig, z.ZodTypeDef, SidebarItemConfig>, "many">>;
2037
2037
  }, "strict", z.ZodTypeAny, {
2038
- display: "flat" | "page" | "group";
2038
+ display: "flat" | "group" | "page";
2039
2039
  items?: SidebarItemConfig[] | undefined;
2040
2040
  }, {
2041
- display?: "flat" | "page" | "group" | undefined;
2041
+ display?: "flat" | "group" | "page" | undefined;
2042
2042
  items?: SidebarItemConfig[] | undefined;
2043
2043
  }>]>>, {
2044
- display: "flat" | "page" | "group";
2044
+ display: "flat" | "group" | "page";
2045
2045
  items?: SidebarItemConfig[] | undefined;
2046
2046
  }, SidebarItemConfig[] | {
2047
- display?: "flat" | "page" | "group" | undefined;
2047
+ display?: "flat" | "group" | "page" | undefined;
2048
2048
  items?: SidebarItemConfig[] | undefined;
2049
2049
  } | undefined>;
2050
- tabs: z.ZodOptional<z.ZodArray<z.ZodObject<{
2050
+ tabs: z.ZodDefault<z.ZodArray<z.ZodObject<{
2051
2051
  icon: z.ZodOptional<z.ZodString>;
2052
2052
  items: z.ZodOptional<z.ZodArray<z.ZodObject<{
2053
2053
  description: z.ZodOptional<z.ZodString>;
@@ -2058,14 +2058,14 @@ export declare const blumeConfigSchema: z.ZodObject<{
2058
2058
  }, "strict", z.ZodTypeAny, {
2059
2059
  path: string;
2060
2060
  label: string;
2061
- description?: string | undefined;
2062
2061
  icon?: string | undefined;
2062
+ description?: string | undefined;
2063
2063
  tag?: string | undefined;
2064
2064
  }, {
2065
2065
  path: string;
2066
2066
  label: string;
2067
- description?: string | undefined;
2068
2067
  icon?: string | undefined;
2068
+ description?: string | undefined;
2069
2069
  tag?: string | undefined;
2070
2070
  }>, "many">>;
2071
2071
  label: z.ZodString;
@@ -2077,8 +2077,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
2077
2077
  items?: {
2078
2078
  path: string;
2079
2079
  label: string;
2080
- description?: string | undefined;
2081
2080
  icon?: string | undefined;
2081
+ description?: string | undefined;
2082
2082
  tag?: string | undefined;
2083
2083
  }[] | undefined;
2084
2084
  }, {
@@ -2088,16 +2088,12 @@ export declare const blumeConfigSchema: z.ZodObject<{
2088
2088
  items?: {
2089
2089
  path: string;
2090
2090
  label: string;
2091
- description?: string | undefined;
2092
2091
  icon?: string | undefined;
2092
+ description?: string | undefined;
2093
2093
  tag?: string | undefined;
2094
2094
  }[] | undefined;
2095
2095
  }>, "many">>;
2096
2096
  }, "strict", z.ZodTypeAny, {
2097
- sidebar: {
2098
- display: "flat" | "page" | "group";
2099
- items?: SidebarItemConfig[] | undefined;
2100
- };
2101
2097
  repo: boolean;
2102
2098
  featured: {
2103
2099
  label: string;
@@ -2109,29 +2105,29 @@ export declare const blumeConfigSchema: z.ZodObject<{
2109
2105
  items: {
2110
2106
  path: string;
2111
2107
  label: string;
2112
- description?: string | undefined;
2113
2108
  icon?: string | undefined;
2109
+ description?: string | undefined;
2114
2110
  tag?: string | undefined;
2115
2111
  }[];
2116
- kind: "version" | "product" | "dropdown" | "language";
2112
+ kind: "dropdown" | "language" | "product" | "version";
2117
2113
  }[];
2118
- tabs?: {
2114
+ sidebar: {
2115
+ display: "flat" | "group" | "page";
2116
+ items?: SidebarItemConfig[] | undefined;
2117
+ };
2118
+ tabs: {
2119
2119
  path: string;
2120
2120
  label: string;
2121
2121
  icon?: string | undefined;
2122
2122
  items?: {
2123
2123
  path: string;
2124
2124
  label: string;
2125
- description?: string | undefined;
2126
2125
  icon?: string | undefined;
2126
+ description?: string | undefined;
2127
2127
  tag?: string | undefined;
2128
2128
  }[] | undefined;
2129
- }[] | undefined;
2129
+ }[];
2130
2130
  }, {
2131
- sidebar?: SidebarItemConfig[] | {
2132
- display?: "flat" | "page" | "group" | undefined;
2133
- items?: SidebarItemConfig[] | undefined;
2134
- } | undefined;
2135
2131
  repo?: boolean | undefined;
2136
2132
  featured?: {
2137
2133
  label: string;
@@ -2140,15 +2136,19 @@ export declare const blumeConfigSchema: z.ZodObject<{
2140
2136
  }[] | undefined;
2141
2137
  selectors?: {
2142
2138
  label: string;
2143
- kind: "version" | "product" | "dropdown" | "language";
2139
+ kind: "dropdown" | "language" | "product" | "version";
2144
2140
  items?: {
2145
2141
  path: string;
2146
2142
  label: string;
2147
- description?: string | undefined;
2148
2143
  icon?: string | undefined;
2144
+ description?: string | undefined;
2149
2145
  tag?: string | undefined;
2150
2146
  }[] | undefined;
2151
2147
  }[] | undefined;
2148
+ sidebar?: SidebarItemConfig[] | {
2149
+ display?: "flat" | "group" | "page" | undefined;
2150
+ items?: SidebarItemConfig[] | undefined;
2151
+ } | undefined;
2152
2152
  tabs?: {
2153
2153
  path: string;
2154
2154
  label: string;
@@ -2156,8 +2156,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
2156
2156
  items?: {
2157
2157
  path: string;
2158
2158
  label: string;
2159
- description?: string | undefined;
2160
2159
  icon?: string | undefined;
2160
+ description?: string | undefined;
2161
2161
  tag?: string | undefined;
2162
2162
  }[] | undefined;
2163
2163
  }[] | undefined;
@@ -2309,7 +2309,7 @@ export declare const blumeConfigSchema: z.ZodObject<{
2309
2309
  protocol?: "http" | "https" | undefined;
2310
2310
  }>>;
2311
2311
  }, "strict", z.ZodTypeAny, {
2312
- provider: "none" | "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense";
2312
+ provider: "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense" | "none";
2313
2313
  indexing: {
2314
2314
  includeHiddenPages: boolean;
2315
2315
  };
@@ -2334,7 +2334,7 @@ export declare const blumeConfigSchema: z.ZodObject<{
2334
2334
  protocol?: "http" | "https" | undefined;
2335
2335
  } | undefined;
2336
2336
  }, {
2337
- provider?: "none" | "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense" | undefined;
2337
+ provider?: "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense" | "none" | undefined;
2338
2338
  algolia?: {
2339
2339
  appId: string;
2340
2340
  indexName: string;
@@ -2359,7 +2359,7 @@ export declare const blumeConfigSchema: z.ZodObject<{
2359
2359
  protocol?: "http" | "https" | undefined;
2360
2360
  } | undefined;
2361
2361
  }>, {
2362
- provider: "none" | "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense";
2362
+ provider: "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense" | "none";
2363
2363
  indexing: {
2364
2364
  includeHiddenPages: boolean;
2365
2365
  };
@@ -2384,7 +2384,7 @@ export declare const blumeConfigSchema: z.ZodObject<{
2384
2384
  protocol?: "http" | "https" | undefined;
2385
2385
  } | undefined;
2386
2386
  }, {
2387
- provider?: "none" | "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense" | undefined;
2387
+ provider?: "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense" | "none" | undefined;
2388
2388
  algolia?: {
2389
2389
  appId: string;
2390
2390
  indexName: string;
@@ -2446,10 +2446,48 @@ export declare const blumeConfigSchema: z.ZodObject<{
2446
2446
  * `loadConfig`. An explicit value here always wins.
2447
2447
  */
2448
2448
  enabled: z.ZodOptional<z.ZodBoolean>;
2449
+ /** Local SVG used in the generated card instead of the site logo. */
2450
+ logo: z.ZodOptional<z.ZodString>;
2451
+ /** Optional generated-card colors. */
2452
+ palette: z.ZodOptional<z.ZodObject<{
2453
+ accent: z.ZodOptional<z.ZodString>;
2454
+ background: z.ZodOptional<z.ZodString>;
2455
+ border: z.ZodOptional<z.ZodString>;
2456
+ foreground: z.ZodOptional<z.ZodString>;
2457
+ muted: z.ZodOptional<z.ZodString>;
2458
+ }, "strict", z.ZodTypeAny, {
2459
+ accent?: string | undefined;
2460
+ background?: string | undefined;
2461
+ border?: string | undefined;
2462
+ foreground?: string | undefined;
2463
+ muted?: string | undefined;
2464
+ }, {
2465
+ accent?: string | undefined;
2466
+ background?: string | undefined;
2467
+ border?: string | undefined;
2468
+ foreground?: string | undefined;
2469
+ muted?: string | undefined;
2470
+ }>>;
2449
2471
  }, "strict", z.ZodTypeAny, {
2450
2472
  enabled?: boolean | undefined;
2473
+ logo?: string | undefined;
2474
+ palette?: {
2475
+ accent?: string | undefined;
2476
+ background?: string | undefined;
2477
+ border?: string | undefined;
2478
+ foreground?: string | undefined;
2479
+ muted?: string | undefined;
2480
+ } | undefined;
2451
2481
  }, {
2452
2482
  enabled?: boolean | undefined;
2483
+ logo?: string | undefined;
2484
+ palette?: {
2485
+ accent?: string | undefined;
2486
+ background?: string | undefined;
2487
+ border?: string | undefined;
2488
+ foreground?: string | undefined;
2489
+ muted?: string | undefined;
2490
+ } | undefined;
2453
2491
  }>>;
2454
2492
  /** Generate robots.txt (with a Sitemap reference when available). */
2455
2493
  robots: z.ZodDefault<z.ZodBoolean>;
@@ -2486,10 +2524,6 @@ export declare const blumeConfigSchema: z.ZodObject<{
2486
2524
  handle?: string | undefined;
2487
2525
  }>>;
2488
2526
  }, "strict", z.ZodTypeAny, {
2489
- x: {
2490
- creator?: string | undefined;
2491
- handle?: string | undefined;
2492
- };
2493
2527
  agentReadability: boolean;
2494
2528
  contentSignals: {
2495
2529
  search: boolean;
@@ -2498,6 +2532,14 @@ export declare const blumeConfigSchema: z.ZodObject<{
2498
2532
  } | null;
2499
2533
  og: {
2500
2534
  enabled?: boolean | undefined;
2535
+ logo?: string | undefined;
2536
+ palette?: {
2537
+ accent?: string | undefined;
2538
+ background?: string | undefined;
2539
+ border?: string | undefined;
2540
+ foreground?: string | undefined;
2541
+ muted?: string | undefined;
2542
+ } | undefined;
2501
2543
  };
2502
2544
  robots: boolean;
2503
2545
  rss: {
@@ -2507,11 +2549,11 @@ export declare const blumeConfigSchema: z.ZodObject<{
2507
2549
  };
2508
2550
  sitemap: boolean;
2509
2551
  structuredData: boolean;
2510
- }, {
2511
- x?: {
2552
+ x: {
2512
2553
  creator?: string | undefined;
2513
2554
  handle?: string | undefined;
2514
- } | undefined;
2555
+ };
2556
+ }, {
2515
2557
  agentReadability?: boolean | undefined;
2516
2558
  contentSignals?: boolean | {
2517
2559
  search?: boolean | undefined;
@@ -2520,6 +2562,14 @@ export declare const blumeConfigSchema: z.ZodObject<{
2520
2562
  } | undefined;
2521
2563
  og?: {
2522
2564
  enabled?: boolean | undefined;
2565
+ logo?: string | undefined;
2566
+ palette?: {
2567
+ accent?: string | undefined;
2568
+ background?: string | undefined;
2569
+ border?: string | undefined;
2570
+ foreground?: string | undefined;
2571
+ muted?: string | undefined;
2572
+ } | undefined;
2523
2573
  } | undefined;
2524
2574
  robots?: boolean | undefined;
2525
2575
  rss?: {
@@ -2529,6 +2579,10 @@ export declare const blumeConfigSchema: z.ZodObject<{
2529
2579
  } | undefined;
2530
2580
  sitemap?: boolean | undefined;
2531
2581
  structuredData?: boolean | undefined;
2582
+ x?: {
2583
+ creator?: string | undefined;
2584
+ handle?: string | undefined;
2585
+ } | undefined;
2532
2586
  }>>;
2533
2587
  theme: z.ZodDefault<z.ZodObject<{
2534
2588
  accent: z.ZodEffects<z.ZodDefault<z.ZodUnion<[z.ZodString, z.ZodObject<{
@@ -2608,12 +2662,12 @@ export declare const blumeConfigSchema: z.ZodObject<{
2608
2662
  };
2609
2663
  layout: "sidebar";
2610
2664
  mode: "dark" | "light" | "system";
2611
- radius: "md" | "none" | "sm" | "lg";
2612
- action?: string | undefined;
2665
+ radius: "none" | "sm" | "md" | "lg";
2613
2666
  background?: {
2614
2667
  dark?: string | undefined;
2615
2668
  light?: string | undefined;
2616
2669
  } | undefined;
2670
+ action?: string | undefined;
2617
2671
  backgroundImage?: {
2618
2672
  dark?: string | undefined;
2619
2673
  light?: string | undefined;
@@ -2623,11 +2677,11 @@ export declare const blumeConfigSchema: z.ZodObject<{
2623
2677
  dark: string;
2624
2678
  light: string;
2625
2679
  } | undefined;
2626
- action?: string | undefined;
2627
2680
  background?: string | {
2628
2681
  dark?: string | undefined;
2629
2682
  light?: string | undefined;
2630
2683
  } | undefined;
2684
+ action?: string | undefined;
2631
2685
  backgroundImage?: string | {
2632
2686
  dark?: string | undefined;
2633
2687
  light?: string | undefined;
@@ -2639,7 +2693,7 @@ export declare const blumeConfigSchema: z.ZodObject<{
2639
2693
  } | undefined;
2640
2694
  layout?: "sidebar" | undefined;
2641
2695
  mode?: "dark" | "light" | "system" | undefined;
2642
- radius?: "md" | "none" | "sm" | "lg" | undefined;
2696
+ radius?: "none" | "sm" | "md" | "lg" | undefined;
2643
2697
  }>>;
2644
2698
  title: z.ZodDefault<z.ZodString>;
2645
2699
  toc: z.ZodEffects<z.ZodEffects<z.ZodDefault<z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
@@ -2668,58 +2722,6 @@ export declare const blumeConfigSchema: z.ZodObject<{
2668
2722
  } | undefined>;
2669
2723
  }, "strict", z.ZodTypeAny, {
2670
2724
  title: string;
2671
- lastModified: boolean | {
2672
- type: "git" | "frontmatter";
2673
- };
2674
- search: {
2675
- provider: "none" | "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense";
2676
- indexing: {
2677
- includeHiddenPages: boolean;
2678
- };
2679
- algolia?: {
2680
- appId: string;
2681
- indexName: string;
2682
- searchApiKey: string;
2683
- } | undefined;
2684
- mixedbread?: {
2685
- storeId: string;
2686
- } | undefined;
2687
- oramaCloud?: {
2688
- apiKey: string;
2689
- endpoint: string;
2690
- indexId?: string | undefined;
2691
- } | undefined;
2692
- typesense?: {
2693
- host: string;
2694
- searchApiKey: string;
2695
- collection: string;
2696
- port?: number | undefined;
2697
- protocol?: "http" | "https" | undefined;
2698
- } | undefined;
2699
- };
2700
- seo: {
2701
- x: {
2702
- creator?: string | undefined;
2703
- handle?: string | undefined;
2704
- };
2705
- agentReadability: boolean;
2706
- contentSignals: {
2707
- search: boolean;
2708
- aiInput: boolean;
2709
- aiTrain: boolean;
2710
- } | null;
2711
- og: {
2712
- enabled?: boolean | undefined;
2713
- };
2714
- robots: boolean;
2715
- rss: {
2716
- enabled: boolean;
2717
- limit: number;
2718
- types: string[];
2719
- };
2720
- sitemap: boolean;
2721
- structuredData: boolean;
2722
- };
2723
2725
  openapi: {
2724
2726
  enabled: boolean;
2725
2727
  route: string;
@@ -2734,10 +2736,21 @@ export declare const blumeConfigSchema: z.ZodObject<{
2734
2736
  spec?: string | undefined;
2735
2737
  theme?: string | undefined;
2736
2738
  };
2739
+ asyncapi: {
2740
+ enabled: boolean;
2741
+ route: string;
2742
+ sources: {
2743
+ spec: string;
2744
+ label?: string | undefined;
2745
+ route?: string | undefined;
2746
+ }[];
2747
+ spec?: string | undefined;
2748
+ theme?: string | undefined;
2749
+ };
2737
2750
  ai: {
2738
2751
  llmsTxt: {
2739
- enabled: boolean;
2740
2752
  openapi: boolean;
2753
+ enabled: boolean;
2741
2754
  };
2742
2755
  markdownComponents: Record<string, ComponentMarkdown>;
2743
2756
  mcp: {
@@ -2760,8 +2773,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
2760
2773
  };
2761
2774
  content: {
2762
2775
  root: string;
2763
- exclude: string[];
2764
2776
  defaultType: string;
2777
+ exclude: string[];
2765
2778
  include: string[];
2766
2779
  pages: string;
2767
2780
  sources?: ({
@@ -2816,8 +2829,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
2816
2829
  title?: string | undefined;
2817
2830
  status?: string | undefined;
2818
2831
  description?: string | undefined;
2819
- order?: string | undefined;
2820
2832
  slug?: string | undefined;
2833
+ order?: string | undefined;
2821
2834
  } | undefined;
2822
2835
  publishedValue?: string | undefined;
2823
2836
  } | {
@@ -2837,29 +2850,21 @@ export declare const blumeConfigSchema: z.ZodObject<{
2837
2850
  };
2838
2851
  layout: "sidebar";
2839
2852
  mode: "dark" | "light" | "system";
2840
- radius: "md" | "none" | "sm" | "lg";
2841
- action?: string | undefined;
2853
+ radius: "none" | "sm" | "md" | "lg";
2842
2854
  background?: {
2843
2855
  dark?: string | undefined;
2844
2856
  light?: string | undefined;
2845
2857
  } | undefined;
2858
+ action?: string | undefined;
2846
2859
  backgroundImage?: {
2847
2860
  dark?: string | undefined;
2848
2861
  light?: string | undefined;
2849
2862
  } | undefined;
2850
2863
  };
2851
- asyncapi: {
2852
- enabled: boolean;
2853
- route: string;
2854
- sources: {
2855
- spec: string;
2856
- label?: string | undefined;
2857
- route?: string | undefined;
2858
- }[];
2859
- spec?: string | undefined;
2860
- theme?: string | undefined;
2861
- };
2862
2864
  basePath: string;
2865
+ lastModified: boolean | {
2866
+ type: "git" | "frontmatter";
2867
+ };
2863
2868
  deployment: {
2864
2869
  adapter: "vercel" | "node" | "netlify" | "cloudflare" | null;
2865
2870
  output: "static" | "server";
@@ -2890,10 +2895,6 @@ export declare const blumeConfigSchema: z.ZodObject<{
2890
2895
  imageZoom: boolean;
2891
2896
  };
2892
2897
  navigation: {
2893
- sidebar: {
2894
- display: "flat" | "page" | "group";
2895
- items?: SidebarItemConfig[] | undefined;
2896
- };
2897
2898
  repo: boolean;
2898
2899
  featured: {
2899
2900
  label: string;
@@ -2905,24 +2906,28 @@ export declare const blumeConfigSchema: z.ZodObject<{
2905
2906
  items: {
2906
2907
  path: string;
2907
2908
  label: string;
2908
- description?: string | undefined;
2909
2909
  icon?: string | undefined;
2910
+ description?: string | undefined;
2910
2911
  tag?: string | undefined;
2911
2912
  }[];
2912
- kind: "version" | "product" | "dropdown" | "language";
2913
+ kind: "dropdown" | "language" | "product" | "version";
2913
2914
  }[];
2914
- tabs?: {
2915
+ sidebar: {
2916
+ display: "flat" | "group" | "page";
2917
+ items?: SidebarItemConfig[] | undefined;
2918
+ };
2919
+ tabs: {
2915
2920
  path: string;
2916
2921
  label: string;
2917
2922
  icon?: string | undefined;
2918
2923
  items?: {
2919
2924
  path: string;
2920
2925
  label: string;
2921
- description?: string | undefined;
2922
2926
  icon?: string | undefined;
2927
+ description?: string | undefined;
2923
2928
  tag?: string | undefined;
2924
2929
  }[] | undefined;
2925
- }[] | undefined;
2930
+ }[];
2926
2931
  };
2927
2932
  react: {
2928
2933
  compiler: boolean;
@@ -2932,12 +2937,68 @@ export declare const blumeConfigSchema: z.ZodObject<{
2932
2937
  from: string;
2933
2938
  to: string;
2934
2939
  }[];
2940
+ search: {
2941
+ provider: "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense" | "none";
2942
+ indexing: {
2943
+ includeHiddenPages: boolean;
2944
+ };
2945
+ algolia?: {
2946
+ appId: string;
2947
+ indexName: string;
2948
+ searchApiKey: string;
2949
+ } | undefined;
2950
+ mixedbread?: {
2951
+ storeId: string;
2952
+ } | undefined;
2953
+ oramaCloud?: {
2954
+ apiKey: string;
2955
+ endpoint: string;
2956
+ indexId?: string | undefined;
2957
+ } | undefined;
2958
+ typesense?: {
2959
+ host: string;
2960
+ searchApiKey: string;
2961
+ collection: string;
2962
+ port?: number | undefined;
2963
+ protocol?: "http" | "https" | undefined;
2964
+ } | undefined;
2965
+ };
2966
+ seo: {
2967
+ agentReadability: boolean;
2968
+ contentSignals: {
2969
+ search: boolean;
2970
+ aiInput: boolean;
2971
+ aiTrain: boolean;
2972
+ } | null;
2973
+ og: {
2974
+ enabled?: boolean | undefined;
2975
+ logo?: string | undefined;
2976
+ palette?: {
2977
+ accent?: string | undefined;
2978
+ background?: string | undefined;
2979
+ border?: string | undefined;
2980
+ foreground?: string | undefined;
2981
+ muted?: string | undefined;
2982
+ } | undefined;
2983
+ };
2984
+ robots: boolean;
2985
+ rss: {
2986
+ enabled: boolean;
2987
+ limit: number;
2988
+ types: string[];
2989
+ };
2990
+ sitemap: boolean;
2991
+ structuredData: boolean;
2992
+ x: {
2993
+ creator?: string | undefined;
2994
+ handle?: string | undefined;
2995
+ };
2996
+ };
2935
2997
  toc: {
2936
2998
  enabled: boolean;
2937
2999
  maxLevel: number;
2938
3000
  minLevel: number;
2939
3001
  };
2940
- description?: string | undefined;
2941
3002
  analytics?: {
2942
3003
  posthog?: {
2943
3004
  key: string;
@@ -2966,6 +3027,7 @@ export declare const blumeConfigSchema: z.ZodObject<{
2966
3027
  branch: string;
2967
3028
  dir?: string | undefined;
2968
3029
  } | undefined;
3030
+ description?: string | undefined;
2969
3031
  i18n?: {
2970
3032
  defaultLocale: string;
2971
3033
  hideDefaultLocalePrefix: boolean;
@@ -2989,59 +3051,6 @@ export declare const blumeConfigSchema: z.ZodObject<{
2989
3051
  } | undefined;
2990
3052
  }, {
2991
3053
  title?: string | undefined;
2992
- description?: string | undefined;
2993
- lastModified?: boolean | {
2994
- type?: "git" | "frontmatter" | undefined;
2995
- } | undefined;
2996
- search?: {
2997
- provider?: "none" | "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense" | undefined;
2998
- algolia?: {
2999
- appId: string;
3000
- indexName: string;
3001
- searchApiKey: string;
3002
- } | undefined;
3003
- indexing?: {
3004
- includeHiddenPages?: boolean | undefined;
3005
- } | undefined;
3006
- mixedbread?: {
3007
- storeId: string;
3008
- } | undefined;
3009
- oramaCloud?: {
3010
- apiKey: string;
3011
- endpoint: string;
3012
- indexId?: string | undefined;
3013
- } | undefined;
3014
- typesense?: {
3015
- host: string;
3016
- searchApiKey: string;
3017
- collection: string;
3018
- port?: number | undefined;
3019
- protocol?: "http" | "https" | undefined;
3020
- } | undefined;
3021
- } | undefined;
3022
- seo?: {
3023
- x?: {
3024
- creator?: string | undefined;
3025
- handle?: string | undefined;
3026
- } | undefined;
3027
- agentReadability?: boolean | undefined;
3028
- contentSignals?: boolean | {
3029
- search?: boolean | undefined;
3030
- aiInput?: boolean | undefined;
3031
- aiTrain?: boolean | undefined;
3032
- } | undefined;
3033
- og?: {
3034
- enabled?: boolean | undefined;
3035
- } | undefined;
3036
- robots?: boolean | undefined;
3037
- rss?: {
3038
- enabled?: boolean | undefined;
3039
- limit?: number | undefined;
3040
- types?: string[] | undefined;
3041
- } | undefined;
3042
- sitemap?: boolean | undefined;
3043
- structuredData?: boolean | undefined;
3044
- } | undefined;
3045
3054
  openapi?: {
3046
3055
  enabled?: boolean | undefined;
3047
3056
  route?: string | undefined;
@@ -3056,6 +3065,17 @@ export declare const blumeConfigSchema: z.ZodObject<{
3056
3065
  expandSchemas?: boolean | undefined;
3057
3066
  renderer?: "blume" | "scalar" | undefined;
3058
3067
  } | undefined;
3068
+ asyncapi?: {
3069
+ enabled?: boolean | undefined;
3070
+ route?: string | undefined;
3071
+ spec?: string | undefined;
3072
+ sources?: {
3073
+ spec: string;
3074
+ label?: string | undefined;
3075
+ route?: string | undefined;
3076
+ }[] | undefined;
3077
+ theme?: string | undefined;
3078
+ } | undefined;
3059
3079
  ai?: {
3060
3080
  ask?: {
3061
3081
  apiKeyEnv?: string | undefined;
@@ -3069,8 +3089,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
3069
3089
  }[] | undefined;
3070
3090
  } | undefined;
3071
3091
  llmsTxt?: boolean | {
3072
- enabled?: boolean | undefined;
3073
3092
  openapi?: boolean | undefined;
3093
+ enabled?: boolean | undefined;
3074
3094
  } | undefined;
3075
3095
  markdownComponents?: Record<string, ComponentMarkdown> | undefined;
3076
3096
  mcp?: {
@@ -3082,7 +3102,6 @@ export declare const blumeConfigSchema: z.ZodObject<{
3082
3102
  } | undefined;
3083
3103
  content?: {
3084
3104
  root?: string | undefined;
3085
- exclude?: string[] | undefined;
3086
3105
  sources?: ({
3087
3106
  type: "filesystem";
3088
3107
  root?: string | undefined;
@@ -3135,8 +3154,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
3135
3154
  title?: string | undefined;
3136
3155
  status?: string | undefined;
3137
3156
  description?: string | undefined;
3138
- order?: string | undefined;
3139
3157
  slug?: string | undefined;
3158
+ order?: string | undefined;
3140
3159
  } | undefined;
3141
3160
  publishedValue?: string | undefined;
3142
3161
  } | {
@@ -3144,6 +3163,7 @@ export declare const blumeConfigSchema: z.ZodObject<{
3144
3163
  source: ContentSource;
3145
3164
  })[] | undefined;
3146
3165
  defaultType?: string | undefined;
3166
+ exclude?: string[] | undefined;
3147
3167
  include?: string[] | undefined;
3148
3168
  pages?: string | undefined;
3149
3169
  } | undefined;
@@ -3165,11 +3185,11 @@ export declare const blumeConfigSchema: z.ZodObject<{
3165
3185
  dark: string;
3166
3186
  light: string;
3167
3187
  } | undefined;
3168
- action?: string | undefined;
3169
3188
  background?: string | {
3170
3189
  dark?: string | undefined;
3171
3190
  light?: string | undefined;
3172
3191
  } | undefined;
3192
+ action?: string | undefined;
3173
3193
  backgroundImage?: string | {
3174
3194
  dark?: string | undefined;
3175
3195
  light?: string | undefined;
@@ -3181,18 +3201,7 @@ export declare const blumeConfigSchema: z.ZodObject<{
3181
3201
  } | undefined;
3182
3202
  layout?: "sidebar" | undefined;
3183
3203
  mode?: "dark" | "light" | "system" | undefined;
3184
- radius?: "md" | "none" | "sm" | "lg" | undefined;
3185
- } | undefined;
3186
- asyncapi?: {
3187
- enabled?: boolean | undefined;
3188
- route?: string | undefined;
3189
- spec?: string | undefined;
3190
- sources?: {
3191
- spec: string;
3192
- label?: string | undefined;
3193
- route?: string | undefined;
3194
- }[] | undefined;
3195
- theme?: string | undefined;
3204
+ radius?: "none" | "sm" | "md" | "lg" | undefined;
3196
3205
  } | undefined;
3197
3206
  banner?: string | {
3198
3207
  content: string;
@@ -3210,6 +3219,10 @@ export declare const blumeConfigSchema: z.ZodObject<{
3210
3219
  branch?: string | undefined;
3211
3220
  dir?: string | undefined;
3212
3221
  } | undefined;
3222
+ description?: string | undefined;
3223
+ lastModified?: boolean | {
3224
+ type?: "git" | "frontmatter" | undefined;
3225
+ } | undefined;
3213
3226
  deployment?: {
3214
3227
  adapter?: "vercel" | "node" | "netlify" | "cloudflare" | null | undefined;
3215
3228
  base?: string | undefined;
@@ -3261,10 +3274,6 @@ export declare const blumeConfigSchema: z.ZodObject<{
3261
3274
  imageZoom?: boolean | undefined;
3262
3275
  } | undefined;
3263
3276
  navigation?: {
3264
- sidebar?: SidebarItemConfig[] | {
3265
- display?: "flat" | "page" | "group" | undefined;
3266
- items?: SidebarItemConfig[] | undefined;
3267
- } | undefined;
3268
3277
  repo?: boolean | undefined;
3269
3278
  featured?: {
3270
3279
  label: string;
@@ -3273,15 +3282,19 @@ export declare const blumeConfigSchema: z.ZodObject<{
3273
3282
  }[] | undefined;
3274
3283
  selectors?: {
3275
3284
  label: string;
3276
- kind: "version" | "product" | "dropdown" | "language";
3285
+ kind: "dropdown" | "language" | "product" | "version";
3277
3286
  items?: {
3278
3287
  path: string;
3279
3288
  label: string;
3280
- description?: string | undefined;
3281
3289
  icon?: string | undefined;
3290
+ description?: string | undefined;
3282
3291
  tag?: string | undefined;
3283
3292
  }[] | undefined;
3284
3293
  }[] | undefined;
3294
+ sidebar?: SidebarItemConfig[] | {
3295
+ display?: "flat" | "group" | "page" | undefined;
3296
+ items?: SidebarItemConfig[] | undefined;
3297
+ } | undefined;
3285
3298
  tabs?: {
3286
3299
  path: string;
3287
3300
  label: string;
@@ -3289,8 +3302,8 @@ export declare const blumeConfigSchema: z.ZodObject<{
3289
3302
  items?: {
3290
3303
  path: string;
3291
3304
  label: string;
3292
- description?: string | undefined;
3293
3305
  icon?: string | undefined;
3306
+ description?: string | undefined;
3294
3307
  tag?: string | undefined;
3295
3308
  }[] | undefined;
3296
3309
  }[] | undefined;
@@ -3303,6 +3316,63 @@ export declare const blumeConfigSchema: z.ZodObject<{
3303
3316
  to: string;
3304
3317
  status?: 301 | 302 | 307 | 308 | undefined;
3305
3318
  }[] | undefined;
3319
+ search?: {
3320
+ provider?: "algolia" | "mixedbread" | "orama" | "pagefind" | "flexsearch" | "orama-cloud" | "typesense" | "none" | undefined;
3321
+ algolia?: {
3322
+ appId: string;
3323
+ indexName: string;
3324
+ searchApiKey: string;
3325
+ } | undefined;
3326
+ indexing?: {
3327
+ includeHiddenPages?: boolean | undefined;
3328
+ } | undefined;
3329
+ mixedbread?: {
3330
+ storeId: string;
3331
+ } | undefined;
3332
+ oramaCloud?: {
3333
+ apiKey: string;
3334
+ endpoint: string;
3335
+ indexId?: string | undefined;
3336
+ } | undefined;
3337
+ typesense?: {
3338
+ host: string;
3339
+ searchApiKey: string;
3340
+ collection: string;
3341
+ port?: number | undefined;
3342
+ protocol?: "http" | "https" | undefined;
3343
+ } | undefined;
3344
+ } | undefined;
3345
+ seo?: {
3346
+ agentReadability?: boolean | undefined;
3347
+ contentSignals?: boolean | {
3348
+ search?: boolean | undefined;
3349
+ aiInput?: boolean | undefined;
3350
+ aiTrain?: boolean | undefined;
3351
+ } | undefined;
3352
+ og?: {
3353
+ enabled?: boolean | undefined;
3354
+ logo?: string | undefined;
3355
+ palette?: {
3356
+ accent?: string | undefined;
3357
+ background?: string | undefined;
3358
+ border?: string | undefined;
3359
+ foreground?: string | undefined;
3360
+ muted?: string | undefined;
3361
+ } | undefined;
3362
+ } | undefined;
3363
+ robots?: boolean | undefined;
3364
+ rss?: {
3365
+ enabled?: boolean | undefined;
3366
+ limit?: number | undefined;
3367
+ types?: string[] | undefined;
3368
+ } | undefined;
3369
+ sitemap?: boolean | undefined;
3370
+ structuredData?: boolean | undefined;
3371
+ x?: {
3372
+ creator?: string | undefined;
3373
+ handle?: string | undefined;
3374
+ } | undefined;
3375
+ } | undefined;
3306
3376
  toc?: boolean | {
3307
3377
  maxHeadingLevel?: number | undefined;
3308
3378
  minHeadingLevel?: number | undefined;