@mintlify/validation 0.1.754 → 0.1.756
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.
- package/dist/mint-config/schemas/v2/index.d.ts +120 -120
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +6 -6
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +20 -16
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +6 -4
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +4 -4
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +3 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +1 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +12 -12
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +12 -12
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +12 -12
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +12 -12
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +12 -12
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +12 -12
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +12 -12
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +8 -8
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +12 -12
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +12 -12
- package/dist/mint-config/validateConfig.d.ts +36 -36
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -40,9 +40,9 @@ export declare const baseGroupSchema: z.ZodObject<{
|
|
|
40
40
|
public?: boolean | undefined;
|
|
41
41
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
42
42
|
tag?: string | undefined;
|
|
43
|
+
searchable?: boolean | undefined;
|
|
43
44
|
boost?: number | undefined;
|
|
44
45
|
hidden?: boolean | undefined;
|
|
45
|
-
searchable?: boolean | undefined;
|
|
46
46
|
root?: string | undefined;
|
|
47
47
|
}, {
|
|
48
48
|
group: string;
|
|
@@ -55,9 +55,9 @@ export declare const baseGroupSchema: z.ZodObject<{
|
|
|
55
55
|
public?: boolean | undefined;
|
|
56
56
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
57
57
|
tag?: string | undefined;
|
|
58
|
+
searchable?: boolean | undefined;
|
|
58
59
|
boost?: number | undefined;
|
|
59
60
|
hidden?: boolean | undefined;
|
|
60
|
-
searchable?: boolean | undefined;
|
|
61
61
|
root?: string | undefined;
|
|
62
62
|
}>;
|
|
63
63
|
export type BaseGroupSchema = z.infer<typeof baseGroupSchema>;
|
|
@@ -74,9 +74,9 @@ export declare const groupsSchema: z.ZodArray<z.ZodType<{
|
|
|
74
74
|
public?: boolean | undefined;
|
|
75
75
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
76
76
|
tag?: string | undefined;
|
|
77
|
+
searchable?: boolean | undefined;
|
|
77
78
|
boost?: number | undefined;
|
|
78
79
|
hidden?: boolean | undefined;
|
|
79
|
-
searchable?: boolean | undefined;
|
|
80
80
|
root?: string | undefined;
|
|
81
81
|
} & {
|
|
82
82
|
openapi?: string | string[] | {
|
|
@@ -100,9 +100,9 @@ export declare const groupsSchema: z.ZodArray<z.ZodType<{
|
|
|
100
100
|
public?: boolean | undefined;
|
|
101
101
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
102
102
|
tag?: string | undefined;
|
|
103
|
+
searchable?: boolean | undefined;
|
|
103
104
|
boost?: number | undefined;
|
|
104
105
|
hidden?: boolean | undefined;
|
|
105
|
-
searchable?: boolean | undefined;
|
|
106
106
|
root?: string | undefined;
|
|
107
107
|
} & {
|
|
108
108
|
openapi?: string | string[] | {
|
|
@@ -127,9 +127,9 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodType<Omit<{
|
|
|
127
127
|
public?: boolean | undefined;
|
|
128
128
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
129
129
|
tag?: string | undefined;
|
|
130
|
+
searchable?: boolean | undefined;
|
|
130
131
|
boost?: number | undefined;
|
|
131
132
|
hidden?: boolean | undefined;
|
|
132
|
-
searchable?: boolean | undefined;
|
|
133
133
|
root?: string | undefined;
|
|
134
134
|
}, "root"> & {
|
|
135
135
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
@@ -145,9 +145,9 @@ export declare const decoratedGroupsSchema: z.ZodArray<z.ZodType<Omit<{
|
|
|
145
145
|
public?: boolean | undefined;
|
|
146
146
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
147
147
|
tag?: string | undefined;
|
|
148
|
+
searchable?: boolean | undefined;
|
|
148
149
|
boost?: number | undefined;
|
|
149
150
|
hidden?: boolean | undefined;
|
|
150
|
-
searchable?: boolean | undefined;
|
|
151
151
|
root?: string | undefined;
|
|
152
152
|
}, "root"> & {
|
|
153
153
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
@@ -100,9 +100,9 @@ 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
|
+
searchable?: boolean | undefined;
|
|
103
104
|
boost?: number | undefined;
|
|
104
105
|
hidden?: boolean | undefined;
|
|
105
|
-
searchable?: boolean | undefined;
|
|
106
106
|
root?: string | undefined;
|
|
107
107
|
} & {
|
|
108
108
|
openapi?: string | string[] | {
|
|
@@ -126,9 +126,9 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
126
126
|
public?: boolean | undefined;
|
|
127
127
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
128
128
|
tag?: string | undefined;
|
|
129
|
+
searchable?: boolean | undefined;
|
|
129
130
|
boost?: number | undefined;
|
|
130
131
|
hidden?: boolean | undefined;
|
|
131
|
-
searchable?: boolean | undefined;
|
|
132
132
|
root?: string | undefined;
|
|
133
133
|
} & {
|
|
134
134
|
openapi?: string | string[] | {
|
|
@@ -154,9 +154,9 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
154
154
|
public?: boolean | undefined;
|
|
155
155
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
156
156
|
tag?: string | undefined;
|
|
157
|
+
searchable?: boolean | undefined;
|
|
157
158
|
boost?: number | undefined;
|
|
158
159
|
hidden?: boolean | undefined;
|
|
159
|
-
searchable?: boolean | undefined;
|
|
160
160
|
root?: string | undefined;
|
|
161
161
|
} & {
|
|
162
162
|
openapi?: string | string[] | {
|
|
@@ -184,9 +184,9 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
184
184
|
public?: boolean | undefined;
|
|
185
185
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
186
186
|
tag?: string | undefined;
|
|
187
|
+
searchable?: boolean | undefined;
|
|
187
188
|
boost?: number | undefined;
|
|
188
189
|
hidden?: boolean | undefined;
|
|
189
|
-
searchable?: boolean | undefined;
|
|
190
190
|
root?: string | undefined;
|
|
191
191
|
} & {
|
|
192
192
|
openapi?: string | string[] | {
|
|
@@ -217,9 +217,9 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
217
217
|
public?: boolean | undefined;
|
|
218
218
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
219
219
|
tag?: string | undefined;
|
|
220
|
+
searchable?: boolean | undefined;
|
|
220
221
|
boost?: number | undefined;
|
|
221
222
|
hidden?: boolean | undefined;
|
|
222
|
-
searchable?: boolean | undefined;
|
|
223
223
|
root?: string | undefined;
|
|
224
224
|
} & {
|
|
225
225
|
openapi?: string | string[] | {
|
|
@@ -243,9 +243,9 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
243
243
|
public?: boolean | undefined;
|
|
244
244
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
245
245
|
tag?: string | undefined;
|
|
246
|
+
searchable?: boolean | undefined;
|
|
246
247
|
boost?: number | undefined;
|
|
247
248
|
hidden?: boolean | undefined;
|
|
248
|
-
searchable?: boolean | undefined;
|
|
249
249
|
root?: string | undefined;
|
|
250
250
|
} & {
|
|
251
251
|
openapi?: string | string[] | {
|
|
@@ -271,9 +271,9 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
271
271
|
public?: boolean | undefined;
|
|
272
272
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
273
273
|
tag?: string | undefined;
|
|
274
|
+
searchable?: boolean | undefined;
|
|
274
275
|
boost?: number | undefined;
|
|
275
276
|
hidden?: boolean | undefined;
|
|
276
|
-
searchable?: boolean | undefined;
|
|
277
277
|
root?: string | undefined;
|
|
278
278
|
} & {
|
|
279
279
|
openapi?: string | string[] | {
|
|
@@ -301,9 +301,9 @@ export declare const navigationSchema: z.ZodUnion<[z.ZodObject<{
|
|
|
301
301
|
public?: boolean | undefined;
|
|
302
302
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
303
303
|
tag?: string | undefined;
|
|
304
|
+
searchable?: boolean | undefined;
|
|
304
305
|
boost?: number | undefined;
|
|
305
306
|
hidden?: boolean | undefined;
|
|
306
|
-
searchable?: boolean | undefined;
|
|
307
307
|
root?: string | undefined;
|
|
308
308
|
} & {
|
|
309
309
|
openapi?: string | string[] | {
|
|
@@ -368,9 +368,9 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
368
368
|
public?: boolean | undefined;
|
|
369
369
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
370
370
|
tag?: string | undefined;
|
|
371
|
+
searchable?: boolean | undefined;
|
|
371
372
|
boost?: number | undefined;
|
|
372
373
|
hidden?: boolean | undefined;
|
|
373
|
-
searchable?: boolean | undefined;
|
|
374
374
|
root?: string | undefined;
|
|
375
375
|
}, "root"> & {
|
|
376
376
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
@@ -386,9 +386,9 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
386
386
|
public?: boolean | undefined;
|
|
387
387
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
388
388
|
tag?: string | undefined;
|
|
389
|
+
searchable?: boolean | undefined;
|
|
389
390
|
boost?: number | undefined;
|
|
390
391
|
hidden?: boolean | undefined;
|
|
391
|
-
searchable?: boolean | undefined;
|
|
392
392
|
root?: string | undefined;
|
|
393
393
|
}, "root"> & {
|
|
394
394
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
@@ -406,9 +406,9 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
406
406
|
public?: boolean | undefined;
|
|
407
407
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
408
408
|
tag?: string | undefined;
|
|
409
|
+
searchable?: boolean | undefined;
|
|
409
410
|
boost?: number | undefined;
|
|
410
411
|
hidden?: boolean | undefined;
|
|
411
|
-
searchable?: boolean | undefined;
|
|
412
412
|
root?: string | undefined;
|
|
413
413
|
}, "root"> & {
|
|
414
414
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
@@ -426,9 +426,9 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
426
426
|
public?: boolean | undefined;
|
|
427
427
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
428
428
|
tag?: string | undefined;
|
|
429
|
+
searchable?: boolean | undefined;
|
|
429
430
|
boost?: number | undefined;
|
|
430
431
|
hidden?: boolean | undefined;
|
|
431
|
-
searchable?: boolean | undefined;
|
|
432
432
|
root?: string | undefined;
|
|
433
433
|
}, "root"> & {
|
|
434
434
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
@@ -474,6 +474,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
474
474
|
url: z.ZodOptional<z.ZodString>;
|
|
475
475
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
476
476
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
477
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
477
478
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
478
479
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
479
480
|
boost: z.ZodOptional<z.ZodNumber>;
|
|
@@ -496,9 +497,9 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
496
497
|
public?: boolean | undefined;
|
|
497
498
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
498
499
|
tag?: string | undefined;
|
|
500
|
+
searchable?: boolean | undefined;
|
|
499
501
|
boost?: number | undefined;
|
|
500
502
|
hidden?: boolean | undefined;
|
|
501
|
-
searchable?: boolean | undefined;
|
|
502
503
|
root?: string | undefined;
|
|
503
504
|
}, "root"> & {
|
|
504
505
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
@@ -542,6 +543,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
542
543
|
url: z.ZodOptional<z.ZodString>;
|
|
543
544
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
544
545
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
546
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
545
547
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
546
548
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
547
549
|
boost: z.ZodOptional<z.ZodNumber>;
|
|
@@ -564,9 +566,9 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
564
566
|
public?: boolean | undefined;
|
|
565
567
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
566
568
|
tag?: string | undefined;
|
|
569
|
+
searchable?: boolean | undefined;
|
|
567
570
|
boost?: number | undefined;
|
|
568
571
|
hidden?: boolean | undefined;
|
|
569
|
-
searchable?: boolean | undefined;
|
|
570
572
|
root?: string | undefined;
|
|
571
573
|
}, "root"> & {
|
|
572
574
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
@@ -612,6 +614,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
612
614
|
url: z.ZodOptional<z.ZodString>;
|
|
613
615
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
614
616
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
617
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
615
618
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
616
619
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
617
620
|
boost: z.ZodOptional<z.ZodNumber>;
|
|
@@ -634,9 +637,9 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
634
637
|
public?: boolean | undefined;
|
|
635
638
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
636
639
|
tag?: string | undefined;
|
|
640
|
+
searchable?: boolean | undefined;
|
|
637
641
|
boost?: number | undefined;
|
|
638
642
|
hidden?: boolean | undefined;
|
|
639
|
-
searchable?: boolean | undefined;
|
|
640
643
|
root?: string | undefined;
|
|
641
644
|
}, "root"> & {
|
|
642
645
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
@@ -682,6 +685,7 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
682
685
|
url: z.ZodOptional<z.ZodString>;
|
|
683
686
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
684
687
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
688
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
685
689
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
686
690
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
687
691
|
boost: z.ZodOptional<z.ZodNumber>;
|
|
@@ -704,9 +708,9 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.
|
|
|
704
708
|
public?: boolean | undefined;
|
|
705
709
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
706
710
|
tag?: string | undefined;
|
|
711
|
+
searchable?: boolean | undefined;
|
|
707
712
|
boost?: number | undefined;
|
|
708
713
|
hidden?: boolean | undefined;
|
|
709
|
-
searchable?: boolean | undefined;
|
|
710
714
|
root?: string | undefined;
|
|
711
715
|
}, "root"> & {
|
|
712
716
|
pages: import("./divisionNav.js").PageOrGroupNavigation<"decorated">[];
|
|
@@ -14,9 +14,9 @@ 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
|
+
searchable?: boolean | undefined;
|
|
17
18
|
boost?: number | undefined;
|
|
18
19
|
hidden?: boolean | undefined;
|
|
19
|
-
searchable?: boolean | undefined;
|
|
20
20
|
root?: string | undefined;
|
|
21
21
|
} & {
|
|
22
22
|
openapi?: string | string[] | {
|
|
@@ -40,9 +40,9 @@ export declare const pagesSchema: z.ZodArray<z.ZodType<string | ({
|
|
|
40
40
|
public?: boolean | undefined;
|
|
41
41
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
42
42
|
tag?: string | undefined;
|
|
43
|
+
searchable?: boolean | undefined;
|
|
43
44
|
boost?: number | undefined;
|
|
44
45
|
hidden?: boolean | undefined;
|
|
45
|
-
searchable?: boolean | undefined;
|
|
46
46
|
root?: string | undefined;
|
|
47
47
|
} & {
|
|
48
48
|
openapi?: string | string[] | {
|
|
@@ -95,6 +95,7 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
|
|
|
95
95
|
url: z.ZodOptional<z.ZodString>;
|
|
96
96
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
97
97
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
98
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
98
99
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
99
100
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
100
101
|
boost: z.ZodOptional<z.ZodNumber>;
|
|
@@ -117,9 +118,9 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
|
|
|
117
118
|
public?: boolean | undefined;
|
|
118
119
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
119
120
|
tag?: string | undefined;
|
|
121
|
+
searchable?: boolean | undefined;
|
|
120
122
|
boost?: number | undefined;
|
|
121
123
|
hidden?: boolean | undefined;
|
|
122
|
-
searchable?: boolean | undefined;
|
|
123
124
|
root?: string | undefined;
|
|
124
125
|
}, "root"> & {
|
|
125
126
|
pages: PageOrGroupNavigation<"decorated">[];
|
|
@@ -163,6 +164,7 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
|
|
|
163
164
|
url: z.ZodOptional<z.ZodString>;
|
|
164
165
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
165
166
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
167
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
166
168
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
167
169
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
168
170
|
boost: z.ZodOptional<z.ZodNumber>;
|
|
@@ -185,9 +187,9 @@ export declare const decoratedPagesSchema: z.ZodArray<z.ZodType<z.objectOutputTy
|
|
|
185
187
|
public?: boolean | undefined;
|
|
186
188
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
187
189
|
tag?: string | undefined;
|
|
190
|
+
searchable?: boolean | undefined;
|
|
188
191
|
boost?: number | undefined;
|
|
189
192
|
hidden?: boolean | undefined;
|
|
190
|
-
searchable?: boolean | undefined;
|
|
191
193
|
root?: string | undefined;
|
|
192
194
|
}, "root"> & {
|
|
193
195
|
pages: PageOrGroupNavigation<"decorated">[];
|
|
@@ -29,8 +29,8 @@ export declare const baseTabSchema: z.ZodObject<{
|
|
|
29
29
|
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
30
30
|
} | undefined;
|
|
31
31
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
32
|
-
hidden?: boolean | undefined;
|
|
33
32
|
searchable?: boolean | undefined;
|
|
33
|
+
hidden?: boolean | undefined;
|
|
34
34
|
align?: "start" | "end" | undefined;
|
|
35
35
|
}, {
|
|
36
36
|
tab: string;
|
|
@@ -40,8 +40,8 @@ export declare const baseTabSchema: z.ZodObject<{
|
|
|
40
40
|
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
41
41
|
} | undefined;
|
|
42
42
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
43
|
-
hidden?: boolean | undefined;
|
|
44
43
|
searchable?: boolean | undefined;
|
|
44
|
+
hidden?: boolean | undefined;
|
|
45
45
|
align?: "start" | "end" | undefined;
|
|
46
46
|
}>;
|
|
47
47
|
export type BaseTabSchema = z.infer<typeof baseTabSchema>;
|
|
@@ -75,8 +75,8 @@ export declare const nonRecursiveTabSchema: z.ZodObject<{
|
|
|
75
75
|
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
76
76
|
} | undefined;
|
|
77
77
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
78
|
-
hidden?: boolean | undefined;
|
|
79
78
|
searchable?: boolean | undefined;
|
|
79
|
+
hidden?: boolean | undefined;
|
|
80
80
|
align?: "start" | "end" | undefined;
|
|
81
81
|
}, {
|
|
82
82
|
href: string;
|
|
@@ -87,8 +87,8 @@ export declare const nonRecursiveTabSchema: z.ZodObject<{
|
|
|
87
87
|
library?: "fontawesome" | "lucide" | "tabler" | undefined;
|
|
88
88
|
} | undefined;
|
|
89
89
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
90
|
-
hidden?: boolean | undefined;
|
|
91
90
|
searchable?: boolean | undefined;
|
|
91
|
+
hidden?: boolean | undefined;
|
|
92
92
|
align?: "start" | "end" | undefined;
|
|
93
93
|
}>;
|
|
94
94
|
export declare const tabSchema: z.ZodType<TabNavigation<'default'>>;
|
|
@@ -39,6 +39,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
39
39
|
url: z.ZodOptional<z.ZodString>;
|
|
40
40
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
41
41
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
42
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
42
43
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
43
44
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
44
45
|
boost: z.ZodOptional<z.ZodNumber>;
|
|
@@ -89,6 +90,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
89
90
|
url: z.ZodOptional<z.ZodString>;
|
|
90
91
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
91
92
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
93
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
92
94
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
93
95
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
94
96
|
boost: z.ZodOptional<z.ZodNumber>;
|
|
@@ -139,6 +141,7 @@ export declare const decoratedPageSchema: z.ZodObject<{
|
|
|
139
141
|
url: z.ZodOptional<z.ZodString>;
|
|
140
142
|
hideApiMarker: z.ZodOptional<z.ZodBoolean>;
|
|
141
143
|
noindex: z.ZodOptional<z.ZodBoolean>;
|
|
144
|
+
searchable: z.ZodOptional<z.ZodBoolean>;
|
|
142
145
|
isPublic: z.ZodOptional<z.ZodBoolean>;
|
|
143
146
|
public: z.ZodOptional<z.ZodBoolean>;
|
|
144
147
|
boost: z.ZodOptional<z.ZodNumber>;
|
|
@@ -45,6 +45,7 @@ export const decoratedPageSchema = z
|
|
|
45
45
|
url: z.string().optional(),
|
|
46
46
|
hideApiMarker: z.boolean().optional(),
|
|
47
47
|
noindex: z.boolean().optional(),
|
|
48
|
+
searchable: z.boolean().optional(),
|
|
48
49
|
isPublic: z.boolean().optional(),
|
|
49
50
|
public: z.boolean().optional(),
|
|
50
51
|
boost: z.number().optional(),
|
|
@@ -569,9 +569,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
569
569
|
public?: boolean | undefined;
|
|
570
570
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
571
571
|
tag?: string | undefined;
|
|
572
|
+
searchable?: boolean | undefined;
|
|
572
573
|
boost?: number | undefined;
|
|
573
574
|
hidden?: boolean | undefined;
|
|
574
|
-
searchable?: boolean | undefined;
|
|
575
575
|
root?: string | undefined;
|
|
576
576
|
} & {
|
|
577
577
|
openapi?: string | string[] | {
|
|
@@ -595,9 +595,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
595
595
|
public?: boolean | undefined;
|
|
596
596
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
597
597
|
tag?: string | undefined;
|
|
598
|
+
searchable?: boolean | undefined;
|
|
598
599
|
boost?: number | undefined;
|
|
599
600
|
hidden?: boolean | undefined;
|
|
600
|
-
searchable?: boolean | undefined;
|
|
601
601
|
root?: string | undefined;
|
|
602
602
|
} & {
|
|
603
603
|
openapi?: string | string[] | {
|
|
@@ -623,9 +623,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
623
623
|
public?: boolean | undefined;
|
|
624
624
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
625
625
|
tag?: string | undefined;
|
|
626
|
+
searchable?: boolean | undefined;
|
|
626
627
|
boost?: number | undefined;
|
|
627
628
|
hidden?: boolean | undefined;
|
|
628
|
-
searchable?: boolean | undefined;
|
|
629
629
|
root?: string | undefined;
|
|
630
630
|
} & {
|
|
631
631
|
openapi?: string | string[] | {
|
|
@@ -653,9 +653,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
653
653
|
public?: boolean | undefined;
|
|
654
654
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
655
655
|
tag?: string | undefined;
|
|
656
|
+
searchable?: boolean | undefined;
|
|
656
657
|
boost?: number | undefined;
|
|
657
658
|
hidden?: boolean | undefined;
|
|
658
|
-
searchable?: boolean | undefined;
|
|
659
659
|
root?: string | undefined;
|
|
660
660
|
} & {
|
|
661
661
|
openapi?: string | string[] | {
|
|
@@ -686,9 +686,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
686
686
|
public?: boolean | undefined;
|
|
687
687
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
688
688
|
tag?: string | undefined;
|
|
689
|
+
searchable?: boolean | undefined;
|
|
689
690
|
boost?: number | undefined;
|
|
690
691
|
hidden?: boolean | undefined;
|
|
691
|
-
searchable?: boolean | undefined;
|
|
692
692
|
root?: string | undefined;
|
|
693
693
|
} & {
|
|
694
694
|
openapi?: string | string[] | {
|
|
@@ -712,9 +712,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
712
712
|
public?: boolean | undefined;
|
|
713
713
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
714
714
|
tag?: string | undefined;
|
|
715
|
+
searchable?: boolean | undefined;
|
|
715
716
|
boost?: number | undefined;
|
|
716
717
|
hidden?: boolean | undefined;
|
|
717
|
-
searchable?: boolean | undefined;
|
|
718
718
|
root?: string | undefined;
|
|
719
719
|
} & {
|
|
720
720
|
openapi?: string | string[] | {
|
|
@@ -740,9 +740,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
740
740
|
public?: boolean | undefined;
|
|
741
741
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
742
742
|
tag?: string | undefined;
|
|
743
|
+
searchable?: boolean | undefined;
|
|
743
744
|
boost?: number | undefined;
|
|
744
745
|
hidden?: boolean | undefined;
|
|
745
|
-
searchable?: boolean | undefined;
|
|
746
746
|
root?: string | undefined;
|
|
747
747
|
} & {
|
|
748
748
|
openapi?: string | string[] | {
|
|
@@ -770,9 +770,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
770
770
|
public?: boolean | undefined;
|
|
771
771
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
772
772
|
tag?: string | undefined;
|
|
773
|
+
searchable?: boolean | undefined;
|
|
773
774
|
boost?: number | undefined;
|
|
774
775
|
hidden?: boolean | undefined;
|
|
775
|
-
searchable?: boolean | undefined;
|
|
776
776
|
root?: string | undefined;
|
|
777
777
|
} & {
|
|
778
778
|
openapi?: string | string[] | {
|
|
@@ -1676,9 +1676,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1676
1676
|
public?: boolean | undefined;
|
|
1677
1677
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1678
1678
|
tag?: string | undefined;
|
|
1679
|
+
searchable?: boolean | undefined;
|
|
1679
1680
|
boost?: number | undefined;
|
|
1680
1681
|
hidden?: boolean | undefined;
|
|
1681
|
-
searchable?: boolean | undefined;
|
|
1682
1682
|
root?: string | undefined;
|
|
1683
1683
|
} & {
|
|
1684
1684
|
openapi?: string | string[] | {
|
|
@@ -1706,9 +1706,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
1706
1706
|
public?: boolean | undefined;
|
|
1707
1707
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1708
1708
|
tag?: string | undefined;
|
|
1709
|
+
searchable?: boolean | undefined;
|
|
1709
1710
|
boost?: number | undefined;
|
|
1710
1711
|
hidden?: boolean | undefined;
|
|
1711
|
-
searchable?: boolean | undefined;
|
|
1712
1712
|
root?: string | undefined;
|
|
1713
1713
|
} & {
|
|
1714
1714
|
openapi?: string | string[] | {
|
|
@@ -2058,9 +2058,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2058
2058
|
public?: boolean | undefined;
|
|
2059
2059
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2060
2060
|
tag?: string | undefined;
|
|
2061
|
+
searchable?: boolean | undefined;
|
|
2061
2062
|
boost?: number | undefined;
|
|
2062
2063
|
hidden?: boolean | undefined;
|
|
2063
|
-
searchable?: boolean | undefined;
|
|
2064
2064
|
root?: string | undefined;
|
|
2065
2065
|
} & {
|
|
2066
2066
|
openapi?: string | string[] | {
|
|
@@ -2088,9 +2088,9 @@ export declare const almondConfigSchema: z.ZodObject<{
|
|
|
2088
2088
|
public?: boolean | undefined;
|
|
2089
2089
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2090
2090
|
tag?: string | undefined;
|
|
2091
|
+
searchable?: boolean | undefined;
|
|
2091
2092
|
boost?: number | undefined;
|
|
2092
2093
|
hidden?: boolean | undefined;
|
|
2093
|
-
searchable?: boolean | undefined;
|
|
2094
2094
|
root?: string | undefined;
|
|
2095
2095
|
} & {
|
|
2096
2096
|
openapi?: string | string[] | {
|
|
@@ -569,9 +569,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
569
569
|
public?: boolean | undefined;
|
|
570
570
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
571
571
|
tag?: string | undefined;
|
|
572
|
+
searchable?: boolean | undefined;
|
|
572
573
|
boost?: number | undefined;
|
|
573
574
|
hidden?: boolean | undefined;
|
|
574
|
-
searchable?: boolean | undefined;
|
|
575
575
|
root?: string | undefined;
|
|
576
576
|
} & {
|
|
577
577
|
openapi?: string | string[] | {
|
|
@@ -595,9 +595,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
595
595
|
public?: boolean | undefined;
|
|
596
596
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
597
597
|
tag?: string | undefined;
|
|
598
|
+
searchable?: boolean | undefined;
|
|
598
599
|
boost?: number | undefined;
|
|
599
600
|
hidden?: boolean | undefined;
|
|
600
|
-
searchable?: boolean | undefined;
|
|
601
601
|
root?: string | undefined;
|
|
602
602
|
} & {
|
|
603
603
|
openapi?: string | string[] | {
|
|
@@ -623,9 +623,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
623
623
|
public?: boolean | undefined;
|
|
624
624
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
625
625
|
tag?: string | undefined;
|
|
626
|
+
searchable?: boolean | undefined;
|
|
626
627
|
boost?: number | undefined;
|
|
627
628
|
hidden?: boolean | undefined;
|
|
628
|
-
searchable?: boolean | undefined;
|
|
629
629
|
root?: string | undefined;
|
|
630
630
|
} & {
|
|
631
631
|
openapi?: string | string[] | {
|
|
@@ -653,9 +653,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
653
653
|
public?: boolean | undefined;
|
|
654
654
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
655
655
|
tag?: string | undefined;
|
|
656
|
+
searchable?: boolean | undefined;
|
|
656
657
|
boost?: number | undefined;
|
|
657
658
|
hidden?: boolean | undefined;
|
|
658
|
-
searchable?: boolean | undefined;
|
|
659
659
|
root?: string | undefined;
|
|
660
660
|
} & {
|
|
661
661
|
openapi?: string | string[] | {
|
|
@@ -686,9 +686,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
686
686
|
public?: boolean | undefined;
|
|
687
687
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
688
688
|
tag?: string | undefined;
|
|
689
|
+
searchable?: boolean | undefined;
|
|
689
690
|
boost?: number | undefined;
|
|
690
691
|
hidden?: boolean | undefined;
|
|
691
|
-
searchable?: boolean | undefined;
|
|
692
692
|
root?: string | undefined;
|
|
693
693
|
} & {
|
|
694
694
|
openapi?: string | string[] | {
|
|
@@ -712,9 +712,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
712
712
|
public?: boolean | undefined;
|
|
713
713
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
714
714
|
tag?: string | undefined;
|
|
715
|
+
searchable?: boolean | undefined;
|
|
715
716
|
boost?: number | undefined;
|
|
716
717
|
hidden?: boolean | undefined;
|
|
717
|
-
searchable?: boolean | undefined;
|
|
718
718
|
root?: string | undefined;
|
|
719
719
|
} & {
|
|
720
720
|
openapi?: string | string[] | {
|
|
@@ -740,9 +740,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
740
740
|
public?: boolean | undefined;
|
|
741
741
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
742
742
|
tag?: string | undefined;
|
|
743
|
+
searchable?: boolean | undefined;
|
|
743
744
|
boost?: number | undefined;
|
|
744
745
|
hidden?: boolean | undefined;
|
|
745
|
-
searchable?: boolean | undefined;
|
|
746
746
|
root?: string | undefined;
|
|
747
747
|
} & {
|
|
748
748
|
openapi?: string | string[] | {
|
|
@@ -770,9 +770,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
770
770
|
public?: boolean | undefined;
|
|
771
771
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
772
772
|
tag?: string | undefined;
|
|
773
|
+
searchable?: boolean | undefined;
|
|
773
774
|
boost?: number | undefined;
|
|
774
775
|
hidden?: boolean | undefined;
|
|
775
|
-
searchable?: boolean | undefined;
|
|
776
776
|
root?: string | undefined;
|
|
777
777
|
} & {
|
|
778
778
|
openapi?: string | string[] | {
|
|
@@ -1676,9 +1676,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1676
1676
|
public?: boolean | undefined;
|
|
1677
1677
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1678
1678
|
tag?: string | undefined;
|
|
1679
|
+
searchable?: boolean | undefined;
|
|
1679
1680
|
boost?: number | undefined;
|
|
1680
1681
|
hidden?: boolean | undefined;
|
|
1681
|
-
searchable?: boolean | undefined;
|
|
1682
1682
|
root?: string | undefined;
|
|
1683
1683
|
} & {
|
|
1684
1684
|
openapi?: string | string[] | {
|
|
@@ -1706,9 +1706,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
1706
1706
|
public?: boolean | undefined;
|
|
1707
1707
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1708
1708
|
tag?: string | undefined;
|
|
1709
|
+
searchable?: boolean | undefined;
|
|
1709
1710
|
boost?: number | undefined;
|
|
1710
1711
|
hidden?: boolean | undefined;
|
|
1711
|
-
searchable?: boolean | undefined;
|
|
1712
1712
|
root?: string | undefined;
|
|
1713
1713
|
} & {
|
|
1714
1714
|
openapi?: string | string[] | {
|
|
@@ -2058,9 +2058,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2058
2058
|
public?: boolean | undefined;
|
|
2059
2059
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2060
2060
|
tag?: string | undefined;
|
|
2061
|
+
searchable?: boolean | undefined;
|
|
2061
2062
|
boost?: number | undefined;
|
|
2062
2063
|
hidden?: boolean | undefined;
|
|
2063
|
-
searchable?: boolean | undefined;
|
|
2064
2064
|
root?: string | undefined;
|
|
2065
2065
|
} & {
|
|
2066
2066
|
openapi?: string | string[] | {
|
|
@@ -2088,9 +2088,9 @@ export declare const aspenConfigSchema: z.ZodObject<{
|
|
|
2088
2088
|
public?: boolean | undefined;
|
|
2089
2089
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2090
2090
|
tag?: string | undefined;
|
|
2091
|
+
searchable?: boolean | undefined;
|
|
2091
2092
|
boost?: number | undefined;
|
|
2092
2093
|
hidden?: boolean | undefined;
|
|
2093
|
-
searchable?: boolean | undefined;
|
|
2094
2094
|
root?: string | undefined;
|
|
2095
2095
|
} & {
|
|
2096
2096
|
openapi?: string | string[] | {
|