@mintlify/validation 0.1.238 → 0.1.239
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/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/mint-config/schemas/v2/index.d.ts +784 -1132
- package/dist/mint-config/schemas/v2/properties/feedback.d.ts +14 -0
- package/dist/mint-config/schemas/v2/properties/feedback.js +8 -0
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +8 -12
- package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +6 -12
- package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +47 -96
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +12 -10
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +97 -166
- package/dist/mint-config/schemas/v2/properties/navigation/index.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +17 -21
- package/dist/mint-config/schemas/v2/properties/navigation/languages.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +1 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +8 -12
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +1 -1
- package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +3 -7
- package/dist/mint-config/schemas/v2/properties/navigation/version.js +1 -1
- package/dist/mint-config/schemas/v2/properties/reusable/icon.d.ts +4 -3
- package/dist/mint-config/schemas/v2/properties/reusable/icon.js +1 -1
- package/dist/mint-config/schemas/v2/properties/seo.d.ts +1 -1
- package/dist/mint-config/schemas/v2/properties/seo.js +1 -0
- package/dist/mint-config/schemas/v2/properties/topbar.d.ts +22 -0
- package/dist/mint-config/schemas/v2/properties/topbar.js +1 -1
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +196 -283
- package/dist/mint-config/schemas/v2/themes/prism.d.ts +196 -283
- package/dist/mint-config/schemas/v2/themes/quill.d.ts +196 -283
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +110 -167
- package/dist/mint-config/schemas/v2/themes/reusable/index.js +2 -0
- package/dist/mint-config/schemas/v2/themes/venus.d.ts +196 -283
- package/dist/mint-config/upgrades/updateNavigationToDocsConfig.d.ts +10 -0
- package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +240 -0
- package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +6 -0
- package/dist/mint-config/upgrades/upgradeToDocsConfig.js +223 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -74,6 +74,19 @@ export declare const standardConfigSchema: {
|
|
|
74
74
|
languages?: string[] | undefined;
|
|
75
75
|
} | undefined;
|
|
76
76
|
}>>;
|
|
77
|
+
feedback: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
78
|
+
thumbs: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
79
|
+
edits: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
80
|
+
issues: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
81
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
82
|
+
thumbs?: boolean | undefined;
|
|
83
|
+
edits?: boolean | undefined;
|
|
84
|
+
issues?: boolean | undefined;
|
|
85
|
+
}, {
|
|
86
|
+
thumbs?: boolean | undefined;
|
|
87
|
+
edits?: boolean | undefined;
|
|
88
|
+
issues?: boolean | undefined;
|
|
89
|
+
}>>;
|
|
77
90
|
appearance: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
78
91
|
default: import("zod").ZodDefault<import("zod").ZodEnum<["system", "light", "dark"]>>;
|
|
79
92
|
strict: import("zod").ZodDefault<import("zod").ZodBoolean>;
|
|
@@ -237,14 +250,14 @@ export declare const standardConfigSchema: {
|
|
|
237
250
|
groups: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
238
251
|
group: import("zod").ZodString;
|
|
239
252
|
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
240
|
-
style: import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]
|
|
253
|
+
style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
241
254
|
name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
242
255
|
}, "strip", import("zod").ZodTypeAny, {
|
|
243
256
|
name: string;
|
|
244
|
-
style
|
|
257
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
245
258
|
}, {
|
|
246
259
|
name: string;
|
|
247
|
-
style
|
|
260
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
248
261
|
}>]>>;
|
|
249
262
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
250
263
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
@@ -252,7 +265,7 @@ export declare const standardConfigSchema: {
|
|
|
252
265
|
group: string;
|
|
253
266
|
icon?: string | {
|
|
254
267
|
name: string;
|
|
255
|
-
style
|
|
268
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
256
269
|
} | undefined;
|
|
257
270
|
hidden?: boolean | undefined;
|
|
258
271
|
root?: string | undefined;
|
|
@@ -260,7 +273,7 @@ export declare const standardConfigSchema: {
|
|
|
260
273
|
group: string;
|
|
261
274
|
icon?: string | {
|
|
262
275
|
name: string;
|
|
263
|
-
style
|
|
276
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
264
277
|
} | undefined;
|
|
265
278
|
hidden?: boolean | undefined;
|
|
266
279
|
root?: string | undefined;
|
|
@@ -282,7 +295,7 @@ export declare const standardConfigSchema: {
|
|
|
282
295
|
group: string;
|
|
283
296
|
icon?: string | {
|
|
284
297
|
name: string;
|
|
285
|
-
style
|
|
298
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
286
299
|
} | undefined;
|
|
287
300
|
hidden?: boolean | undefined;
|
|
288
301
|
root?: string | undefined;
|
|
@@ -296,7 +309,7 @@ export declare const standardConfigSchema: {
|
|
|
296
309
|
group: string;
|
|
297
310
|
icon?: string | {
|
|
298
311
|
name: string;
|
|
299
|
-
style
|
|
312
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
300
313
|
} | undefined;
|
|
301
314
|
hidden?: boolean | undefined;
|
|
302
315
|
root?: string | undefined;
|
|
@@ -333,7 +346,7 @@ export declare const standardConfigSchema: {
|
|
|
333
346
|
group: string;
|
|
334
347
|
icon?: string | {
|
|
335
348
|
name: string;
|
|
336
|
-
style
|
|
349
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
337
350
|
} | undefined;
|
|
338
351
|
hidden?: boolean | undefined;
|
|
339
352
|
root?: string | undefined;
|
|
@@ -366,7 +379,7 @@ export declare const standardConfigSchema: {
|
|
|
366
379
|
group: string;
|
|
367
380
|
icon?: string | {
|
|
368
381
|
name: string;
|
|
369
|
-
style
|
|
382
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
370
383
|
} | undefined;
|
|
371
384
|
hidden?: boolean | undefined;
|
|
372
385
|
root?: string | undefined;
|
|
@@ -406,14 +419,14 @@ export declare const standardConfigSchema: {
|
|
|
406
419
|
groups: import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
407
420
|
group: import("zod").ZodString;
|
|
408
421
|
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
409
|
-
style: import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]
|
|
422
|
+
style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
410
423
|
name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
411
424
|
}, "strip", import("zod").ZodTypeAny, {
|
|
412
425
|
name: string;
|
|
413
|
-
style
|
|
426
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
414
427
|
}, {
|
|
415
428
|
name: string;
|
|
416
|
-
style
|
|
429
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
417
430
|
}>]>>;
|
|
418
431
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
419
432
|
root: import("zod").ZodOptional<import("zod").ZodEffects<import("zod").ZodString, string, string>>;
|
|
@@ -421,7 +434,7 @@ export declare const standardConfigSchema: {
|
|
|
421
434
|
group: string;
|
|
422
435
|
icon?: string | {
|
|
423
436
|
name: string;
|
|
424
|
-
style
|
|
437
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
425
438
|
} | undefined;
|
|
426
439
|
hidden?: boolean | undefined;
|
|
427
440
|
root?: string | undefined;
|
|
@@ -429,7 +442,7 @@ export declare const standardConfigSchema: {
|
|
|
429
442
|
group: string;
|
|
430
443
|
icon?: string | {
|
|
431
444
|
name: string;
|
|
432
|
-
style
|
|
445
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
433
446
|
} | undefined;
|
|
434
447
|
hidden?: boolean | undefined;
|
|
435
448
|
root?: string | undefined;
|
|
@@ -451,7 +464,7 @@ export declare const standardConfigSchema: {
|
|
|
451
464
|
group: string;
|
|
452
465
|
icon?: string | {
|
|
453
466
|
name: string;
|
|
454
|
-
style
|
|
467
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
455
468
|
} | undefined;
|
|
456
469
|
hidden?: boolean | undefined;
|
|
457
470
|
root?: string | undefined;
|
|
@@ -465,7 +478,7 @@ export declare const standardConfigSchema: {
|
|
|
465
478
|
group: string;
|
|
466
479
|
icon?: string | {
|
|
467
480
|
name: string;
|
|
468
|
-
style
|
|
481
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
469
482
|
} | undefined;
|
|
470
483
|
hidden?: boolean | undefined;
|
|
471
484
|
root?: string | undefined;
|
|
@@ -480,8 +493,8 @@ export declare const standardConfigSchema: {
|
|
|
480
493
|
pages: any[];
|
|
481
494
|
}, {
|
|
482
495
|
pages: any[];
|
|
483
|
-
}>]>, import("zod").
|
|
484
|
-
global: import("zod").ZodObject<{
|
|
496
|
+
}>]>, import("zod").ZodObject<{
|
|
497
|
+
global: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
485
498
|
languages: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
486
499
|
language: import("zod").ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
|
|
487
500
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -491,19 +504,13 @@ export declare const standardConfigSchema: {
|
|
|
491
504
|
}, {
|
|
492
505
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
493
506
|
hidden?: boolean | undefined;
|
|
494
|
-
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
495
|
-
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>;
|
|
496
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
497
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
498
|
-
}, {
|
|
499
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
500
507
|
}>, import("zod").ZodObject<{
|
|
501
508
|
href: import("zod").ZodString;
|
|
502
509
|
}, "strip", import("zod").ZodTypeAny, {
|
|
503
510
|
href: string;
|
|
504
511
|
}, {
|
|
505
512
|
href: string;
|
|
506
|
-
}
|
|
513
|
+
}>>, "many">>;
|
|
507
514
|
versions: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
508
515
|
version: import("zod").ZodString;
|
|
509
516
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
@@ -513,110 +520,92 @@ export declare const standardConfigSchema: {
|
|
|
513
520
|
}, {
|
|
514
521
|
version: string;
|
|
515
522
|
hidden?: boolean | undefined;
|
|
516
|
-
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
517
|
-
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>;
|
|
518
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
519
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
520
|
-
}, {
|
|
521
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
522
523
|
}>, import("zod").ZodObject<{
|
|
523
524
|
href: import("zod").ZodString;
|
|
524
525
|
}, "strip", import("zod").ZodTypeAny, {
|
|
525
526
|
href: string;
|
|
526
527
|
}, {
|
|
527
528
|
href: string;
|
|
528
|
-
}
|
|
529
|
+
}>>, "many">>;
|
|
529
530
|
tabs: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
530
531
|
tab: import("zod").ZodString;
|
|
531
532
|
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
532
|
-
style: import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]
|
|
533
|
+
style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
533
534
|
name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
534
535
|
}, "strip", import("zod").ZodTypeAny, {
|
|
535
536
|
name: string;
|
|
536
|
-
style
|
|
537
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
537
538
|
}, {
|
|
538
539
|
name: string;
|
|
539
|
-
style
|
|
540
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
540
541
|
}>]>>;
|
|
541
542
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
542
543
|
}, "strip", import("zod").ZodTypeAny, {
|
|
543
544
|
tab: string;
|
|
544
545
|
icon?: string | {
|
|
545
546
|
name: string;
|
|
546
|
-
style
|
|
547
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
547
548
|
} | undefined;
|
|
548
549
|
hidden?: boolean | undefined;
|
|
549
550
|
}, {
|
|
550
551
|
tab: string;
|
|
551
552
|
icon?: string | {
|
|
552
553
|
name: string;
|
|
553
|
-
style
|
|
554
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
554
555
|
} | undefined;
|
|
555
556
|
hidden?: boolean | undefined;
|
|
556
|
-
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
557
|
-
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>;
|
|
558
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
559
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
560
|
-
}, {
|
|
561
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
562
557
|
}>, import("zod").ZodObject<{
|
|
563
558
|
href: import("zod").ZodString;
|
|
564
559
|
}, "strip", import("zod").ZodTypeAny, {
|
|
565
560
|
href: string;
|
|
566
561
|
}, {
|
|
567
562
|
href: string;
|
|
568
|
-
}
|
|
563
|
+
}>>, "many">>;
|
|
569
564
|
dropdowns: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
570
565
|
dropdown: import("zod").ZodString;
|
|
571
566
|
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
572
|
-
style: import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]
|
|
567
|
+
style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
573
568
|
name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
574
569
|
}, "strip", import("zod").ZodTypeAny, {
|
|
575
570
|
name: string;
|
|
576
|
-
style
|
|
571
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
577
572
|
}, {
|
|
578
573
|
name: string;
|
|
579
|
-
style
|
|
574
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
580
575
|
}>]>>;
|
|
581
576
|
hidden: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
582
577
|
}, "strip", import("zod").ZodTypeAny, {
|
|
583
578
|
dropdown: string;
|
|
584
579
|
icon?: string | {
|
|
585
580
|
name: string;
|
|
586
|
-
style
|
|
581
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
587
582
|
} | undefined;
|
|
588
583
|
hidden?: boolean | undefined;
|
|
589
584
|
}, {
|
|
590
585
|
dropdown: string;
|
|
591
586
|
icon?: string | {
|
|
592
587
|
name: string;
|
|
593
|
-
style
|
|
588
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
594
589
|
} | undefined;
|
|
595
590
|
hidden?: boolean | undefined;
|
|
596
|
-
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
597
|
-
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>;
|
|
598
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
599
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
600
|
-
}, {
|
|
601
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
602
591
|
}>, import("zod").ZodObject<{
|
|
603
592
|
href: import("zod").ZodString;
|
|
604
593
|
}, "strip", import("zod").ZodTypeAny, {
|
|
605
594
|
href: string;
|
|
606
595
|
}, {
|
|
607
596
|
href: string;
|
|
608
|
-
}
|
|
597
|
+
}>>, "many">>;
|
|
609
598
|
anchors: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodIntersection<import("zod").ZodObject<{
|
|
610
599
|
anchor: import("zod").ZodString;
|
|
611
600
|
icon: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodObject<{
|
|
612
|
-
style: import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]
|
|
601
|
+
style: import("zod").ZodOptional<import("zod").ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
|
|
613
602
|
name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
|
|
614
603
|
}, "strip", import("zod").ZodTypeAny, {
|
|
615
604
|
name: string;
|
|
616
|
-
style
|
|
605
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
617
606
|
}, {
|
|
618
607
|
name: string;
|
|
619
|
-
style
|
|
608
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
620
609
|
}>]>>;
|
|
621
610
|
color: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
622
611
|
light: import("zod").ZodString;
|
|
@@ -633,7 +622,7 @@ export declare const standardConfigSchema: {
|
|
|
633
622
|
anchor: string;
|
|
634
623
|
icon?: string | {
|
|
635
624
|
name: string;
|
|
636
|
-
style
|
|
625
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
637
626
|
} | undefined;
|
|
638
627
|
color?: {
|
|
639
628
|
light: string;
|
|
@@ -644,260 +633,214 @@ export declare const standardConfigSchema: {
|
|
|
644
633
|
anchor: string;
|
|
645
634
|
icon?: string | {
|
|
646
635
|
name: string;
|
|
647
|
-
style
|
|
636
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
648
637
|
} | undefined;
|
|
649
638
|
color?: {
|
|
650
639
|
light: string;
|
|
651
640
|
dark: string;
|
|
652
641
|
} | undefined;
|
|
653
642
|
hidden?: boolean | undefined;
|
|
654
|
-
}>, import("zod").ZodUnion<[import("zod").ZodObject<{
|
|
655
|
-
openapi: import("zod").ZodUnion<[import("zod").ZodEffects<import("zod").ZodString, string, string>, import("zod").ZodArray<import("zod").ZodEffects<import("zod").ZodString, string, string>, "many">]>;
|
|
656
|
-
}, "strip", import("zod").ZodTypeAny, {
|
|
657
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
658
|
-
}, {
|
|
659
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
660
643
|
}>, import("zod").ZodObject<{
|
|
661
644
|
href: import("zod").ZodString;
|
|
662
645
|
}, "strip", import("zod").ZodTypeAny, {
|
|
663
646
|
href: string;
|
|
664
647
|
}, {
|
|
665
648
|
href: string;
|
|
666
|
-
}
|
|
649
|
+
}>>, "many">>;
|
|
667
650
|
}, "strict", import("zod").ZodTypeAny, {
|
|
668
651
|
languages?: ({
|
|
669
652
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
670
653
|
hidden?: boolean | undefined;
|
|
671
|
-
} &
|
|
672
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
673
|
-
} | {
|
|
654
|
+
} & {
|
|
674
655
|
href: string;
|
|
675
|
-
})
|
|
656
|
+
})[] | undefined;
|
|
676
657
|
versions?: ({
|
|
677
658
|
version: string;
|
|
678
659
|
hidden?: boolean | undefined;
|
|
679
|
-
} &
|
|
680
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
681
|
-
} | {
|
|
660
|
+
} & {
|
|
682
661
|
href: string;
|
|
683
|
-
})
|
|
662
|
+
})[] | undefined;
|
|
684
663
|
tabs?: ({
|
|
685
664
|
tab: string;
|
|
686
665
|
icon?: string | {
|
|
687
666
|
name: string;
|
|
688
|
-
style
|
|
667
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
689
668
|
} | undefined;
|
|
690
669
|
hidden?: boolean | undefined;
|
|
691
|
-
} &
|
|
692
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
693
|
-
} | {
|
|
670
|
+
} & {
|
|
694
671
|
href: string;
|
|
695
|
-
})
|
|
672
|
+
})[] | undefined;
|
|
696
673
|
dropdowns?: ({
|
|
697
674
|
dropdown: string;
|
|
698
675
|
icon?: string | {
|
|
699
676
|
name: string;
|
|
700
|
-
style
|
|
677
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
701
678
|
} | undefined;
|
|
702
679
|
hidden?: boolean | undefined;
|
|
703
|
-
} &
|
|
704
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
705
|
-
} | {
|
|
680
|
+
} & {
|
|
706
681
|
href: string;
|
|
707
|
-
})
|
|
682
|
+
})[] | undefined;
|
|
708
683
|
anchors?: ({
|
|
709
684
|
anchor: string;
|
|
710
685
|
icon?: string | {
|
|
711
686
|
name: string;
|
|
712
|
-
style
|
|
687
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
713
688
|
} | undefined;
|
|
714
689
|
color?: {
|
|
715
690
|
light: string;
|
|
716
691
|
dark: string;
|
|
717
692
|
} | undefined;
|
|
718
693
|
hidden?: boolean | undefined;
|
|
719
|
-
} &
|
|
720
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
721
|
-
} | {
|
|
694
|
+
} & {
|
|
722
695
|
href: string;
|
|
723
|
-
})
|
|
696
|
+
})[] | undefined;
|
|
724
697
|
}, {
|
|
725
698
|
languages?: ({
|
|
726
699
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
727
700
|
hidden?: boolean | undefined;
|
|
728
|
-
} &
|
|
729
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
730
|
-
} | {
|
|
701
|
+
} & {
|
|
731
702
|
href: string;
|
|
732
|
-
})
|
|
703
|
+
})[] | undefined;
|
|
733
704
|
versions?: ({
|
|
734
705
|
version: string;
|
|
735
706
|
hidden?: boolean | undefined;
|
|
736
|
-
} &
|
|
737
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
738
|
-
} | {
|
|
707
|
+
} & {
|
|
739
708
|
href: string;
|
|
740
|
-
})
|
|
709
|
+
})[] | undefined;
|
|
741
710
|
tabs?: ({
|
|
742
711
|
tab: string;
|
|
743
712
|
icon?: string | {
|
|
744
713
|
name: string;
|
|
745
|
-
style
|
|
714
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
746
715
|
} | undefined;
|
|
747
716
|
hidden?: boolean | undefined;
|
|
748
|
-
} &
|
|
749
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
750
|
-
} | {
|
|
717
|
+
} & {
|
|
751
718
|
href: string;
|
|
752
|
-
})
|
|
719
|
+
})[] | undefined;
|
|
753
720
|
dropdowns?: ({
|
|
754
721
|
dropdown: string;
|
|
755
722
|
icon?: string | {
|
|
756
723
|
name: string;
|
|
757
|
-
style
|
|
724
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
758
725
|
} | undefined;
|
|
759
726
|
hidden?: boolean | undefined;
|
|
760
|
-
} &
|
|
761
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
762
|
-
} | {
|
|
727
|
+
} & {
|
|
763
728
|
href: string;
|
|
764
|
-
})
|
|
729
|
+
})[] | undefined;
|
|
765
730
|
anchors?: ({
|
|
766
731
|
anchor: string;
|
|
767
732
|
icon?: string | {
|
|
768
733
|
name: string;
|
|
769
|
-
style
|
|
734
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
770
735
|
} | undefined;
|
|
771
736
|
color?: {
|
|
772
737
|
light: string;
|
|
773
738
|
dark: string;
|
|
774
739
|
} | undefined;
|
|
775
740
|
hidden?: boolean | undefined;
|
|
776
|
-
} &
|
|
777
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
778
|
-
} | {
|
|
741
|
+
} & {
|
|
779
742
|
href: string;
|
|
780
|
-
})
|
|
781
|
-
}
|
|
743
|
+
})[] | undefined;
|
|
744
|
+
}>>;
|
|
782
745
|
}, "strip", import("zod").ZodTypeAny, {
|
|
783
|
-
global
|
|
746
|
+
global?: {
|
|
784
747
|
languages?: ({
|
|
785
748
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
786
749
|
hidden?: boolean | undefined;
|
|
787
|
-
} &
|
|
788
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
789
|
-
} | {
|
|
750
|
+
} & {
|
|
790
751
|
href: string;
|
|
791
|
-
})
|
|
752
|
+
})[] | undefined;
|
|
792
753
|
versions?: ({
|
|
793
754
|
version: string;
|
|
794
755
|
hidden?: boolean | undefined;
|
|
795
|
-
} &
|
|
796
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
797
|
-
} | {
|
|
756
|
+
} & {
|
|
798
757
|
href: string;
|
|
799
|
-
})
|
|
758
|
+
})[] | undefined;
|
|
800
759
|
tabs?: ({
|
|
801
760
|
tab: string;
|
|
802
761
|
icon?: string | {
|
|
803
762
|
name: string;
|
|
804
|
-
style
|
|
763
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
805
764
|
} | undefined;
|
|
806
765
|
hidden?: boolean | undefined;
|
|
807
|
-
} &
|
|
808
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
809
|
-
} | {
|
|
766
|
+
} & {
|
|
810
767
|
href: string;
|
|
811
|
-
})
|
|
768
|
+
})[] | undefined;
|
|
812
769
|
dropdowns?: ({
|
|
813
770
|
dropdown: string;
|
|
814
771
|
icon?: string | {
|
|
815
772
|
name: string;
|
|
816
|
-
style
|
|
773
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
817
774
|
} | undefined;
|
|
818
775
|
hidden?: boolean | undefined;
|
|
819
|
-
} &
|
|
820
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
821
|
-
} | {
|
|
776
|
+
} & {
|
|
822
777
|
href: string;
|
|
823
|
-
})
|
|
778
|
+
})[] | undefined;
|
|
824
779
|
anchors?: ({
|
|
825
780
|
anchor: string;
|
|
826
781
|
icon?: string | {
|
|
827
782
|
name: string;
|
|
828
|
-
style
|
|
783
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
829
784
|
} | undefined;
|
|
830
785
|
color?: {
|
|
831
786
|
light: string;
|
|
832
787
|
dark: string;
|
|
833
788
|
} | undefined;
|
|
834
789
|
hidden?: boolean | undefined;
|
|
835
|
-
} &
|
|
836
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
837
|
-
} | {
|
|
790
|
+
} & {
|
|
838
791
|
href: string;
|
|
839
|
-
})
|
|
840
|
-
};
|
|
792
|
+
})[] | undefined;
|
|
793
|
+
} | undefined;
|
|
841
794
|
}, {
|
|
842
|
-
global
|
|
795
|
+
global?: {
|
|
843
796
|
languages?: ({
|
|
844
797
|
language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
|
|
845
798
|
hidden?: boolean | undefined;
|
|
846
|
-
} &
|
|
847
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
848
|
-
} | {
|
|
799
|
+
} & {
|
|
849
800
|
href: string;
|
|
850
|
-
})
|
|
801
|
+
})[] | undefined;
|
|
851
802
|
versions?: ({
|
|
852
803
|
version: string;
|
|
853
804
|
hidden?: boolean | undefined;
|
|
854
|
-
} &
|
|
855
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
856
|
-
} | {
|
|
805
|
+
} & {
|
|
857
806
|
href: string;
|
|
858
|
-
})
|
|
807
|
+
})[] | undefined;
|
|
859
808
|
tabs?: ({
|
|
860
809
|
tab: string;
|
|
861
810
|
icon?: string | {
|
|
862
811
|
name: string;
|
|
863
|
-
style
|
|
812
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
864
813
|
} | undefined;
|
|
865
814
|
hidden?: boolean | undefined;
|
|
866
|
-
} &
|
|
867
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
868
|
-
} | {
|
|
815
|
+
} & {
|
|
869
816
|
href: string;
|
|
870
|
-
})
|
|
817
|
+
})[] | undefined;
|
|
871
818
|
dropdowns?: ({
|
|
872
819
|
dropdown: string;
|
|
873
820
|
icon?: string | {
|
|
874
821
|
name: string;
|
|
875
|
-
style
|
|
822
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
876
823
|
} | undefined;
|
|
877
824
|
hidden?: boolean | undefined;
|
|
878
|
-
} &
|
|
879
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
880
|
-
} | {
|
|
825
|
+
} & {
|
|
881
826
|
href: string;
|
|
882
|
-
})
|
|
827
|
+
})[] | undefined;
|
|
883
828
|
anchors?: ({
|
|
884
829
|
anchor: string;
|
|
885
830
|
icon?: string | {
|
|
886
831
|
name: string;
|
|
887
|
-
style
|
|
832
|
+
style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
|
|
888
833
|
} | undefined;
|
|
889
834
|
color?: {
|
|
890
835
|
light: string;
|
|
891
836
|
dark: string;
|
|
892
837
|
} | undefined;
|
|
893
838
|
hidden?: boolean | undefined;
|
|
894
|
-
} &
|
|
895
|
-
openapi: (string | string[]) & (string | string[] | undefined);
|
|
896
|
-
} | {
|
|
839
|
+
} & {
|
|
897
840
|
href: string;
|
|
898
|
-
})
|
|
899
|
-
};
|
|
900
|
-
}
|
|
841
|
+
})[] | undefined;
|
|
842
|
+
} | undefined;
|
|
843
|
+
}>>;
|
|
901
844
|
footer: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
902
845
|
socials: import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, import("zod").ZodString>>;
|
|
903
846
|
links: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
@@ -953,7 +896,7 @@ export declare const standardConfigSchema: {
|
|
|
953
896
|
}>>;
|
|
954
897
|
seo: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
955
898
|
metatags: import("zod").ZodOptional<import("zod").ZodOptional<import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodString>>>;
|
|
956
|
-
indexing: import("zod").ZodDefault<import("zod").ZodEnum<["navigable", "all"]
|
|
899
|
+
indexing: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodEnum<["navigable", "all"]>>>;
|
|
957
900
|
}, "strip", import("zod").ZodTypeAny, {
|
|
958
901
|
indexing: "all" | "navigable";
|
|
959
902
|
metatags?: Record<string, string> | undefined;
|