@mintlify/validation 0.1.678 → 0.1.680

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.
@@ -10,6 +10,7 @@ export declare const baseGroupSchema: z.ZodObject<{
10
10
  directory: z.ZodOptional<z.ZodEnum<["none", "accordion", "card"]>>;
11
11
  group: z.ZodString;
12
12
  public: z.ZodOptional<z.ZodBoolean>;
13
+ boost: z.ZodOptional<z.ZodNumber>;
13
14
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
14
15
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
15
16
  name: z.ZodEffects<z.ZodString, string, string>;
@@ -38,6 +39,7 @@ export declare const baseGroupSchema: z.ZodObject<{
38
39
  public?: boolean | undefined;
39
40
  directory?: "none" | "card" | "accordion" | undefined;
40
41
  tag?: string | undefined;
42
+ boost?: number | undefined;
41
43
  hidden?: boolean | undefined;
42
44
  root?: string | undefined;
43
45
  }, {
@@ -51,6 +53,7 @@ export declare const baseGroupSchema: z.ZodObject<{
51
53
  public?: boolean | undefined;
52
54
  directory?: "none" | "card" | "accordion" | undefined;
53
55
  tag?: string | undefined;
56
+ boost?: number | undefined;
54
57
  hidden?: boolean | undefined;
55
58
  root?: string | undefined;
56
59
  }>;
@@ -68,6 +71,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodType<{
68
71
  public?: boolean | undefined;
69
72
  directory?: "none" | "card" | "accordion" | undefined;
70
73
  tag?: string | undefined;
74
+ boost?: number | undefined;
71
75
  hidden?: boolean | undefined;
72
76
  root?: string | undefined;
73
77
  } & {
@@ -92,6 +96,7 @@ export declare const groupsSchema: z.ZodArray<z.ZodType<{
92
96
  public?: boolean | undefined;
93
97
  directory?: "none" | "card" | "accordion" | undefined;
94
98
  tag?: string | undefined;
99
+ boost?: number | undefined;
95
100
  hidden?: boolean | undefined;
96
101
  root?: string | undefined;
97
102
  } & {
@@ -117,6 +122,7 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodType<Omit<{
117
122
  public?: boolean | undefined;
118
123
  directory?: "none" | "card" | "accordion" | undefined;
119
124
  tag?: string | undefined;
125
+ boost?: number | undefined;
120
126
  hidden?: boolean | undefined;
121
127
  root?: string | undefined;
122
128
  }, "root"> & {
@@ -133,6 +139,7 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodType<Omit<{
133
139
  public?: boolean | undefined;
134
140
  directory?: "none" | "card" | "accordion" | undefined;
135
141
  tag?: string | undefined;
142
+ boost?: number | undefined;
136
143
  hidden?: boolean | undefined;
137
144
  root?: string | undefined;
138
145
  }, "root"> & {
@@ -13,7 +13,10 @@ export const directoryField = {
13
13
  .optional()
14
14
  .describe('Directory layout for this navigation node and its descendants. "accordion" and "card" show automatic directory UI on eligible root pages; "none" disables it. Inherits recursively; descendants can override.'),
15
15
  };
16
- 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'), 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));
16
+ 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
+ .number()
18
+ .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));
17
20
  export const groupSchema = z
18
21
  .union([
19
22
  baseGroupSchema.extend({
@@ -28,7 +31,10 @@ export const groupSchema = z
28
31
  ])
29
32
  .describe('Organizing by groups');
30
33
  export const decoratedGroupSchema = z
31
- .object(Object.assign({ group: z.string().nonempty().describe('The name of the group'), public: z.boolean().optional().describe('Whether the group is public'), 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))
34
+ .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
+ .number()
36
+ .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))
32
38
  .describe('Organizing by groups');
33
39
  export const groupsSchema = z
34
40
  .array(groupSchema)
@@ -100,6 +100,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
100
100
  public?: boolean | undefined;
101
101
  directory?: "none" | "card" | "accordion" | undefined;
102
102
  tag?: string | undefined;
103
+ boost?: number | undefined;
103
104
  hidden?: boolean | undefined;
104
105
  root?: string | undefined;
105
106
  } & {
@@ -124,6 +125,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
124
125
  public?: boolean | undefined;
125
126
  directory?: "none" | "card" | "accordion" | undefined;
126
127
  tag?: string | undefined;
128
+ boost?: number | undefined;
127
129
  hidden?: boolean | undefined;
128
130
  root?: string | undefined;
129
131
  } & {
@@ -150,6 +152,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
150
152
  public?: boolean | undefined;
151
153
  directory?: "none" | "card" | "accordion" | undefined;
152
154
  tag?: string | undefined;
155
+ boost?: number | undefined;
153
156
  hidden?: boolean | undefined;
154
157
  root?: string | undefined;
155
158
  } & {
@@ -178,6 +181,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
178
181
  public?: boolean | undefined;
179
182
  directory?: "none" | "card" | "accordion" | undefined;
180
183
  tag?: string | undefined;
184
+ boost?: number | undefined;
181
185
  hidden?: boolean | undefined;
182
186
  root?: string | undefined;
183
187
  } & {
@@ -209,6 +213,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
209
213
  public?: boolean | undefined;
210
214
  directory?: "none" | "card" | "accordion" | undefined;
211
215
  tag?: string | undefined;
216
+ boost?: number | undefined;
212
217
  hidden?: boolean | undefined;
213
218
  root?: string | undefined;
214
219
  } & {
@@ -233,6 +238,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
233
238
  public?: boolean | undefined;
234
239
  directory?: "none" | "card" | "accordion" | undefined;
235
240
  tag?: string | undefined;
241
+ boost?: number | undefined;
236
242
  hidden?: boolean | undefined;
237
243
  root?: string | undefined;
238
244
  } & {
@@ -259,6 +265,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
259
265
  public?: boolean | undefined;
260
266
  directory?: "none" | "card" | "accordion" | undefined;
261
267
  tag?: string | undefined;
268
+ boost?: number | undefined;
262
269
  hidden?: boolean | undefined;
263
270
  root?: string | undefined;
264
271
  } & {
@@ -287,6 +294,7 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
287
294
  public?: boolean | undefined;
288
295
  directory?: "none" | "card" | "accordion" | undefined;
289
296
  tag?: string | undefined;
297
+ boost?: number | undefined;
290
298
  hidden?: boolean | undefined;
291
299
  root?: string | undefined;
292
300
  } & {
@@ -352,6 +360,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
352
360
  public?: boolean | undefined;
353
361
  directory?: "none" | "card" | "accordion" | undefined;
354
362
  tag?: string | undefined;
363
+ boost?: number | undefined;
355
364
  hidden?: boolean | undefined;
356
365
  root?: string | undefined;
357
366
  }, "root"> & {
@@ -368,6 +377,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
368
377
  public?: boolean | undefined;
369
378
  directory?: "none" | "card" | "accordion" | undefined;
370
379
  tag?: string | undefined;
380
+ boost?: number | undefined;
371
381
  hidden?: boolean | undefined;
372
382
  root?: string | undefined;
373
383
  }, "root"> & {
@@ -386,6 +396,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
386
396
  public?: boolean | undefined;
387
397
  directory?: "none" | "card" | "accordion" | undefined;
388
398
  tag?: string | undefined;
399
+ boost?: number | undefined;
389
400
  hidden?: boolean | undefined;
390
401
  root?: string | undefined;
391
402
  }, "root"> & {
@@ -404,6 +415,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
404
415
  public?: boolean | undefined;
405
416
  directory?: "none" | "card" | "accordion" | undefined;
406
417
  tag?: string | undefined;
418
+ boost?: number | undefined;
407
419
  hidden?: boolean | undefined;
408
420
  root?: string | undefined;
409
421
  }, "root"> & {
@@ -452,6 +464,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
452
464
  noindex: z.ZodOptional<z.ZodBoolean>;
453
465
  isPublic: z.ZodOptional<z.ZodBoolean>;
454
466
  public: z.ZodOptional<z.ZodBoolean>;
467
+ boost: z.ZodOptional<z.ZodNumber>;
455
468
  deprecated: z.ZodOptional<z.ZodBoolean>;
456
469
  hidden: z.ZodOptional<z.ZodBoolean>;
457
470
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -470,6 +483,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
470
483
  public?: boolean | undefined;
471
484
  directory?: "none" | "card" | "accordion" | undefined;
472
485
  tag?: string | undefined;
486
+ boost?: number | undefined;
473
487
  hidden?: boolean | undefined;
474
488
  root?: string | undefined;
475
489
  }, "root"> & {
@@ -516,6 +530,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
516
530
  noindex: z.ZodOptional<z.ZodBoolean>;
517
531
  isPublic: z.ZodOptional<z.ZodBoolean>;
518
532
  public: z.ZodOptional<z.ZodBoolean>;
533
+ boost: z.ZodOptional<z.ZodNumber>;
519
534
  deprecated: z.ZodOptional<z.ZodBoolean>;
520
535
  hidden: z.ZodOptional<z.ZodBoolean>;
521
536
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -534,6 +549,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
534
549
  public?: boolean | undefined;
535
550
  directory?: "none" | "card" | "accordion" | undefined;
536
551
  tag?: string | undefined;
552
+ boost?: number | undefined;
537
553
  hidden?: boolean | undefined;
538
554
  root?: string | undefined;
539
555
  }, "root"> & {
@@ -582,6 +598,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
582
598
  noindex: z.ZodOptional<z.ZodBoolean>;
583
599
  isPublic: z.ZodOptional<z.ZodBoolean>;
584
600
  public: z.ZodOptional<z.ZodBoolean>;
601
+ boost: z.ZodOptional<z.ZodNumber>;
585
602
  deprecated: z.ZodOptional<z.ZodBoolean>;
586
603
  hidden: z.ZodOptional<z.ZodBoolean>;
587
604
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -600,6 +617,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
600
617
  public?: boolean | undefined;
601
618
  directory?: "none" | "card" | "accordion" | undefined;
602
619
  tag?: string | undefined;
620
+ boost?: number | undefined;
603
621
  hidden?: boolean | undefined;
604
622
  root?: string | undefined;
605
623
  }, "root"> & {
@@ -648,6 +666,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
648
666
  noindex: z.ZodOptional<z.ZodBoolean>;
649
667
  isPublic: z.ZodOptional<z.ZodBoolean>;
650
668
  public: z.ZodOptional<z.ZodBoolean>;
669
+ boost: z.ZodOptional<z.ZodNumber>;
651
670
  deprecated: z.ZodOptional<z.ZodBoolean>;
652
671
  hidden: z.ZodOptional<z.ZodBoolean>;
653
672
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -666,6 +685,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
666
685
  public?: boolean | undefined;
667
686
  directory?: "none" | "card" | "accordion" | undefined;
668
687
  tag?: string | undefined;
688
+ boost?: number | undefined;
669
689
  hidden?: boolean | undefined;
670
690
  root?: string | undefined;
671
691
  }, "root"> & {
@@ -14,6 +14,7 @@ export declare const pagesSchema: z.ZodArray<z.ZodType<string | ({
14
14
  public?: boolean | undefined;
15
15
  directory?: "none" | "card" | "accordion" | undefined;
16
16
  tag?: string | undefined;
17
+ boost?: number | undefined;
17
18
  hidden?: boolean | undefined;
18
19
  root?: string | undefined;
19
20
  } & {
@@ -38,6 +39,7 @@ export declare const pagesSchema: z.ZodArray<z.ZodType<string | ({
38
39
  public?: boolean | undefined;
39
40
  directory?: "none" | "card" | "accordion" | undefined;
40
41
  tag?: string | undefined;
42
+ boost?: number | undefined;
41
43
  hidden?: boolean | undefined;
42
44
  root?: string | undefined;
43
45
  } & {
@@ -93,6 +95,7 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
93
95
  noindex: z.ZodOptional<z.ZodBoolean>;
94
96
  isPublic: z.ZodOptional<z.ZodBoolean>;
95
97
  public: z.ZodOptional<z.ZodBoolean>;
98
+ boost: z.ZodOptional<z.ZodNumber>;
96
99
  deprecated: z.ZodOptional<z.ZodBoolean>;
97
100
  hidden: z.ZodOptional<z.ZodBoolean>;
98
101
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -111,6 +114,7 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
111
114
  public?: boolean | undefined;
112
115
  directory?: "none" | "card" | "accordion" | undefined;
113
116
  tag?: string | undefined;
117
+ boost?: number | undefined;
114
118
  hidden?: boolean | undefined;
115
119
  root?: string | undefined;
116
120
  }, "root"> & {
@@ -157,6 +161,7 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
157
161
  noindex: z.ZodOptional<z.ZodBoolean>;
158
162
  isPublic: z.ZodOptional<z.ZodBoolean>;
159
163
  public: z.ZodOptional<z.ZodBoolean>;
164
+ boost: z.ZodOptional<z.ZodNumber>;
160
165
  deprecated: z.ZodOptional<z.ZodBoolean>;
161
166
  hidden: z.ZodOptional<z.ZodBoolean>;
162
167
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -175,6 +180,7 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
175
180
  public?: boolean | undefined;
176
181
  directory?: "none" | "card" | "accordion" | undefined;
177
182
  tag?: string | undefined;
183
+ boost?: number | undefined;
178
184
  hidden?: boolean | undefined;
179
185
  root?: string | undefined;
180
186
  }, "root"> & {
@@ -41,6 +41,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
41
41
  noindex: z.ZodOptional<z.ZodBoolean>;
42
42
  isPublic: z.ZodOptional<z.ZodBoolean>;
43
43
  public: z.ZodOptional<z.ZodBoolean>;
44
+ boost: z.ZodOptional<z.ZodNumber>;
44
45
  deprecated: z.ZodOptional<z.ZodBoolean>;
45
46
  hidden: z.ZodOptional<z.ZodBoolean>;
46
47
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -89,6 +90,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
89
90
  noindex: z.ZodOptional<z.ZodBoolean>;
90
91
  isPublic: z.ZodOptional<z.ZodBoolean>;
91
92
  public: z.ZodOptional<z.ZodBoolean>;
93
+ boost: z.ZodOptional<z.ZodNumber>;
92
94
  deprecated: z.ZodOptional<z.ZodBoolean>;
93
95
  hidden: z.ZodOptional<z.ZodBoolean>;
94
96
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -137,6 +139,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
137
139
  noindex: z.ZodOptional<z.ZodBoolean>;
138
140
  isPublic: z.ZodOptional<z.ZodBoolean>;
139
141
  public: z.ZodOptional<z.ZodBoolean>;
142
+ boost: z.ZodOptional<z.ZodNumber>;
140
143
  deprecated: z.ZodOptional<z.ZodBoolean>;
141
144
  hidden: z.ZodOptional<z.ZodBoolean>;
142
145
  groups: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
@@ -37,6 +37,7 @@ export const decoratedPageSchema = z
37
37
  noindex: z.boolean().optional(),
38
38
  isPublic: z.boolean().optional(),
39
39
  public: z.boolean().optional(),
40
+ boost: z.number().optional(),
40
41
  deprecated: z.boolean().optional(),
41
42
  hidden: z.boolean().optional(),
42
43
  groups: z.array(z.string()).optional(),
@@ -569,6 +569,7 @@ export declare const almondConfigSchema: z.ZodObject<{
569
569
  public?: boolean | undefined;
570
570
  directory?: "none" | "card" | "accordion" | undefined;
571
571
  tag?: string | undefined;
572
+ boost?: number | undefined;
572
573
  hidden?: boolean | undefined;
573
574
  root?: string | undefined;
574
575
  } & {
@@ -593,6 +594,7 @@ export declare const almondConfigSchema: z.ZodObject<{
593
594
  public?: boolean | undefined;
594
595
  directory?: "none" | "card" | "accordion" | undefined;
595
596
  tag?: string | undefined;
597
+ boost?: number | undefined;
596
598
  hidden?: boolean | undefined;
597
599
  root?: string | undefined;
598
600
  } & {
@@ -619,6 +621,7 @@ export declare const almondConfigSchema: z.ZodObject<{
619
621
  public?: boolean | undefined;
620
622
  directory?: "none" | "card" | "accordion" | undefined;
621
623
  tag?: string | undefined;
624
+ boost?: number | undefined;
622
625
  hidden?: boolean | undefined;
623
626
  root?: string | undefined;
624
627
  } & {
@@ -647,6 +650,7 @@ export declare const almondConfigSchema: z.ZodObject<{
647
650
  public?: boolean | undefined;
648
651
  directory?: "none" | "card" | "accordion" | undefined;
649
652
  tag?: string | undefined;
653
+ boost?: number | undefined;
650
654
  hidden?: boolean | undefined;
651
655
  root?: string | undefined;
652
656
  } & {
@@ -678,6 +682,7 @@ export declare const almondConfigSchema: z.ZodObject<{
678
682
  public?: boolean | undefined;
679
683
  directory?: "none" | "card" | "accordion" | undefined;
680
684
  tag?: string | undefined;
685
+ boost?: number | undefined;
681
686
  hidden?: boolean | undefined;
682
687
  root?: string | undefined;
683
688
  } & {
@@ -702,6 +707,7 @@ export declare const almondConfigSchema: z.ZodObject<{
702
707
  public?: boolean | undefined;
703
708
  directory?: "none" | "card" | "accordion" | undefined;
704
709
  tag?: string | undefined;
710
+ boost?: number | undefined;
705
711
  hidden?: boolean | undefined;
706
712
  root?: string | undefined;
707
713
  } & {
@@ -728,6 +734,7 @@ export declare const almondConfigSchema: z.ZodObject<{
728
734
  public?: boolean | undefined;
729
735
  directory?: "none" | "card" | "accordion" | undefined;
730
736
  tag?: string | undefined;
737
+ boost?: number | undefined;
731
738
  hidden?: boolean | undefined;
732
739
  root?: string | undefined;
733
740
  } & {
@@ -756,6 +763,7 @@ export declare const almondConfigSchema: z.ZodObject<{
756
763
  public?: boolean | undefined;
757
764
  directory?: "none" | "card" | "accordion" | undefined;
758
765
  tag?: string | undefined;
766
+ boost?: number | undefined;
759
767
  hidden?: boolean | undefined;
760
768
  root?: string | undefined;
761
769
  } & {
@@ -1622,6 +1630,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1622
1630
  public?: boolean | undefined;
1623
1631
  directory?: "none" | "card" | "accordion" | undefined;
1624
1632
  tag?: string | undefined;
1633
+ boost?: number | undefined;
1625
1634
  hidden?: boolean | undefined;
1626
1635
  root?: string | undefined;
1627
1636
  } & {
@@ -1650,6 +1659,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1650
1659
  public?: boolean | undefined;
1651
1660
  directory?: "none" | "card" | "accordion" | undefined;
1652
1661
  tag?: string | undefined;
1662
+ boost?: number | undefined;
1653
1663
  hidden?: boolean | undefined;
1654
1664
  root?: string | undefined;
1655
1665
  } & {
@@ -1990,6 +2000,7 @@ export declare const almondConfigSchema: z.ZodObject<{
1990
2000
  public?: boolean | undefined;
1991
2001
  directory?: "none" | "card" | "accordion" | undefined;
1992
2002
  tag?: string | undefined;
2003
+ boost?: number | undefined;
1993
2004
  hidden?: boolean | undefined;
1994
2005
  root?: string | undefined;
1995
2006
  } & {
@@ -2018,6 +2029,7 @@ export declare const almondConfigSchema: z.ZodObject<{
2018
2029
  public?: boolean | undefined;
2019
2030
  directory?: "none" | "card" | "accordion" | undefined;
2020
2031
  tag?: string | undefined;
2032
+ boost?: number | undefined;
2021
2033
  hidden?: boolean | undefined;
2022
2034
  root?: string | undefined;
2023
2035
  } & {
@@ -569,6 +569,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
569
569
  public?: boolean | undefined;
570
570
  directory?: "none" | "card" | "accordion" | undefined;
571
571
  tag?: string | undefined;
572
+ boost?: number | undefined;
572
573
  hidden?: boolean | undefined;
573
574
  root?: string | undefined;
574
575
  } & {
@@ -593,6 +594,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
593
594
  public?: boolean | undefined;
594
595
  directory?: "none" | "card" | "accordion" | undefined;
595
596
  tag?: string | undefined;
597
+ boost?: number | undefined;
596
598
  hidden?: boolean | undefined;
597
599
  root?: string | undefined;
598
600
  } & {
@@ -619,6 +621,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
619
621
  public?: boolean | undefined;
620
622
  directory?: "none" | "card" | "accordion" | undefined;
621
623
  tag?: string | undefined;
624
+ boost?: number | undefined;
622
625
  hidden?: boolean | undefined;
623
626
  root?: string | undefined;
624
627
  } & {
@@ -647,6 +650,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
647
650
  public?: boolean | undefined;
648
651
  directory?: "none" | "card" | "accordion" | undefined;
649
652
  tag?: string | undefined;
653
+ boost?: number | undefined;
650
654
  hidden?: boolean | undefined;
651
655
  root?: string | undefined;
652
656
  } & {
@@ -678,6 +682,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
678
682
  public?: boolean | undefined;
679
683
  directory?: "none" | "card" | "accordion" | undefined;
680
684
  tag?: string | undefined;
685
+ boost?: number | undefined;
681
686
  hidden?: boolean | undefined;
682
687
  root?: string | undefined;
683
688
  } & {
@@ -702,6 +707,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
702
707
  public?: boolean | undefined;
703
708
  directory?: "none" | "card" | "accordion" | undefined;
704
709
  tag?: string | undefined;
710
+ boost?: number | undefined;
705
711
  hidden?: boolean | undefined;
706
712
  root?: string | undefined;
707
713
  } & {
@@ -728,6 +734,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
728
734
  public?: boolean | undefined;
729
735
  directory?: "none" | "card" | "accordion" | undefined;
730
736
  tag?: string | undefined;
737
+ boost?: number | undefined;
731
738
  hidden?: boolean | undefined;
732
739
  root?: string | undefined;
733
740
  } & {
@@ -756,6 +763,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
756
763
  public?: boolean | undefined;
757
764
  directory?: "none" | "card" | "accordion" | undefined;
758
765
  tag?: string | undefined;
766
+ boost?: number | undefined;
759
767
  hidden?: boolean | undefined;
760
768
  root?: string | undefined;
761
769
  } & {
@@ -1622,6 +1630,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1622
1630
  public?: boolean | undefined;
1623
1631
  directory?: "none" | "card" | "accordion" | undefined;
1624
1632
  tag?: string | undefined;
1633
+ boost?: number | undefined;
1625
1634
  hidden?: boolean | undefined;
1626
1635
  root?: string | undefined;
1627
1636
  } & {
@@ -1650,6 +1659,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1650
1659
  public?: boolean | undefined;
1651
1660
  directory?: "none" | "card" | "accordion" | undefined;
1652
1661
  tag?: string | undefined;
1662
+ boost?: number | undefined;
1653
1663
  hidden?: boolean | undefined;
1654
1664
  root?: string | undefined;
1655
1665
  } & {
@@ -1990,6 +2000,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
1990
2000
  public?: boolean | undefined;
1991
2001
  directory?: "none" | "card" | "accordion" | undefined;
1992
2002
  tag?: string | undefined;
2003
+ boost?: number | undefined;
1993
2004
  hidden?: boolean | undefined;
1994
2005
  root?: string | undefined;
1995
2006
  } & {
@@ -2018,6 +2029,7 @@ export declare const aspenConfigSchema: z.ZodObject<{
2018
2029
  public?: boolean | undefined;
2019
2030
  directory?: "none" | "card" | "accordion" | undefined;
2020
2031
  tag?: string | undefined;
2032
+ boost?: number | undefined;
2021
2033
  hidden?: boolean | undefined;
2022
2034
  root?: string | undefined;
2023
2035
  } & {
@@ -569,6 +569,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
569
569
  public?: boolean | undefined;
570
570
  directory?: "none" | "card" | "accordion" | undefined;
571
571
  tag?: string | undefined;
572
+ boost?: number | undefined;
572
573
  hidden?: boolean | undefined;
573
574
  root?: string | undefined;
574
575
  } & {
@@ -593,6 +594,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
593
594
  public?: boolean | undefined;
594
595
  directory?: "none" | "card" | "accordion" | undefined;
595
596
  tag?: string | undefined;
597
+ boost?: number | undefined;
596
598
  hidden?: boolean | undefined;
597
599
  root?: string | undefined;
598
600
  } & {
@@ -619,6 +621,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
619
621
  public?: boolean | undefined;
620
622
  directory?: "none" | "card" | "accordion" | undefined;
621
623
  tag?: string | undefined;
624
+ boost?: number | undefined;
622
625
  hidden?: boolean | undefined;
623
626
  root?: string | undefined;
624
627
  } & {
@@ -647,6 +650,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
647
650
  public?: boolean | undefined;
648
651
  directory?: "none" | "card" | "accordion" | undefined;
649
652
  tag?: string | undefined;
653
+ boost?: number | undefined;
650
654
  hidden?: boolean | undefined;
651
655
  root?: string | undefined;
652
656
  } & {
@@ -678,6 +682,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
678
682
  public?: boolean | undefined;
679
683
  directory?: "none" | "card" | "accordion" | undefined;
680
684
  tag?: string | undefined;
685
+ boost?: number | undefined;
681
686
  hidden?: boolean | undefined;
682
687
  root?: string | undefined;
683
688
  } & {
@@ -702,6 +707,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
702
707
  public?: boolean | undefined;
703
708
  directory?: "none" | "card" | "accordion" | undefined;
704
709
  tag?: string | undefined;
710
+ boost?: number | undefined;
705
711
  hidden?: boolean | undefined;
706
712
  root?: string | undefined;
707
713
  } & {
@@ -728,6 +734,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
728
734
  public?: boolean | undefined;
729
735
  directory?: "none" | "card" | "accordion" | undefined;
730
736
  tag?: string | undefined;
737
+ boost?: number | undefined;
731
738
  hidden?: boolean | undefined;
732
739
  root?: string | undefined;
733
740
  } & {
@@ -756,6 +763,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
756
763
  public?: boolean | undefined;
757
764
  directory?: "none" | "card" | "accordion" | undefined;
758
765
  tag?: string | undefined;
766
+ boost?: number | undefined;
759
767
  hidden?: boolean | undefined;
760
768
  root?: string | undefined;
761
769
  } & {
@@ -1622,6 +1630,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1622
1630
  public?: boolean | undefined;
1623
1631
  directory?: "none" | "card" | "accordion" | undefined;
1624
1632
  tag?: string | undefined;
1633
+ boost?: number | undefined;
1625
1634
  hidden?: boolean | undefined;
1626
1635
  root?: string | undefined;
1627
1636
  } & {
@@ -1650,6 +1659,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1650
1659
  public?: boolean | undefined;
1651
1660
  directory?: "none" | "card" | "accordion" | undefined;
1652
1661
  tag?: string | undefined;
1662
+ boost?: number | undefined;
1653
1663
  hidden?: boolean | undefined;
1654
1664
  root?: string | undefined;
1655
1665
  } & {
@@ -1990,6 +2000,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
1990
2000
  public?: boolean | undefined;
1991
2001
  directory?: "none" | "card" | "accordion" | undefined;
1992
2002
  tag?: string | undefined;
2003
+ boost?: number | undefined;
1993
2004
  hidden?: boolean | undefined;
1994
2005
  root?: string | undefined;
1995
2006
  } & {
@@ -2018,6 +2029,7 @@ export declare const lindenConfigSchema: z.ZodObject<{
2018
2029
  public?: boolean | undefined;
2019
2030
  directory?: "none" | "card" | "accordion" | undefined;
2020
2031
  tag?: string | undefined;
2032
+ boost?: number | undefined;
2021
2033
  hidden?: boolean | undefined;
2022
2034
  root?: string | undefined;
2023
2035
  } & {