@mintlify/validation 0.1.702 → 0.1.704

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 (25) hide show
  1. package/dist/index.js +2 -0
  2. package/dist/mint-config/schemas/v2/index.d.ts +120 -0
  3. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +7 -0
  4. package/dist/mint-config/schemas/v2/properties/navigation/groups.js +3 -2
  5. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +16 -0
  6. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +4 -0
  7. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +6 -0
  8. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +2 -1
  9. package/dist/mint-config/schemas/v2/properties/reusable/searchable.d.ts +2 -0
  10. package/dist/mint-config/schemas/v2/properties/reusable/searchable.js +4 -0
  11. package/dist/mint-config/schemas/v2/themes/almond.d.ts +12 -0
  12. package/dist/mint-config/schemas/v2/themes/aspen.d.ts +12 -0
  13. package/dist/mint-config/schemas/v2/themes/linden.d.ts +12 -0
  14. package/dist/mint-config/schemas/v2/themes/luma.d.ts +12 -0
  15. package/dist/mint-config/schemas/v2/themes/maple.d.ts +12 -0
  16. package/dist/mint-config/schemas/v2/themes/mint.d.ts +12 -0
  17. package/dist/mint-config/schemas/v2/themes/palm.d.ts +12 -0
  18. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +8 -0
  19. package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +12 -0
  20. package/dist/mint-config/schemas/v2/themes/willow.d.ts +12 -0
  21. package/dist/mint-config/validateConfig.d.ts +36 -0
  22. package/dist/tsconfig.build.tsbuildinfo +1 -1
  23. package/dist/types/serverStaticProps.d.ts +2 -0
  24. package/dist/types/serverStaticProps.js +4 -1
  25. package/package.json +2 -2
@@ -25,6 +25,7 @@ export declare const baseGroupSchema: z.ZodObject<{
25
25
  library?: "fontawesome" | "lucide" | "tabler" | undefined;
26
26
  }>]>>;
27
27
  hidden: z.ZodOptional<z.ZodBoolean>;
28
+ searchable: z.ZodOptional<z.ZodBoolean>;
28
29
  root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
29
30
  tag: z.ZodOptional<z.ZodString>;
30
31
  expanded: z.ZodOptional<z.ZodBoolean>;
@@ -41,6 +42,7 @@ export declare const baseGroupSchema: z.ZodObject<{
41
42
  tag?: string | undefined;
42
43
  boost?: number | undefined;
43
44
  hidden?: boolean | undefined;
45
+ searchable?: boolean | undefined;
44
46
  root?: string | undefined;
45
47
  }, {
46
48
  group: string;
@@ -55,6 +57,7 @@ export declare const baseGroupSchema: z.ZodObject<{
55
57
  tag?: string | undefined;
56
58
  boost?: number | undefined;
57
59
  hidden?: boolean | undefined;
60
+ searchable?: boolean | undefined;
58
61
  root?: string | undefined;
59
62
  }>;
60
63
  export type BaseGroupSchema = z.infer<typeof baseGroupSchema>;
@@ -73,6 +76,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodType<{
73
76
  tag?: string | undefined;
74
77
  boost?: number | undefined;
75
78
  hidden?: boolean | undefined;
79
+ searchable?: boolean | undefined;
76
80
  root?: string | undefined;
77
81
  } & {
78
82
  openapi?: string | string[] | {
@@ -98,6 +102,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodType<{
98
102
  tag?: string | undefined;
99
103
  boost?: number | undefined;
100
104
  hidden?: boolean | undefined;
105
+ searchable?: boolean | undefined;
101
106
  root?: string | undefined;
102
107
  } & {
103
108
  openapi?: string | string[] | {
@@ -124,6 +129,7 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodType<Omit<{
124
129
  tag?: string | undefined;
125
130
  boost?: number | undefined;
126
131
  hidden?: boolean | undefined;
132
+ searchable?: boolean | undefined;
127
133
  root?: string | undefined;
128
134
  }, "root"> & {
129
135
  pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
@@ -141,6 +147,7 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodType<Omit<{
141
147
  tag?: string | undefined;
142
148
  boost?: number | undefined;
143
149
  hidden?: boolean | undefined;
150
+ searchable?: boolean | undefined;
144
151
  root?: string | undefined;
145
152
  }, "root"> & {
146
153
  pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
@@ -4,6 +4,7 @@ import { hiddenSchema } from '../reusable/hidden.js';
4
4
  import { iconSchema } from '../reusable/icon.js';
5
5
  import { openApiSchema } from '../reusable/openapi.js';
6
6
  import { decoratedPageSchema, pageSchema } from '../reusable/page.js';
7
+ import { searchableSchema } from '../reusable/searchable.js';
7
8
  import { decoratedPagesSchema, pagesSchema } from './pages.js';
8
9
  /** How automatic directory UI is shown for group roots under this navigation node. Inherits through `navigation`. */
9
10
  export const NAVIGATION_DIRECTORY = ['none', 'accordion', 'card'];
@@ -16,7 +17,7 @@ export const directoryField = {
16
17
  export const baseGroupSchema = z.object(Object.assign({ group: z.string().nonempty().describe('The name of the group'), public: z.boolean().optional().describe('Whether the group is public'), boost: z
17
18
  .number()
18
19
  .optional()
19
- .describe('Search ranking multiplier for pages in this group (e.g. 3 = 3x boost)'), icon: iconSchema.optional(), hidden: hiddenSchema.optional(), root: pageSchema.optional(), tag: z.string().optional().describe('Tag for the group'), expanded: z.boolean().optional().describe('Whether the group is expanded by default') }, directoryField));
20
+ .describe('Search ranking multiplier for pages in this group (e.g. 3 = 3x boost)'), icon: iconSchema.optional(), hidden: hiddenSchema.optional(), searchable: searchableSchema.optional(), root: pageSchema.optional(), tag: z.string().optional().describe('Tag for the group'), expanded: z.boolean().optional().describe('Whether the group is expanded by default') }, directoryField));
20
21
  export const groupSchema = z
21
22
  .union([
22
23
  baseGroupSchema.extend({
@@ -34,7 +35,7 @@ export const decoratedGroupSchema = z
34
35
  .object(Object.assign({ group: z.string().nonempty().describe('The name of the group'), public: z.boolean().optional().describe('Whether the group is public'), boost: z
35
36
  .number()
36
37
  .optional()
37
- .describe('Search ranking multiplier for pages in this group (e.g. 3 = 3x boost)'), icon: iconSchema.optional(), hidden: hiddenSchema.optional(), root: decoratedPageSchema.optional(), pages: z.lazy(() => decoratedPagesSchema), tag: z.string().optional().describe('Tag for the group'), expanded: z.boolean().optional().describe('Whether the group is expanded by default') }, directoryField))
38
+ .describe('Search ranking multiplier for pages in this group (e.g. 3 = 3x boost)'), icon: iconSchema.optional(), hidden: hiddenSchema.optional(), searchable: searchableSchema.optional(), root: decoratedPageSchema.optional(), pages: z.lazy(() => decoratedPagesSchema), tag: z.string().optional().describe('Tag for the group'), expanded: z.boolean().optional().describe('Whether the group is expanded by default') }, directoryField))
38
39
  .describe('Organizing by groups');
39
40
  export const groupsSchema = z
40
41
  .array(groupSchema)
@@ -102,6 +102,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
102
102
  tag?: string | undefined;
103
103
  boost?: number | undefined;
104
104
  hidden?: boolean | undefined;
105
+ searchable?: boolean | undefined;
105
106
  root?: string | undefined;
106
107
  } & {
107
108
  openapi?: string | string[] | {
@@ -127,6 +128,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
127
128
  tag?: string | undefined;
128
129
  boost?: number | undefined;
129
130
  hidden?: boolean | undefined;
131
+ searchable?: boolean | undefined;
130
132
  root?: string | undefined;
131
133
  } & {
132
134
  openapi?: string | string[] | {
@@ -154,6 +156,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
154
156
  tag?: string | undefined;
155
157
  boost?: number | undefined;
156
158
  hidden?: boolean | undefined;
159
+ searchable?: boolean | undefined;
157
160
  root?: string | undefined;
158
161
  } & {
159
162
  openapi?: string | string[] | {
@@ -183,6 +186,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
183
186
  tag?: string | undefined;
184
187
  boost?: number | undefined;
185
188
  hidden?: boolean | undefined;
189
+ searchable?: boolean | undefined;
186
190
  root?: string | undefined;
187
191
  } & {
188
192
  openapi?: string | string[] | {
@@ -215,6 +219,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
215
219
  tag?: string | undefined;
216
220
  boost?: number | undefined;
217
221
  hidden?: boolean | undefined;
222
+ searchable?: boolean | undefined;
218
223
  root?: string | undefined;
219
224
  } & {
220
225
  openapi?: string | string[] | {
@@ -240,6 +245,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
240
245
  tag?: string | undefined;
241
246
  boost?: number | undefined;
242
247
  hidden?: boolean | undefined;
248
+ searchable?: boolean | undefined;
243
249
  root?: string | undefined;
244
250
  } & {
245
251
  openapi?: string | string[] | {
@@ -267,6 +273,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
267
273
  tag?: string | undefined;
268
274
  boost?: number | undefined;
269
275
  hidden?: boolean | undefined;
276
+ searchable?: boolean | undefined;
270
277
  root?: string | undefined;
271
278
  } & {
272
279
  openapi?: string | string[] | {
@@ -296,6 +303,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
296
303
  tag?: string | undefined;
297
304
  boost?: number | undefined;
298
305
  hidden?: boolean | undefined;
306
+ searchable?: boolean | undefined;
299
307
  root?: string | undefined;
300
308
  } & {
301
309
  openapi?: string | string[] | {
@@ -362,6 +370,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
362
370
  tag?: string | undefined;
363
371
  boost?: number | undefined;
364
372
  hidden?: boolean | undefined;
373
+ searchable?: boolean | undefined;
365
374
  root?: string | undefined;
366
375
  }, "root"> & {
367
376
  pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
@@ -379,6 +388,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
379
388
  tag?: string | undefined;
380
389
  boost?: number | undefined;
381
390
  hidden?: boolean | undefined;
391
+ searchable?: boolean | undefined;
382
392
  root?: string | undefined;
383
393
  }, "root"> & {
384
394
  pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
@@ -398,6 +408,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
398
408
  tag?: string | undefined;
399
409
  boost?: number | undefined;
400
410
  hidden?: boolean | undefined;
411
+ searchable?: boolean | undefined;
401
412
  root?: string | undefined;
402
413
  }, "root"> & {
403
414
  pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
@@ -417,6 +428,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
417
428
  tag?: string | undefined;
418
429
  boost?: number | undefined;
419
430
  hidden?: boolean | undefined;
431
+ searchable?: boolean | undefined;
420
432
  root?: string | undefined;
421
433
  }, "root"> & {
422
434
  pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
@@ -486,6 +498,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
486
498
  tag?: string | undefined;
487
499
  boost?: number | undefined;
488
500
  hidden?: boolean | undefined;
501
+ searchable?: boolean | undefined;
489
502
  root?: string | undefined;
490
503
  }, "root"> & {
491
504
  pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
@@ -553,6 +566,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
553
566
  tag?: string | undefined;
554
567
  boost?: number | undefined;
555
568
  hidden?: boolean | undefined;
569
+ searchable?: boolean | undefined;
556
570
  root?: string | undefined;
557
571
  }, "root"> & {
558
572
  pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
@@ -622,6 +636,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
622
636
  tag?: string | undefined;
623
637
  boost?: number | undefined;
624
638
  hidden?: boolean | undefined;
639
+ searchable?: boolean | undefined;
625
640
  root?: string | undefined;
626
641
  }, "root"> & {
627
642
  pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
@@ -691,6 +706,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
691
706
  tag?: string | undefined;
692
707
  boost?: number | undefined;
693
708
  hidden?: boolean | undefined;
709
+ searchable?: boolean | undefined;
694
710
  root?: string | undefined;
695
711
  }, "root"> & {
696
712
  pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
@@ -16,6 +16,7 @@ export declare const pagesSchema: z.ZodArray<z.ZodType<string | ({
16
16
  tag?: string | undefined;
17
17
  boost?: number | undefined;
18
18
  hidden?: boolean | undefined;
19
+ searchable?: boolean | undefined;
19
20
  root?: string | undefined;
20
21
  } & {
21
22
  openapi?: string | string[] | {
@@ -41,6 +42,7 @@ export declare const pagesSchema: z.ZodArray<z.ZodType<string | ({
41
42
  tag?: string | undefined;
42
43
  boost?: number | undefined;
43
44
  hidden?: boolean | undefined;
45
+ searchable?: boolean | undefined;
44
46
  root?: string | undefined;
45
47
  } & {
46
48
  openapi?: string | string[] | {
@@ -117,6 +119,7 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
117
119
  tag?: string | undefined;
118
120
  boost?: number | undefined;
119
121
  hidden?: boolean | undefined;
122
+ searchable?: boolean | undefined;
120
123
  root?: string | undefined;
121
124
  }, "root"> & {
122
125
  pages: PageOrGroupNavigation<"decorated">[];
@@ -184,6 +187,7 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
184
187
  tag?: string | undefined;
185
188
  boost?: number | undefined;
186
189
  hidden?: boolean | undefined;
190
+ searchable?: boolean | undefined;
187
191
  root?: string | undefined;
188
192
  }, "root"> & {
189
193
  pages: PageOrGroupNavigation<"decorated">[];
@@ -19,6 +19,7 @@ export declare const baseTabSchema: z.ZodObject<{
19
19
  library?: "fontawesome" | "lucide" | "tabler" | undefined;
20
20
  }>]>>;
21
21
  hidden: z.ZodOptional<z.ZodBoolean>;
22
+ searchable: z.ZodOptional<z.ZodBoolean>;
22
23
  align: z.ZodOptional<z.ZodEnum<["start", "end"]>>;
23
24
  }, "strip", z.ZodTypeAny, {
24
25
  tab: string;
@@ -29,6 +30,7 @@ export declare const baseTabSchema: z.ZodObject<{
29
30
  } | undefined;
30
31
  directory?: "none" | "card" | "accordion" | undefined;
31
32
  hidden?: boolean | undefined;
33
+ searchable?: boolean | undefined;
32
34
  align?: "start" | "end" | undefined;
33
35
  }, {
34
36
  tab: string;
@@ -39,6 +41,7 @@ export declare const baseTabSchema: z.ZodObject<{
39
41
  } | undefined;
40
42
  directory?: "none" | "card" | "accordion" | undefined;
41
43
  hidden?: boolean | undefined;
44
+ searchable?: boolean | undefined;
42
45
  align?: "start" | "end" | undefined;
43
46
  }>;
44
47
  export type BaseTabSchema = z.infer<typeof baseTabSchema>;
@@ -59,6 +62,7 @@ export declare const nonRecursiveTabSchema: z.ZodObject<{
59
62
  library?: "fontawesome" | "lucide" | "tabler" | undefined;
60
63
  }>]>>;
61
64
  hidden: z.ZodOptional<z.ZodBoolean>;
65
+ searchable: z.ZodOptional<z.ZodBoolean>;
62
66
  align: z.ZodOptional<z.ZodEnum<["start", "end"]>>;
63
67
  } & {
64
68
  href: z.ZodEffects<z.ZodString, string, string>;
@@ -72,6 +76,7 @@ export declare const nonRecursiveTabSchema: z.ZodObject<{
72
76
  } | undefined;
73
77
  directory?: "none" | "card" | "accordion" | undefined;
74
78
  hidden?: boolean | undefined;
79
+ searchable?: boolean | undefined;
75
80
  align?: "start" | "end" | undefined;
76
81
  }, {
77
82
  href: string;
@@ -83,6 +88,7 @@ export declare const nonRecursiveTabSchema: z.ZodObject<{
83
88
  } | undefined;
84
89
  directory?: "none" | "card" | "accordion" | undefined;
85
90
  hidden?: boolean | undefined;
91
+ searchable?: boolean | undefined;
86
92
  align?: "start" | "end" | undefined;
87
93
  }>;
88
94
  export declare const tabSchema: z.ZodType<TabNavigation<'default'>>;
@@ -4,6 +4,7 @@ import { hiddenSchema } from '../reusable/hidden.js';
4
4
  import { hrefSchema } from '../reusable/href.js';
5
5
  import { iconSchema } from '../reusable/icon.js';
6
6
  import { openApiSchema } from '../reusable/openapi.js';
7
+ import { searchableSchema } from '../reusable/searchable.js';
7
8
  import { anchorsSchema, decoratedAnchorsSchema } from './anchors.js';
8
9
  import { decoratedDropdownsSchema, dropdownsSchema } from './dropdown.js';
9
10
  import { globalSchema } from './global.js';
@@ -14,7 +15,7 @@ import { decoratedPagesSchema, pagesSchema } from './pages.js';
14
15
  import { decoratedProductsSchema, productsSchema } from './products.js';
15
16
  import { decoratedVersionsSchema, versionsSchema } from './version.js';
16
17
  export const tabAlignSchema = z.enum(['start', 'end']).describe('Tab alignment in the navigation');
17
- export const baseTabSchema = z.object(Object.assign({ tab: z.string().nonempty().describe('The name of the tab'), icon: iconSchema.optional(), hidden: hiddenSchema.optional(), align: tabAlignSchema.optional() }, directoryField));
18
+ export const baseTabSchema = z.object(Object.assign({ tab: z.string().nonempty().describe('The name of the tab'), icon: iconSchema.optional(), hidden: hiddenSchema.optional(), searchable: searchableSchema.optional(), align: tabAlignSchema.optional() }, directoryField));
18
19
  export const nonRecursiveTabSchema = baseTabSchema.extend({ href: hrefSchema });
19
20
  export const tabSchema = z.union([
20
21
  baseTabSchema.extend({
@@ -0,0 +1,2 @@
1
+ import { z } from 'zod';
2
+ export declare const searchableSchema: z.ZodBoolean;
@@ -0,0 +1,4 @@
1
+ import { z } from 'zod';
2
+ export const searchableSchema = z
3
+ .boolean()
4
+ .describe('When true on a hidden tab or group, descendant pages remain indexed for search, sitemap, AI assistant, and llms.txt despite being hidden from the rendered navigation. Has no effect when hidden is false.');
@@ -571,6 +571,7 @@ export declare const almondConfigSchema: z.ZodObject<{
571
571
  tag?: string | undefined;
572
572
  boost?: number | undefined;
573
573
  hidden?: boolean | undefined;
574
+ searchable?: boolean | undefined;
574
575
  root?: string | undefined;
575
576
  } & {
576
577
  openapi?: string | string[] | {
@@ -596,6 +597,7 @@ export declare const almondConfigSchema: z.ZodObject<{
596
597
  tag?: string | undefined;
597
598
  boost?: number | undefined;
598
599
  hidden?: boolean | undefined;
600
+ searchable?: boolean | undefined;
599
601
  root?: string | undefined;
600
602
  } & {
601
603
  openapi?: string | string[] | {
@@ -623,6 +625,7 @@ export declare const almondConfigSchema: z.ZodObject<{
623
625
  tag?: string | undefined;
624
626
  boost?: number | undefined;
625
627
  hidden?: boolean | undefined;
628
+ searchable?: boolean | undefined;
626
629
  root?: string | undefined;
627
630
  } & {
628
631
  openapi?: string | string[] | {
@@ -652,6 +655,7 @@ export declare const almondConfigSchema: z.ZodObject<{
652
655
  tag?: string | undefined;
653
656
  boost?: number | undefined;
654
657
  hidden?: boolean | undefined;
658
+ searchable?: boolean | undefined;
655
659
  root?: string | undefined;
656
660
  } & {
657
661
  openapi?: string | string[] | {
@@ -684,6 +688,7 @@ export declare const almondConfigSchema: z.ZodObject<{
684
688
  tag?: string | undefined;
685
689
  boost?: number | undefined;
686
690
  hidden?: boolean | undefined;
691
+ searchable?: boolean | undefined;
687
692
  root?: string | undefined;
688
693
  } & {
689
694
  openapi?: string | string[] | {
@@ -709,6 +714,7 @@ export declare const almondConfigSchema: z.ZodObject<{
709
714
  tag?: string | undefined;
710
715
  boost?: number | undefined;
711
716
  hidden?: boolean | undefined;
717
+ searchable?: boolean | undefined;
712
718
  root?: string | undefined;
713
719
  } & {
714
720
  openapi?: string | string[] | {
@@ -736,6 +742,7 @@ export declare const almondConfigSchema: z.ZodObject<{
736
742
  tag?: string | undefined;
737
743
  boost?: number | undefined;
738
744
  hidden?: boolean | undefined;
745
+ searchable?: boolean | undefined;
739
746
  root?: string | undefined;
740
747
  } & {
741
748
  openapi?: string | string[] | {
@@ -765,6 +772,7 @@ export declare const almondConfigSchema: z.ZodObject<{
765
772
  tag?: string | undefined;
766
773
  boost?: number | undefined;
767
774
  hidden?: boolean | undefined;
775
+ searchable?: boolean | undefined;
768
776
  root?: string | undefined;
769
777
  } & {
770
778
  openapi?: string | string[] | {
@@ -1639,6 +1647,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1639
1647
  tag?: string | undefined;
1640
1648
  boost?: number | undefined;
1641
1649
  hidden?: boolean | undefined;
1650
+ searchable?: boolean | undefined;
1642
1651
  root?: string | undefined;
1643
1652
  } & {
1644
1653
  openapi?: string | string[] | {
@@ -1668,6 +1677,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1668
1677
  tag?: string | undefined;
1669
1678
  boost?: number | undefined;
1670
1679
  hidden?: boolean | undefined;
1680
+ searchable?: boolean | undefined;
1671
1681
  root?: string | undefined;
1672
1682
  } & {
1673
1683
  openapi?: string | string[] | {
@@ -2012,6 +2022,7 @@ export declare const almondConfigSchema: z.ZodObject<{
2012
2022
  tag?: string | undefined;
2013
2023
  boost?: number | undefined;
2014
2024
  hidden?: boolean | undefined;
2025
+ searchable?: boolean | undefined;
2015
2026
  root?: string | undefined;
2016
2027
  } & {
2017
2028
  openapi?: string | string[] | {
@@ -2041,6 +2052,7 @@ export declare const almondConfigSchema: z.ZodObject<{
2041
2052
  tag?: string | undefined;
2042
2053
  boost?: number | undefined;
2043
2054
  hidden?: boolean | undefined;
2055
+ searchable?: boolean | undefined;
2044
2056
  root?: string | undefined;
2045
2057
  } & {
2046
2058
  openapi?: string | string[] | {
@@ -571,6 +571,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
571
571
  tag?: string | undefined;
572
572
  boost?: number | undefined;
573
573
  hidden?: boolean | undefined;
574
+ searchable?: boolean | undefined;
574
575
  root?: string | undefined;
575
576
  } & {
576
577
  openapi?: string | string[] | {
@@ -596,6 +597,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
596
597
  tag?: string | undefined;
597
598
  boost?: number | undefined;
598
599
  hidden?: boolean | undefined;
600
+ searchable?: boolean | undefined;
599
601
  root?: string | undefined;
600
602
  } & {
601
603
  openapi?: string | string[] | {
@@ -623,6 +625,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
623
625
  tag?: string | undefined;
624
626
  boost?: number | undefined;
625
627
  hidden?: boolean | undefined;
628
+ searchable?: boolean | undefined;
626
629
  root?: string | undefined;
627
630
  } & {
628
631
  openapi?: string | string[] | {
@@ -652,6 +655,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
652
655
  tag?: string | undefined;
653
656
  boost?: number | undefined;
654
657
  hidden?: boolean | undefined;
658
+ searchable?: boolean | undefined;
655
659
  root?: string | undefined;
656
660
  } & {
657
661
  openapi?: string | string[] | {
@@ -684,6 +688,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
684
688
  tag?: string | undefined;
685
689
  boost?: number | undefined;
686
690
  hidden?: boolean | undefined;
691
+ searchable?: boolean | undefined;
687
692
  root?: string | undefined;
688
693
  } & {
689
694
  openapi?: string | string[] | {
@@ -709,6 +714,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
709
714
  tag?: string | undefined;
710
715
  boost?: number | undefined;
711
716
  hidden?: boolean | undefined;
717
+ searchable?: boolean | undefined;
712
718
  root?: string | undefined;
713
719
  } & {
714
720
  openapi?: string | string[] | {
@@ -736,6 +742,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
736
742
  tag?: string | undefined;
737
743
  boost?: number | undefined;
738
744
  hidden?: boolean | undefined;
745
+ searchable?: boolean | undefined;
739
746
  root?: string | undefined;
740
747
  } & {
741
748
  openapi?: string | string[] | {
@@ -765,6 +772,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
765
772
  tag?: string | undefined;
766
773
  boost?: number | undefined;
767
774
  hidden?: boolean | undefined;
775
+ searchable?: boolean | undefined;
768
776
  root?: string | undefined;
769
777
  } & {
770
778
  openapi?: string | string[] | {
@@ -1639,6 +1647,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1639
1647
  tag?: string | undefined;
1640
1648
  boost?: number | undefined;
1641
1649
  hidden?: boolean | undefined;
1650
+ searchable?: boolean | undefined;
1642
1651
  root?: string | undefined;
1643
1652
  } & {
1644
1653
  openapi?: string | string[] | {
@@ -1668,6 +1677,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1668
1677
  tag?: string | undefined;
1669
1678
  boost?: number | undefined;
1670
1679
  hidden?: boolean | undefined;
1680
+ searchable?: boolean | undefined;
1671
1681
  root?: string | undefined;
1672
1682
  } & {
1673
1683
  openapi?: string | string[] | {
@@ -2012,6 +2022,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
2012
2022
  tag?: string | undefined;
2013
2023
  boost?: number | undefined;
2014
2024
  hidden?: boolean | undefined;
2025
+ searchable?: boolean | undefined;
2015
2026
  root?: string | undefined;
2016
2027
  } & {
2017
2028
  openapi?: string | string[] | {
@@ -2041,6 +2052,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
2041
2052
  tag?: string | undefined;
2042
2053
  boost?: number | undefined;
2043
2054
  hidden?: boolean | undefined;
2055
+ searchable?: boolean | undefined;
2044
2056
  root?: string | undefined;
2045
2057
  } & {
2046
2058
  openapi?: string | string[] | {
@@ -571,6 +571,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
571
571
  tag?: string | undefined;
572
572
  boost?: number | undefined;
573
573
  hidden?: boolean | undefined;
574
+ searchable?: boolean | undefined;
574
575
  root?: string | undefined;
575
576
  } & {
576
577
  openapi?: string | string[] | {
@@ -596,6 +597,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
596
597
  tag?: string | undefined;
597
598
  boost?: number | undefined;
598
599
  hidden?: boolean | undefined;
600
+ searchable?: boolean | undefined;
599
601
  root?: string | undefined;
600
602
  } & {
601
603
  openapi?: string | string[] | {
@@ -623,6 +625,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
623
625
  tag?: string | undefined;
624
626
  boost?: number | undefined;
625
627
  hidden?: boolean | undefined;
628
+ searchable?: boolean | undefined;
626
629
  root?: string | undefined;
627
630
  } & {
628
631
  openapi?: string | string[] | {
@@ -652,6 +655,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
652
655
  tag?: string | undefined;
653
656
  boost?: number | undefined;
654
657
  hidden?: boolean | undefined;
658
+ searchable?: boolean | undefined;
655
659
  root?: string | undefined;
656
660
  } & {
657
661
  openapi?: string | string[] | {
@@ -684,6 +688,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
684
688
  tag?: string | undefined;
685
689
  boost?: number | undefined;
686
690
  hidden?: boolean | undefined;
691
+ searchable?: boolean | undefined;
687
692
  root?: string | undefined;
688
693
  } & {
689
694
  openapi?: string | string[] | {
@@ -709,6 +714,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
709
714
  tag?: string | undefined;
710
715
  boost?: number | undefined;
711
716
  hidden?: boolean | undefined;
717
+ searchable?: boolean | undefined;
712
718
  root?: string | undefined;
713
719
  } & {
714
720
  openapi?: string | string[] | {
@@ -736,6 +742,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
736
742
  tag?: string | undefined;
737
743
  boost?: number | undefined;
738
744
  hidden?: boolean | undefined;
745
+ searchable?: boolean | undefined;
739
746
  root?: string | undefined;
740
747
  } & {
741
748
  openapi?: string | string[] | {
@@ -765,6 +772,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
765
772
  tag?: string | undefined;
766
773
  boost?: number | undefined;
767
774
  hidden?: boolean | undefined;
775
+ searchable?: boolean | undefined;
768
776
  root?: string | undefined;
769
777
  } & {
770
778
  openapi?: string | string[] | {
@@ -1639,6 +1647,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1639
1647
  tag?: string | undefined;
1640
1648
  boost?: number | undefined;
1641
1649
  hidden?: boolean | undefined;
1650
+ searchable?: boolean | undefined;
1642
1651
  root?: string | undefined;
1643
1652
  } & {
1644
1653
  openapi?: string | string[] | {
@@ -1668,6 +1677,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1668
1677
  tag?: string | undefined;
1669
1678
  boost?: number | undefined;
1670
1679
  hidden?: boolean | undefined;
1680
+ searchable?: boolean | undefined;
1671
1681
  root?: string | undefined;
1672
1682
  } & {
1673
1683
  openapi?: string | string[] | {
@@ -2012,6 +2022,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
2012
2022
  tag?: string | undefined;
2013
2023
  boost?: number | undefined;
2014
2024
  hidden?: boolean | undefined;
2025
+ searchable?: boolean | undefined;
2015
2026
  root?: string | undefined;
2016
2027
  } & {
2017
2028
  openapi?: string | string[] | {
@@ -2041,6 +2052,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
2041
2052
  tag?: string | undefined;
2042
2053
  boost?: number | undefined;
2043
2054
  hidden?: boolean | undefined;
2055
+ searchable?: boolean | undefined;
2044
2056
  root?: string | undefined;
2045
2057
  } & {
2046
2058
  openapi?: string | string[] | {