@mintlify/validation 0.1.253 → 0.1.255

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +4163 -7618
  2. package/dist/mint-config/schemas/v2/properties/index.d.ts +1 -0
  3. package/dist/mint-config/schemas/v2/properties/index.js +1 -0
  4. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +12 -455
  5. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +28 -11
  6. package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.d.ts +56 -0
  7. package/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js +5 -0
  8. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +13 -330
  9. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +28 -11
  10. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +22 -626
  11. package/dist/mint-config/schemas/v2/properties/navigation/groups.js +15 -13
  12. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +258 -1481
  13. package/dist/mint-config/schemas/v2/properties/navigation/index.js +23 -13
  14. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +11 -202
  15. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +33 -11
  16. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +2 -3
  17. package/dist/mint-config/schemas/v2/properties/navigation/pages.js +2 -2
  18. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +11 -328
  19. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +28 -11
  20. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +12 -203
  21. package/dist/mint-config/schemas/v2/properties/navigation/version.js +28 -11
  22. package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +3 -0
  23. package/dist/mint-config/schemas/v2/properties/reusable/page.js +1 -0
  24. package/dist/mint-config/schemas/v2/themes/linden.d.ts +253 -944
  25. package/dist/mint-config/schemas/v2/themes/maple.d.ts +253 -944
  26. package/dist/mint-config/schemas/v2/themes/mint.d.ts +253 -944
  27. package/dist/mint-config/schemas/v2/themes/palm.d.ts +253 -944
  28. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +143 -730
  29. package/dist/mint-config/schemas/v2/themes/willow.d.ts +253 -944
  30. package/dist/mint-config/upgrades/updateNavigationToDocsConfig.js +14 -8
  31. package/dist/mint-config/validateConfig.d.ts +420 -940
  32. package/dist/tsconfig.build.tsbuildinfo +1 -1
  33. package/package.json +3 -3
  34. package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.d.ts +0 -7
  35. package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.js +0 -26
@@ -1,6 +1,146 @@
1
1
  import { z } from 'zod';
2
- export type NavigationSchemaType = 'default' | 'decorated';
3
- export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
2
+ export declare const navigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
3
+ languages: z.ZodArray<z.ZodType<import("./divisionNav.js").LanguageNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").LanguageNavigation<"default">>, "many">;
4
+ }, "strip", z.ZodTypeAny, {
5
+ languages: import("./divisionNav.js").LanguageNavigation<"default">[];
6
+ }, {
7
+ languages: import("./divisionNav.js").LanguageNavigation<"default">[];
8
+ }>, z.ZodObject<{
9
+ versions: z.ZodArray<z.ZodType<import("./divisionNav.js").VersionNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").VersionNavigation<"default">>, "many">;
10
+ }, "strip", z.ZodTypeAny, {
11
+ versions: import("./divisionNav.js").VersionNavigation<"default">[];
12
+ }, {
13
+ versions: import("./divisionNav.js").VersionNavigation<"default">[];
14
+ }>, z.ZodObject<{
15
+ tabs: z.ZodArray<z.ZodType<import("./divisionNav.js").TabNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").TabNavigation<"default">>, "many">;
16
+ }, "strip", z.ZodTypeAny, {
17
+ tabs: import("./divisionNav.js").TabNavigation<"default">[];
18
+ }, {
19
+ tabs: import("./divisionNav.js").TabNavigation<"default">[];
20
+ }>, z.ZodObject<{
21
+ dropdowns: z.ZodArray<z.ZodType<import("./divisionNav.js").DropdownNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").DropdownNavigation<"default">>, "many">;
22
+ }, "strip", z.ZodTypeAny, {
23
+ dropdowns: import("./divisionNav.js").DropdownNavigation<"default">[];
24
+ }, {
25
+ dropdowns: import("./divisionNav.js").DropdownNavigation<"default">[];
26
+ }>, z.ZodObject<{
27
+ anchors: z.ZodArray<z.ZodType<import("./divisionNav.js").AnchorNavigation<"default">, z.ZodTypeDef, import("./divisionNav.js").AnchorNavigation<"default">>, "many">;
28
+ }, "strip", z.ZodTypeAny, {
29
+ anchors: import("./divisionNav.js").AnchorNavigation<"default">[];
30
+ }, {
31
+ anchors: import("./divisionNav.js").AnchorNavigation<"default">[];
32
+ }>, z.ZodObject<{
33
+ groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
34
+ group: z.ZodString;
35
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
36
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
37
+ name: z.ZodEffects<z.ZodString, string, string>;
38
+ }, "strip", z.ZodTypeAny, {
39
+ name: string;
40
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
41
+ }, {
42
+ name: string;
43
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
44
+ }>]>>;
45
+ hidden: z.ZodOptional<z.ZodBoolean>;
46
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
47
+ }, "strip", z.ZodTypeAny, {
48
+ group: string;
49
+ icon?: string | {
50
+ name: string;
51
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
52
+ } | undefined;
53
+ hidden?: boolean | undefined;
54
+ root?: string | undefined;
55
+ }, {
56
+ group: string;
57
+ icon?: string | {
58
+ name: string;
59
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
60
+ } | undefined;
61
+ hidden?: boolean | undefined;
62
+ root?: string | undefined;
63
+ }>, z.ZodUnion<[z.ZodObject<{
64
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
65
+ source: z.ZodEffects<z.ZodString, string, string>;
66
+ directory: z.ZodOptional<z.ZodString>;
67
+ }, "strict", z.ZodTypeAny, {
68
+ source: string;
69
+ directory?: string | undefined;
70
+ }, {
71
+ source: string;
72
+ directory?: string | undefined;
73
+ }>]>;
74
+ }, "strip", z.ZodTypeAny, {
75
+ openapi: (string | string[] | {
76
+ source: string;
77
+ directory?: string | undefined;
78
+ }) & (string | string[] | {
79
+ source: string;
80
+ directory?: string | undefined;
81
+ } | undefined);
82
+ }, {
83
+ openapi: (string | string[] | {
84
+ source: string;
85
+ directory?: string | undefined;
86
+ }) & (string | string[] | {
87
+ source: string;
88
+ directory?: string | undefined;
89
+ } | undefined);
90
+ }>, z.ZodLazy<z.ZodObject<{
91
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
92
+ }, "strip", z.ZodTypeAny, {
93
+ pages: any[];
94
+ }, {
95
+ pages: any[];
96
+ }>>]>>, "many">;
97
+ }, "strip", z.ZodTypeAny, {
98
+ groups: ({
99
+ group: string;
100
+ icon?: string | {
101
+ name: string;
102
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
103
+ } | undefined;
104
+ hidden?: boolean | undefined;
105
+ root?: string | undefined;
106
+ } & ({
107
+ openapi: (string | string[] | {
108
+ source: string;
109
+ directory?: string | undefined;
110
+ }) & (string | string[] | {
111
+ source: string;
112
+ directory?: string | undefined;
113
+ } | undefined);
114
+ } | {
115
+ pages: any[];
116
+ }))[];
117
+ }, {
118
+ groups: ({
119
+ group: string;
120
+ icon?: string | {
121
+ name: string;
122
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
123
+ } | undefined;
124
+ hidden?: boolean | undefined;
125
+ root?: string | undefined;
126
+ } & ({
127
+ openapi: (string | string[] | {
128
+ source: string;
129
+ directory?: string | undefined;
130
+ }) & (string | string[] | {
131
+ source: string;
132
+ directory?: string | undefined;
133
+ } | undefined);
134
+ } | {
135
+ pages: any[];
136
+ }))[];
137
+ }>, z.ZodObject<{
138
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
139
+ }, "strip", z.ZodTypeAny, {
140
+ pages: any[];
141
+ }, {
142
+ pages: any[];
143
+ }>]>, z.ZodObject<{
4
144
  global: z.ZodOptional<z.ZodObject<{
5
145
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
6
146
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
@@ -347,123 +487,40 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
347
487
  href: string;
348
488
  })[] | undefined;
349
489
  } | undefined;
350
- }>, z.ZodUnion<[z.ZodObject<{
351
- languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
352
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
353
- hidden: z.ZodOptional<z.ZodBoolean>;
354
- }, "strip", z.ZodTypeAny, {
355
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
356
- hidden?: boolean | undefined;
357
- }, {
358
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
359
- hidden?: boolean | undefined;
360
- }>, z.ZodUnion<[z.ZodObject<{
361
- href: z.ZodString;
362
- }, "strip", z.ZodTypeAny, {
363
- href: string;
364
- }, {
365
- href: string;
366
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
367
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
368
- hidden: z.ZodOptional<z.ZodBoolean>;
369
- }, "strip", z.ZodTypeAny, {
370
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
371
- hidden?: boolean | undefined;
372
- }, {
373
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
374
- hidden?: boolean | undefined;
375
- }>, z.ZodUnion<[z.ZodObject<{
376
- href: z.ZodString;
377
- }, "strip", z.ZodTypeAny, {
378
- href: string;
379
- }, {
380
- href: string;
381
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
382
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
383
- source: z.ZodEffects<z.ZodString, string, string>;
384
- directory: z.ZodOptional<z.ZodString>;
385
- }, "strict", z.ZodTypeAny, {
386
- source: string;
387
- directory?: string | undefined;
388
- }, {
389
- source: string;
390
- directory?: string | undefined;
391
- }>]>>;
392
- }, "strip", z.ZodTypeAny, {
393
- openapi?: string | string[] | {
394
- source: string;
395
- directory?: string | undefined;
396
- } | undefined;
397
- }, {
398
- openapi?: string | string[] | {
399
- source: string;
400
- directory?: string | undefined;
401
- } | undefined;
402
- }>>, "many">;
490
+ }>>;
491
+ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
492
+ languages: z.ZodArray<z.ZodType<import("./divisionNav.js").LanguageNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").LanguageNavigation<"decorated">>, "many">;
403
493
  }, "strip", z.ZodTypeAny, {
404
- languages: any[];
494
+ languages: import("./divisionNav.js").LanguageNavigation<"decorated">[];
405
495
  }, {
406
- languages: any[];
496
+ languages: import("./divisionNav.js").LanguageNavigation<"decorated">[];
407
497
  }>, z.ZodObject<{
408
- versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
409
- version: z.ZodString;
410
- hidden: z.ZodOptional<z.ZodBoolean>;
411
- }, "strip", z.ZodTypeAny, {
412
- version: string;
413
- hidden?: boolean | undefined;
414
- }, {
415
- version: string;
416
- hidden?: boolean | undefined;
417
- }>, z.ZodUnion<[z.ZodObject<{
418
- href: z.ZodString;
419
- }, "strip", z.ZodTypeAny, {
420
- href: string;
421
- }, {
422
- href: string;
423
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
424
- version: z.ZodString;
425
- hidden: z.ZodOptional<z.ZodBoolean>;
426
- }, "strip", z.ZodTypeAny, {
427
- version: string;
428
- hidden?: boolean | undefined;
429
- }, {
430
- version: string;
431
- hidden?: boolean | undefined;
432
- }>, z.ZodUnion<[z.ZodObject<{
433
- href: z.ZodString;
434
- }, "strip", z.ZodTypeAny, {
435
- href: string;
436
- }, {
437
- href: string;
438
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
439
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
440
- source: z.ZodEffects<z.ZodString, string, string>;
441
- directory: z.ZodOptional<z.ZodString>;
442
- }, "strict", z.ZodTypeAny, {
443
- source: string;
444
- directory?: string | undefined;
445
- }, {
446
- source: string;
447
- directory?: string | undefined;
448
- }>]>>;
449
- }, "strip", z.ZodTypeAny, {
450
- openapi?: string | string[] | {
451
- source: string;
452
- directory?: string | undefined;
453
- } | undefined;
454
- }, {
455
- openapi?: string | string[] | {
456
- source: string;
457
- directory?: string | undefined;
458
- } | undefined;
459
- }>>, "many">;
498
+ versions: z.ZodArray<z.ZodType<import("./divisionNav.js").VersionNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").VersionNavigation<"decorated">>, "many">;
499
+ }, "strip", z.ZodTypeAny, {
500
+ versions: import("./divisionNav.js").VersionNavigation<"decorated">[];
501
+ }, {
502
+ versions: import("./divisionNav.js").VersionNavigation<"decorated">[];
503
+ }>, z.ZodObject<{
504
+ tabs: z.ZodArray<z.ZodType<import("./divisionNav.js").TabNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").TabNavigation<"decorated">>, "many">;
505
+ }, "strip", z.ZodTypeAny, {
506
+ tabs: import("./divisionNav.js").TabNavigation<"decorated">[];
507
+ }, {
508
+ tabs: import("./divisionNav.js").TabNavigation<"decorated">[];
509
+ }>, z.ZodObject<{
510
+ dropdowns: z.ZodArray<z.ZodType<import("./divisionNav.js").DropdownNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").DropdownNavigation<"decorated">>, "many">;
460
511
  }, "strip", z.ZodTypeAny, {
461
- versions: any[];
512
+ dropdowns: import("./divisionNav.js").DropdownNavigation<"decorated">[];
462
513
  }, {
463
- versions: any[];
514
+ dropdowns: import("./divisionNav.js").DropdownNavigation<"decorated">[];
464
515
  }>, z.ZodObject<{
465
- tabs: z.ZodArray<z.ZodIntersection<z.ZodObject<{
466
- tab: z.ZodString;
516
+ anchors: z.ZodArray<z.ZodType<import("./divisionNav.js").AnchorNavigation<"decorated">, z.ZodTypeDef, import("./divisionNav.js").AnchorNavigation<"decorated">>, "many">;
517
+ }, "strip", z.ZodTypeAny, {
518
+ anchors: import("./divisionNav.js").AnchorNavigation<"decorated">[];
519
+ }, {
520
+ anchors: import("./divisionNav.js").AnchorNavigation<"decorated">[];
521
+ }>, z.ZodObject<{
522
+ groups: z.ZodArray<z.ZodObject<{
523
+ group: z.ZodString;
467
524
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
468
525
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
469
526
  name: z.ZodEffects<z.ZodString, string, string>;
@@ -475,338 +532,91 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
475
532
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
476
533
  }>]>>;
477
534
  hidden: z.ZodOptional<z.ZodBoolean>;
535
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
536
+ pages: z.ZodLazy<z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">>;
478
537
  }, "strip", z.ZodTypeAny, {
479
- tab: string;
538
+ group: string;
539
+ pages: any[];
480
540
  icon?: string | {
481
541
  name: string;
482
542
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
483
543
  } | undefined;
484
544
  hidden?: boolean | undefined;
545
+ root?: string | undefined;
485
546
  }, {
486
- tab: string;
547
+ group: string;
548
+ pages: any[];
487
549
  icon?: string | {
488
550
  name: string;
489
551
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
490
552
  } | undefined;
491
553
  hidden?: boolean | undefined;
492
- }>, z.ZodUnion<[z.ZodObject<{
493
- href: z.ZodString;
494
- }, "strip", z.ZodTypeAny, {
495
- href: string;
496
- }, {
497
- href: string;
498
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
499
- tab: z.ZodString;
500
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
501
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
502
- name: z.ZodEffects<z.ZodString, string, string>;
503
- }, "strip", z.ZodTypeAny, {
504
- name: string;
505
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
506
- }, {
507
- name: string;
508
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
509
- }>]>>;
510
- hidden: z.ZodOptional<z.ZodBoolean>;
511
- }, "strip", z.ZodTypeAny, {
512
- tab: string;
554
+ root?: string | undefined;
555
+ }>, "many">;
556
+ }, "strip", z.ZodTypeAny, {
557
+ groups: {
558
+ group: string;
559
+ pages: any[];
513
560
  icon?: string | {
514
561
  name: string;
515
562
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
516
563
  } | undefined;
517
564
  hidden?: boolean | undefined;
518
- }, {
519
- tab: string;
565
+ root?: string | undefined;
566
+ }[];
567
+ }, {
568
+ groups: {
569
+ group: string;
570
+ pages: any[];
520
571
  icon?: string | {
521
572
  name: string;
522
573
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
523
574
  } | undefined;
524
575
  hidden?: boolean | undefined;
525
- }>, z.ZodUnion<[z.ZodObject<{
526
- href: z.ZodString;
527
- }, "strip", z.ZodTypeAny, {
528
- href: string;
529
- }, {
530
- href: string;
531
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
532
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
533
- source: z.ZodEffects<z.ZodString, string, string>;
534
- directory: z.ZodOptional<z.ZodString>;
535
- }, "strict", z.ZodTypeAny, {
536
- source: string;
537
- directory?: string | undefined;
538
- }, {
539
- source: string;
540
- directory?: string | undefined;
541
- }>]>>;
542
- }, "strip", z.ZodTypeAny, {
543
- openapi?: string | string[] | {
544
- source: string;
545
- directory?: string | undefined;
546
- } | undefined;
547
- }, {
548
- openapi?: string | string[] | {
549
- source: string;
550
- directory?: string | undefined;
551
- } | undefined;
552
- }>>, "many">;
576
+ root?: string | undefined;
577
+ }[];
578
+ }>, z.ZodObject<{
579
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
553
580
  }, "strip", z.ZodTypeAny, {
554
- tabs: any[];
581
+ pages: any[];
555
582
  }, {
556
- tabs: any[];
557
- }>, z.ZodObject<{
558
- dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
559
- dropdown: z.ZodString;
560
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
561
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
562
- name: z.ZodEffects<z.ZodString, string, string>;
583
+ pages: any[];
584
+ }>]>, z.ZodObject<{
585
+ global: z.ZodOptional<z.ZodObject<{
586
+ languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
587
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
588
+ hidden: z.ZodOptional<z.ZodBoolean>;
563
589
  }, "strip", z.ZodTypeAny, {
564
- name: string;
565
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
566
- }, {
567
- name: string;
568
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
569
- }>]>>;
570
- hidden: z.ZodOptional<z.ZodBoolean>;
571
- }, "strip", z.ZodTypeAny, {
572
- dropdown: string;
573
- icon?: string | {
574
- name: string;
575
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
576
- } | undefined;
577
- hidden?: boolean | undefined;
578
- }, {
579
- dropdown: string;
580
- icon?: string | {
581
- name: string;
582
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
583
- } | undefined;
584
- hidden?: boolean | undefined;
585
- }>, z.ZodUnion<[z.ZodObject<{
586
- href: z.ZodString;
587
- }, "strip", z.ZodTypeAny, {
588
- href: string;
589
- }, {
590
- href: string;
591
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
592
- dropdown: z.ZodString;
593
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
594
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
595
- name: z.ZodEffects<z.ZodString, string, string>;
596
- }, "strip", z.ZodTypeAny, {
597
- name: string;
598
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
599
- }, {
600
- name: string;
601
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
602
- }>]>>;
603
- hidden: z.ZodOptional<z.ZodBoolean>;
604
- }, "strip", z.ZodTypeAny, {
605
- dropdown: string;
606
- icon?: string | {
607
- name: string;
608
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
609
- } | undefined;
610
- hidden?: boolean | undefined;
611
- }, {
612
- dropdown: string;
613
- icon?: string | {
614
- name: string;
615
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
616
- } | undefined;
617
- hidden?: boolean | undefined;
618
- }>, z.ZodUnion<[z.ZodObject<{
619
- href: z.ZodString;
620
- }, "strip", z.ZodTypeAny, {
621
- href: string;
622
- }, {
623
- href: string;
624
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
625
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
626
- source: z.ZodEffects<z.ZodString, string, string>;
627
- directory: z.ZodOptional<z.ZodString>;
628
- }, "strict", z.ZodTypeAny, {
629
- source: string;
630
- directory?: string | undefined;
590
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
591
+ hidden?: boolean | undefined;
631
592
  }, {
632
- source: string;
633
- directory?: string | undefined;
634
- }>]>>;
635
- }, "strip", z.ZodTypeAny, {
636
- openapi?: string | string[] | {
637
- source: string;
638
- directory?: string | undefined;
639
- } | undefined;
640
- }, {
641
- openapi?: string | string[] | {
642
- source: string;
643
- directory?: string | undefined;
644
- } | undefined;
645
- }>>, "many">;
646
- }, "strip", z.ZodTypeAny, {
647
- dropdowns: any[];
648
- }, {
649
- dropdowns: any[];
650
- }>, z.ZodObject<{
651
- anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
652
- anchor: z.ZodString;
653
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
654
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
655
- name: z.ZodEffects<z.ZodString, string, string>;
593
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
594
+ hidden?: boolean | undefined;
595
+ }>, z.ZodObject<{
596
+ href: z.ZodString;
656
597
  }, "strip", z.ZodTypeAny, {
657
- name: string;
658
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
659
- }, {
660
- name: string;
661
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
662
- }>]>>;
663
- color: z.ZodOptional<z.ZodObject<{
664
- light: z.ZodOptional<z.ZodString>;
665
- dark: z.ZodOptional<z.ZodString>;
666
- }, "strict", z.ZodTypeAny, {
667
- light?: string | undefined;
668
- dark?: string | undefined;
598
+ href: string;
669
599
  }, {
670
- light?: string | undefined;
671
- dark?: string | undefined;
672
- }>>;
673
- hidden: z.ZodOptional<z.ZodBoolean>;
674
- }, "strip", z.ZodTypeAny, {
675
- anchor: string;
676
- icon?: string | {
677
- name: string;
678
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
679
- } | undefined;
680
- color?: {
681
- light?: string | undefined;
682
- dark?: string | undefined;
683
- } | undefined;
684
- hidden?: boolean | undefined;
685
- }, {
686
- anchor: string;
687
- icon?: string | {
688
- name: string;
689
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
690
- } | undefined;
691
- color?: {
692
- light?: string | undefined;
693
- dark?: string | undefined;
694
- } | undefined;
695
- hidden?: boolean | undefined;
696
- }>, z.ZodUnion<[z.ZodObject<{
697
- href: z.ZodString;
698
- }, "strip", z.ZodTypeAny, {
699
- href: string;
700
- }, {
701
- href: string;
702
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
703
- anchor: z.ZodString;
704
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
705
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
706
- name: z.ZodEffects<z.ZodString, string, string>;
600
+ href: string;
601
+ }>>, "many">>;
602
+ versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
603
+ version: z.ZodString;
604
+ hidden: z.ZodOptional<z.ZodBoolean>;
707
605
  }, "strip", z.ZodTypeAny, {
708
- name: string;
709
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
710
- }, {
711
- name: string;
712
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
713
- }>]>>;
714
- color: z.ZodOptional<z.ZodObject<{
715
- light: z.ZodOptional<z.ZodString>;
716
- dark: z.ZodOptional<z.ZodString>;
717
- }, "strict", z.ZodTypeAny, {
718
- light?: string | undefined;
719
- dark?: string | undefined;
720
- }, {
721
- light?: string | undefined;
722
- dark?: string | undefined;
723
- }>>;
724
- hidden: z.ZodOptional<z.ZodBoolean>;
725
- }, "strip", z.ZodTypeAny, {
726
- anchor: string;
727
- icon?: string | {
728
- name: string;
729
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
730
- } | undefined;
731
- color?: {
732
- light?: string | undefined;
733
- dark?: string | undefined;
734
- } | undefined;
735
- hidden?: boolean | undefined;
736
- }, {
737
- anchor: string;
738
- icon?: string | {
739
- name: string;
740
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
741
- } | undefined;
742
- color?: {
743
- light?: string | undefined;
744
- dark?: string | undefined;
745
- } | undefined;
746
- hidden?: boolean | undefined;
747
- }>, z.ZodUnion<[z.ZodObject<{
748
- href: z.ZodString;
749
- }, "strip", z.ZodTypeAny, {
750
- href: string;
751
- }, {
752
- href: string;
753
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
754
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
755
- source: z.ZodEffects<z.ZodString, string, string>;
756
- directory: z.ZodOptional<z.ZodString>;
757
- }, "strict", z.ZodTypeAny, {
758
- source: string;
759
- directory?: string | undefined;
606
+ version: string;
607
+ hidden?: boolean | undefined;
760
608
  }, {
761
- source: string;
762
- directory?: string | undefined;
763
- }>]>>;
764
- }, "strip", z.ZodTypeAny, {
765
- openapi?: string | string[] | {
766
- source: string;
767
- directory?: string | undefined;
768
- } | undefined;
769
- }, {
770
- openapi?: string | string[] | {
771
- source: string;
772
- directory?: string | undefined;
773
- } | undefined;
774
- }>>, "many">;
775
- }, "strip", z.ZodTypeAny, {
776
- anchors: any[];
777
- }, {
778
- anchors: any[];
779
- }>, z.ZodObject<{
780
- groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
781
- group: z.ZodString;
782
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
783
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
784
- name: z.ZodEffects<z.ZodString, string, string>;
609
+ version: string;
610
+ hidden?: boolean | undefined;
611
+ }>, z.ZodObject<{
612
+ href: z.ZodString;
785
613
  }, "strip", z.ZodTypeAny, {
786
- name: string;
787
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
614
+ href: string;
788
615
  }, {
789
- name: string;
790
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
791
- }>]>>;
792
- hidden: z.ZodOptional<z.ZodBoolean>;
793
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
794
- href: z.ZodString;
795
- title: z.ZodString;
796
- sidebarTitle: z.ZodOptional<z.ZodString>;
797
- description: z.ZodOptional<z.ZodString>;
798
- api: z.ZodOptional<z.ZodString>;
799
- openapi: z.ZodOptional<z.ZodString>;
800
- contentType: z.ZodOptional<z.ZodString>;
801
- authMethod: z.ZodOptional<z.ZodString>;
802
- auth: z.ZodOptional<z.ZodString>;
803
- version: z.ZodOptional<z.ZodString>;
804
- mode: z.ZodOptional<z.ZodString>;
805
- hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
806
- authors: z.ZodOptional<z.ZodUnknown>;
807
- lastUpdatedDate: z.ZodOptional<z.ZodString>;
808
- createdDate: z.ZodOptional<z.ZodString>;
809
- 'openapi-schema': z.ZodOptional<z.ZodString>;
616
+ href: string;
617
+ }>>, "many">>;
618
+ tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
619
+ tab: z.ZodString;
810
620
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
811
621
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
812
622
  name: z.ZodEffects<z.ZodString, string, string>;
@@ -817,364 +627,59 @@ export declare const navigationSchema: z.ZodIntersection<z.ZodObject<{
817
627
  name: string;
818
628
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
819
629
  }>]>>;
820
- tag: z.ZodOptional<z.ZodString>;
821
- url: z.ZodOptional<z.ZodString>;
822
- hideApiMarker: z.ZodOptional<z.ZodBoolean>;
823
- noindex: z.ZodOptional<z.ZodBoolean>;
824
- isPublic: z.ZodOptional<z.ZodBoolean>;
630
+ hidden: z.ZodOptional<z.ZodBoolean>;
825
631
  }, "strip", z.ZodTypeAny, {
826
- href: string;
827
- title: string;
828
- sidebarTitle?: string | undefined;
829
- description?: string | undefined;
830
- api?: string | undefined;
831
- openapi?: string | undefined;
832
- contentType?: string | undefined;
833
- authMethod?: string | undefined;
834
- auth?: string | undefined;
835
- version?: string | undefined;
836
- mode?: string | undefined;
837
- hideFooterPagination?: boolean | undefined;
838
- authors?: unknown;
839
- lastUpdatedDate?: string | undefined;
840
- createdDate?: string | undefined;
841
- 'openapi-schema'?: string | undefined;
632
+ tab: string;
842
633
  icon?: string | {
843
634
  name: string;
844
635
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
845
636
  } | undefined;
846
- tag?: string | undefined;
847
- url?: string | undefined;
848
- hideApiMarker?: boolean | undefined;
849
- noindex?: boolean | undefined;
850
- isPublic?: boolean | undefined;
637
+ hidden?: boolean | undefined;
851
638
  }, {
852
- href: string;
853
- title: string;
854
- sidebarTitle?: string | undefined;
855
- description?: string | undefined;
856
- api?: string | undefined;
857
- openapi?: string | undefined;
858
- contentType?: string | undefined;
859
- authMethod?: string | undefined;
860
- auth?: string | undefined;
861
- version?: string | undefined;
862
- mode?: string | undefined;
863
- hideFooterPagination?: boolean | undefined;
864
- authors?: unknown;
865
- lastUpdatedDate?: string | undefined;
866
- createdDate?: string | undefined;
867
- 'openapi-schema'?: string | undefined;
639
+ tab: string;
868
640
  icon?: string | {
869
641
  name: string;
870
642
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
871
643
  } | undefined;
872
- tag?: string | undefined;
873
- url?: string | undefined;
874
- hideApiMarker?: boolean | undefined;
875
- noindex?: boolean | undefined;
876
- isPublic?: boolean | undefined;
877
- }>>;
878
- }, "strip", z.ZodTypeAny, {
879
- group: string;
880
- icon?: string | {
881
- name: string;
882
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
883
- } | undefined;
884
- hidden?: boolean | undefined;
885
- root?: string | {
644
+ hidden?: boolean | undefined;
645
+ }>, z.ZodObject<{
646
+ href: z.ZodString;
647
+ }, "strip", z.ZodTypeAny, {
648
+ href: string;
649
+ }, {
886
650
  href: string;
887
- title: string;
888
- sidebarTitle?: string | undefined;
889
- description?: string | undefined;
890
- api?: string | undefined;
891
- openapi?: string | undefined;
892
- contentType?: string | undefined;
893
- authMethod?: string | undefined;
894
- auth?: string | undefined;
895
- version?: string | undefined;
896
- mode?: string | undefined;
897
- hideFooterPagination?: boolean | undefined;
898
- authors?: unknown;
899
- lastUpdatedDate?: string | undefined;
900
- createdDate?: string | undefined;
901
- 'openapi-schema'?: string | undefined;
651
+ }>>, "many">>;
652
+ dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
653
+ dropdown: z.ZodString;
654
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
655
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
656
+ name: z.ZodEffects<z.ZodString, string, string>;
657
+ }, "strip", z.ZodTypeAny, {
658
+ name: string;
659
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
660
+ }, {
661
+ name: string;
662
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
663
+ }>]>>;
664
+ hidden: z.ZodOptional<z.ZodBoolean>;
665
+ }, "strip", z.ZodTypeAny, {
666
+ dropdown: string;
902
667
  icon?: string | {
903
668
  name: string;
904
669
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
905
670
  } | undefined;
906
- tag?: string | undefined;
907
- url?: string | undefined;
908
- hideApiMarker?: boolean | undefined;
909
- noindex?: boolean | undefined;
910
- isPublic?: boolean | undefined;
911
- } | undefined;
912
- }, {
913
- group: string;
914
- icon?: string | {
915
- name: string;
916
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
917
- } | undefined;
918
- hidden?: boolean | undefined;
919
- root?: string | {
920
- href: string;
921
- title: string;
922
- sidebarTitle?: string | undefined;
923
- description?: string | undefined;
924
- api?: string | undefined;
925
- openapi?: string | undefined;
926
- contentType?: string | undefined;
927
- authMethod?: string | undefined;
928
- auth?: string | undefined;
929
- version?: string | undefined;
930
- mode?: string | undefined;
931
- hideFooterPagination?: boolean | undefined;
932
- authors?: unknown;
933
- lastUpdatedDate?: string | undefined;
934
- createdDate?: string | undefined;
935
- 'openapi-schema'?: string | undefined;
671
+ hidden?: boolean | undefined;
672
+ }, {
673
+ dropdown: string;
936
674
  icon?: string | {
937
675
  name: string;
938
676
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
939
677
  } | undefined;
940
- tag?: string | undefined;
941
- url?: string | undefined;
942
- hideApiMarker?: boolean | undefined;
943
- noindex?: boolean | undefined;
944
- isPublic?: boolean | undefined;
945
- } | undefined;
946
- }>, z.ZodUnion<[z.ZodObject<{
947
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
948
- source: z.ZodEffects<z.ZodString, string, string>;
949
- directory: z.ZodOptional<z.ZodString>;
950
- }, "strict", z.ZodTypeAny, {
951
- source: string;
952
- directory?: string | undefined;
953
- }, {
954
- source: string;
955
- directory?: string | undefined;
956
- }>]>;
957
- }, "strip", z.ZodTypeAny, {
958
- openapi: (string | string[] | {
959
- source: string;
960
- directory?: string | undefined;
961
- }) & (string | string[] | {
962
- source: string;
963
- directory?: string | undefined;
964
- } | undefined);
965
- }, {
966
- openapi: (string | string[] | {
967
- source: string;
968
- directory?: string | undefined;
969
- }) & (string | string[] | {
970
- source: string;
971
- directory?: string | undefined;
972
- } | undefined);
973
- }>, z.ZodLazy<z.ZodObject<{
974
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
975
- }, "strip", z.ZodTypeAny, {
976
- pages: any[];
977
- }, {
978
- pages: any[];
979
- }>>]>>, "many">;
980
- }, "strip", z.ZodTypeAny, {
981
- groups: ({
982
- group: string;
983
- icon?: string | {
984
- name: string;
985
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
986
- } | undefined;
987
- hidden?: boolean | undefined;
988
- root?: string | {
989
- href: string;
990
- title: string;
991
- sidebarTitle?: string | undefined;
992
- description?: string | undefined;
993
- api?: string | undefined;
994
- openapi?: string | undefined;
995
- contentType?: string | undefined;
996
- authMethod?: string | undefined;
997
- auth?: string | undefined;
998
- version?: string | undefined;
999
- mode?: string | undefined;
1000
- hideFooterPagination?: boolean | undefined;
1001
- authors?: unknown;
1002
- lastUpdatedDate?: string | undefined;
1003
- createdDate?: string | undefined;
1004
- 'openapi-schema'?: string | undefined;
1005
- icon?: string | {
1006
- name: string;
1007
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1008
- } | undefined;
1009
- tag?: string | undefined;
1010
- url?: string | undefined;
1011
- hideApiMarker?: boolean | undefined;
1012
- noindex?: boolean | undefined;
1013
- isPublic?: boolean | undefined;
1014
- } | undefined;
1015
- } & ({
1016
- openapi: (string | string[] | {
1017
- source: string;
1018
- directory?: string | undefined;
1019
- }) & (string | string[] | {
1020
- source: string;
1021
- directory?: string | undefined;
1022
- } | undefined);
1023
- } | {
1024
- pages: any[];
1025
- }))[];
1026
- }, {
1027
- groups: ({
1028
- group: string;
1029
- icon?: string | {
1030
- name: string;
1031
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1032
- } | undefined;
1033
- hidden?: boolean | undefined;
1034
- root?: string | {
1035
- href: string;
1036
- title: string;
1037
- sidebarTitle?: string | undefined;
1038
- description?: string | undefined;
1039
- api?: string | undefined;
1040
- openapi?: string | undefined;
1041
- contentType?: string | undefined;
1042
- authMethod?: string | undefined;
1043
- auth?: string | undefined;
1044
- version?: string | undefined;
1045
- mode?: string | undefined;
1046
- hideFooterPagination?: boolean | undefined;
1047
- authors?: unknown;
1048
- lastUpdatedDate?: string | undefined;
1049
- createdDate?: string | undefined;
1050
- 'openapi-schema'?: string | undefined;
1051
- icon?: string | {
1052
- name: string;
1053
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1054
- } | undefined;
1055
- tag?: string | undefined;
1056
- url?: string | undefined;
1057
- hideApiMarker?: boolean | undefined;
1058
- noindex?: boolean | undefined;
1059
- isPublic?: boolean | undefined;
1060
- } | undefined;
1061
- } & ({
1062
- openapi: (string | string[] | {
1063
- source: string;
1064
- directory?: string | undefined;
1065
- }) & (string | string[] | {
1066
- source: string;
1067
- directory?: string | undefined;
1068
- } | undefined);
1069
- } | {
1070
- pages: any[];
1071
- }))[];
1072
- }>, z.ZodObject<{
1073
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1074
- }, "strip", z.ZodTypeAny, {
1075
- pages: any[];
1076
- }, {
1077
- pages: any[];
1078
- }>]>>;
1079
- export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
1080
- global: z.ZodOptional<z.ZodObject<{
1081
- languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
1082
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
1083
- hidden: z.ZodOptional<z.ZodBoolean>;
1084
- }, "strip", z.ZodTypeAny, {
1085
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1086
- hidden?: boolean | undefined;
1087
- }, {
1088
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1089
- hidden?: boolean | undefined;
1090
- }>, z.ZodObject<{
1091
- href: z.ZodString;
1092
- }, "strip", z.ZodTypeAny, {
1093
- href: string;
1094
- }, {
1095
- href: string;
1096
- }>>, "many">>;
1097
- versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
1098
- version: z.ZodString;
1099
- hidden: z.ZodOptional<z.ZodBoolean>;
1100
- }, "strip", z.ZodTypeAny, {
1101
- version: string;
1102
- hidden?: boolean | undefined;
1103
- }, {
1104
- version: string;
1105
- hidden?: boolean | undefined;
1106
- }>, z.ZodObject<{
1107
- href: z.ZodString;
1108
- }, "strip", z.ZodTypeAny, {
1109
- href: string;
1110
- }, {
1111
- href: string;
1112
- }>>, "many">>;
1113
- tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
1114
- tab: z.ZodString;
1115
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1116
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1117
- name: z.ZodEffects<z.ZodString, string, string>;
1118
- }, "strip", z.ZodTypeAny, {
1119
- name: string;
1120
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1121
- }, {
1122
- name: string;
1123
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1124
- }>]>>;
1125
- hidden: z.ZodOptional<z.ZodBoolean>;
1126
- }, "strip", z.ZodTypeAny, {
1127
- tab: string;
1128
- icon?: string | {
1129
- name: string;
1130
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1131
- } | undefined;
1132
- hidden?: boolean | undefined;
1133
- }, {
1134
- tab: string;
1135
- icon?: string | {
1136
- name: string;
1137
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1138
- } | undefined;
1139
- hidden?: boolean | undefined;
1140
- }>, z.ZodObject<{
1141
- href: z.ZodString;
1142
- }, "strip", z.ZodTypeAny, {
1143
- href: string;
1144
- }, {
1145
- href: string;
1146
- }>>, "many">>;
1147
- dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
1148
- dropdown: z.ZodString;
1149
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1150
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1151
- name: z.ZodEffects<z.ZodString, string, string>;
1152
- }, "strip", z.ZodTypeAny, {
1153
- name: string;
1154
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1155
- }, {
1156
- name: string;
1157
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1158
- }>]>>;
1159
- hidden: z.ZodOptional<z.ZodBoolean>;
1160
- }, "strip", z.ZodTypeAny, {
1161
- dropdown: string;
1162
- icon?: string | {
1163
- name: string;
1164
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1165
- } | undefined;
1166
- hidden?: boolean | undefined;
1167
- }, {
1168
- dropdown: string;
1169
- icon?: string | {
1170
- name: string;
1171
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1172
- } | undefined;
1173
- hidden?: boolean | undefined;
1174
- }>, z.ZodObject<{
1175
- href: z.ZodString;
1176
- }, "strip", z.ZodTypeAny, {
1177
- href: string;
678
+ hidden?: boolean | undefined;
679
+ }>, z.ZodObject<{
680
+ href: z.ZodString;
681
+ }, "strip", z.ZodTypeAny, {
682
+ href: string;
1178
683
  }, {
1179
684
  href: string;
1180
685
  }>>, "many">>;
@@ -1423,734 +928,6 @@ export declare const decoratedNavigationSchema: z.ZodIntersection<z.ZodObject<{
1423
928
  href: string;
1424
929
  })[] | undefined;
1425
930
  } | undefined;
1426
- }>, z.ZodUnion<[z.ZodObject<{
1427
- languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1428
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
1429
- hidden: z.ZodOptional<z.ZodBoolean>;
1430
- }, "strip", z.ZodTypeAny, {
1431
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1432
- hidden?: boolean | undefined;
1433
- }, {
1434
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1435
- hidden?: boolean | undefined;
1436
- }>, z.ZodUnion<[z.ZodObject<{
1437
- href: z.ZodString;
1438
- }, "strip", z.ZodTypeAny, {
1439
- href: string;
1440
- }, {
1441
- href: string;
1442
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1443
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
1444
- hidden: z.ZodOptional<z.ZodBoolean>;
1445
- }, "strip", z.ZodTypeAny, {
1446
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1447
- hidden?: boolean | undefined;
1448
- }, {
1449
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1450
- hidden?: boolean | undefined;
1451
- }>, z.ZodUnion<[z.ZodObject<{
1452
- href: z.ZodString;
1453
- }, "strip", z.ZodTypeAny, {
1454
- href: string;
1455
- }, {
1456
- href: string;
1457
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
1458
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
1459
- source: z.ZodEffects<z.ZodString, string, string>;
1460
- directory: z.ZodOptional<z.ZodString>;
1461
- }, "strict", z.ZodTypeAny, {
1462
- source: string;
1463
- directory?: string | undefined;
1464
- }, {
1465
- source: string;
1466
- directory?: string | undefined;
1467
- }>]>>;
1468
- }, "strip", z.ZodTypeAny, {
1469
- openapi?: string | string[] | {
1470
- source: string;
1471
- directory?: string | undefined;
1472
- } | undefined;
1473
- }, {
1474
- openapi?: string | string[] | {
1475
- source: string;
1476
- directory?: string | undefined;
1477
- } | undefined;
1478
- }>>, "many">;
1479
- }, "strip", z.ZodTypeAny, {
1480
- languages: any[];
1481
- }, {
1482
- languages: any[];
1483
- }>, z.ZodObject<{
1484
- versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1485
- version: z.ZodString;
1486
- hidden: z.ZodOptional<z.ZodBoolean>;
1487
- }, "strip", z.ZodTypeAny, {
1488
- version: string;
1489
- hidden?: boolean | undefined;
1490
- }, {
1491
- version: string;
1492
- hidden?: boolean | undefined;
1493
- }>, z.ZodUnion<[z.ZodObject<{
1494
- href: z.ZodString;
1495
- }, "strip", z.ZodTypeAny, {
1496
- href: string;
1497
- }, {
1498
- href: string;
1499
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1500
- version: z.ZodString;
1501
- hidden: z.ZodOptional<z.ZodBoolean>;
1502
- }, "strip", z.ZodTypeAny, {
1503
- version: string;
1504
- hidden?: boolean | undefined;
1505
- }, {
1506
- version: string;
1507
- hidden?: boolean | undefined;
1508
- }>, z.ZodUnion<[z.ZodObject<{
1509
- href: z.ZodString;
1510
- }, "strip", z.ZodTypeAny, {
1511
- href: string;
1512
- }, {
1513
- href: string;
1514
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
1515
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
1516
- source: z.ZodEffects<z.ZodString, string, string>;
1517
- directory: z.ZodOptional<z.ZodString>;
1518
- }, "strict", z.ZodTypeAny, {
1519
- source: string;
1520
- directory?: string | undefined;
1521
- }, {
1522
- source: string;
1523
- directory?: string | undefined;
1524
- }>]>>;
1525
- }, "strip", z.ZodTypeAny, {
1526
- openapi?: string | string[] | {
1527
- source: string;
1528
- directory?: string | undefined;
1529
- } | undefined;
1530
- }, {
1531
- openapi?: string | string[] | {
1532
- source: string;
1533
- directory?: string | undefined;
1534
- } | undefined;
1535
- }>>, "many">;
1536
- }, "strip", z.ZodTypeAny, {
1537
- versions: any[];
1538
- }, {
1539
- versions: any[];
1540
- }>, z.ZodObject<{
1541
- tabs: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1542
- tab: z.ZodString;
1543
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1544
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1545
- name: z.ZodEffects<z.ZodString, string, string>;
1546
- }, "strip", z.ZodTypeAny, {
1547
- name: string;
1548
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1549
- }, {
1550
- name: string;
1551
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1552
- }>]>>;
1553
- hidden: z.ZodOptional<z.ZodBoolean>;
1554
- }, "strip", z.ZodTypeAny, {
1555
- tab: string;
1556
- icon?: string | {
1557
- name: string;
1558
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1559
- } | undefined;
1560
- hidden?: boolean | undefined;
1561
- }, {
1562
- tab: string;
1563
- icon?: string | {
1564
- name: string;
1565
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1566
- } | undefined;
1567
- hidden?: boolean | undefined;
1568
- }>, z.ZodUnion<[z.ZodObject<{
1569
- href: z.ZodString;
1570
- }, "strip", z.ZodTypeAny, {
1571
- href: string;
1572
- }, {
1573
- href: string;
1574
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1575
- tab: z.ZodString;
1576
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1577
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1578
- name: z.ZodEffects<z.ZodString, string, string>;
1579
- }, "strip", z.ZodTypeAny, {
1580
- name: string;
1581
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1582
- }, {
1583
- name: string;
1584
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1585
- }>]>>;
1586
- hidden: z.ZodOptional<z.ZodBoolean>;
1587
- }, "strip", z.ZodTypeAny, {
1588
- tab: string;
1589
- icon?: string | {
1590
- name: string;
1591
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1592
- } | undefined;
1593
- hidden?: boolean | undefined;
1594
- }, {
1595
- tab: string;
1596
- icon?: string | {
1597
- name: string;
1598
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1599
- } | undefined;
1600
- hidden?: boolean | undefined;
1601
- }>, z.ZodUnion<[z.ZodObject<{
1602
- href: z.ZodString;
1603
- }, "strip", z.ZodTypeAny, {
1604
- href: string;
1605
- }, {
1606
- href: string;
1607
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
1608
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
1609
- source: z.ZodEffects<z.ZodString, string, string>;
1610
- directory: z.ZodOptional<z.ZodString>;
1611
- }, "strict", z.ZodTypeAny, {
1612
- source: string;
1613
- directory?: string | undefined;
1614
- }, {
1615
- source: string;
1616
- directory?: string | undefined;
1617
- }>]>>;
1618
- }, "strip", z.ZodTypeAny, {
1619
- openapi?: string | string[] | {
1620
- source: string;
1621
- directory?: string | undefined;
1622
- } | undefined;
1623
- }, {
1624
- openapi?: string | string[] | {
1625
- source: string;
1626
- directory?: string | undefined;
1627
- } | undefined;
1628
- }>>, "many">;
1629
- }, "strip", z.ZodTypeAny, {
1630
- tabs: any[];
1631
- }, {
1632
- tabs: any[];
1633
- }>, z.ZodObject<{
1634
- dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1635
- dropdown: z.ZodString;
1636
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1637
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1638
- name: z.ZodEffects<z.ZodString, string, string>;
1639
- }, "strip", z.ZodTypeAny, {
1640
- name: string;
1641
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1642
- }, {
1643
- name: string;
1644
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1645
- }>]>>;
1646
- hidden: z.ZodOptional<z.ZodBoolean>;
1647
- }, "strip", z.ZodTypeAny, {
1648
- dropdown: string;
1649
- icon?: string | {
1650
- name: string;
1651
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1652
- } | undefined;
1653
- hidden?: boolean | undefined;
1654
- }, {
1655
- dropdown: string;
1656
- icon?: string | {
1657
- name: string;
1658
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1659
- } | undefined;
1660
- hidden?: boolean | undefined;
1661
- }>, z.ZodUnion<[z.ZodObject<{
1662
- href: z.ZodString;
1663
- }, "strip", z.ZodTypeAny, {
1664
- href: string;
1665
- }, {
1666
- href: string;
1667
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1668
- dropdown: z.ZodString;
1669
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1670
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1671
- name: z.ZodEffects<z.ZodString, string, string>;
1672
- }, "strip", z.ZodTypeAny, {
1673
- name: string;
1674
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1675
- }, {
1676
- name: string;
1677
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1678
- }>]>>;
1679
- hidden: z.ZodOptional<z.ZodBoolean>;
1680
- }, "strip", z.ZodTypeAny, {
1681
- dropdown: string;
1682
- icon?: string | {
1683
- name: string;
1684
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1685
- } | undefined;
1686
- hidden?: boolean | undefined;
1687
- }, {
1688
- dropdown: string;
1689
- icon?: string | {
1690
- name: string;
1691
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1692
- } | undefined;
1693
- hidden?: boolean | undefined;
1694
- }>, z.ZodUnion<[z.ZodObject<{
1695
- href: z.ZodString;
1696
- }, "strip", z.ZodTypeAny, {
1697
- href: string;
1698
- }, {
1699
- href: string;
1700
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
1701
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
1702
- source: z.ZodEffects<z.ZodString, string, string>;
1703
- directory: z.ZodOptional<z.ZodString>;
1704
- }, "strict", z.ZodTypeAny, {
1705
- source: string;
1706
- directory?: string | undefined;
1707
- }, {
1708
- source: string;
1709
- directory?: string | undefined;
1710
- }>]>>;
1711
- }, "strip", z.ZodTypeAny, {
1712
- openapi?: string | string[] | {
1713
- source: string;
1714
- directory?: string | undefined;
1715
- } | undefined;
1716
- }, {
1717
- openapi?: string | string[] | {
1718
- source: string;
1719
- directory?: string | undefined;
1720
- } | undefined;
1721
- }>>, "many">;
1722
- }, "strip", z.ZodTypeAny, {
1723
- dropdowns: any[];
1724
- }, {
1725
- dropdowns: any[];
1726
- }>, z.ZodObject<{
1727
- anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1728
- anchor: z.ZodString;
1729
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1730
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1731
- name: z.ZodEffects<z.ZodString, string, string>;
1732
- }, "strip", z.ZodTypeAny, {
1733
- name: string;
1734
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1735
- }, {
1736
- name: string;
1737
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1738
- }>]>>;
1739
- color: z.ZodOptional<z.ZodObject<{
1740
- light: z.ZodOptional<z.ZodString>;
1741
- dark: z.ZodOptional<z.ZodString>;
1742
- }, "strict", z.ZodTypeAny, {
1743
- light?: string | undefined;
1744
- dark?: string | undefined;
1745
- }, {
1746
- light?: string | undefined;
1747
- dark?: string | undefined;
1748
- }>>;
1749
- hidden: z.ZodOptional<z.ZodBoolean>;
1750
- }, "strip", z.ZodTypeAny, {
1751
- anchor: string;
1752
- icon?: string | {
1753
- name: string;
1754
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1755
- } | undefined;
1756
- color?: {
1757
- light?: string | undefined;
1758
- dark?: string | undefined;
1759
- } | undefined;
1760
- hidden?: boolean | undefined;
1761
- }, {
1762
- anchor: string;
1763
- icon?: string | {
1764
- name: string;
1765
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1766
- } | undefined;
1767
- color?: {
1768
- light?: string | undefined;
1769
- dark?: string | undefined;
1770
- } | undefined;
1771
- hidden?: boolean | undefined;
1772
- }>, z.ZodUnion<[z.ZodObject<{
1773
- href: z.ZodString;
1774
- }, "strip", z.ZodTypeAny, {
1775
- href: string;
1776
- }, {
1777
- href: string;
1778
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
1779
- anchor: z.ZodString;
1780
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1781
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1782
- name: z.ZodEffects<z.ZodString, string, string>;
1783
- }, "strip", z.ZodTypeAny, {
1784
- name: string;
1785
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1786
- }, {
1787
- name: string;
1788
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1789
- }>]>>;
1790
- color: z.ZodOptional<z.ZodObject<{
1791
- light: z.ZodOptional<z.ZodString>;
1792
- dark: z.ZodOptional<z.ZodString>;
1793
- }, "strict", z.ZodTypeAny, {
1794
- light?: string | undefined;
1795
- dark?: string | undefined;
1796
- }, {
1797
- light?: string | undefined;
1798
- dark?: string | undefined;
1799
- }>>;
1800
- hidden: z.ZodOptional<z.ZodBoolean>;
1801
- }, "strip", z.ZodTypeAny, {
1802
- anchor: string;
1803
- icon?: string | {
1804
- name: string;
1805
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1806
- } | undefined;
1807
- color?: {
1808
- light?: string | undefined;
1809
- dark?: string | undefined;
1810
- } | undefined;
1811
- hidden?: boolean | undefined;
1812
- }, {
1813
- anchor: string;
1814
- icon?: string | {
1815
- name: string;
1816
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1817
- } | undefined;
1818
- color?: {
1819
- light?: string | undefined;
1820
- dark?: string | undefined;
1821
- } | undefined;
1822
- hidden?: boolean | undefined;
1823
- }>, z.ZodUnion<[z.ZodObject<{
1824
- href: z.ZodString;
1825
- }, "strip", z.ZodTypeAny, {
1826
- href: string;
1827
- }, {
1828
- href: string;
1829
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
1830
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
1831
- source: z.ZodEffects<z.ZodString, string, string>;
1832
- directory: z.ZodOptional<z.ZodString>;
1833
- }, "strict", z.ZodTypeAny, {
1834
- source: string;
1835
- directory?: string | undefined;
1836
- }, {
1837
- source: string;
1838
- directory?: string | undefined;
1839
- }>]>>;
1840
- }, "strip", z.ZodTypeAny, {
1841
- openapi?: string | string[] | {
1842
- source: string;
1843
- directory?: string | undefined;
1844
- } | undefined;
1845
- }, {
1846
- openapi?: string | string[] | {
1847
- source: string;
1848
- directory?: string | undefined;
1849
- } | undefined;
1850
- }>>, "many">;
1851
- }, "strip", z.ZodTypeAny, {
1852
- anchors: any[];
1853
- }, {
1854
- anchors: any[];
1855
- }>, z.ZodObject<{
1856
- groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
1857
- group: z.ZodString;
1858
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1859
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1860
- name: z.ZodEffects<z.ZodString, string, string>;
1861
- }, "strip", z.ZodTypeAny, {
1862
- name: string;
1863
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1864
- }, {
1865
- name: string;
1866
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1867
- }>]>>;
1868
- hidden: z.ZodOptional<z.ZodBoolean>;
1869
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
1870
- href: z.ZodString;
1871
- title: z.ZodString;
1872
- sidebarTitle: z.ZodOptional<z.ZodString>;
1873
- description: z.ZodOptional<z.ZodString>;
1874
- api: z.ZodOptional<z.ZodString>;
1875
- openapi: z.ZodOptional<z.ZodString>;
1876
- contentType: z.ZodOptional<z.ZodString>;
1877
- authMethod: z.ZodOptional<z.ZodString>;
1878
- auth: z.ZodOptional<z.ZodString>;
1879
- version: z.ZodOptional<z.ZodString>;
1880
- mode: z.ZodOptional<z.ZodString>;
1881
- hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
1882
- authors: z.ZodOptional<z.ZodUnknown>;
1883
- lastUpdatedDate: z.ZodOptional<z.ZodString>;
1884
- createdDate: z.ZodOptional<z.ZodString>;
1885
- 'openapi-schema': z.ZodOptional<z.ZodString>;
1886
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
1887
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
1888
- name: z.ZodEffects<z.ZodString, string, string>;
1889
- }, "strip", z.ZodTypeAny, {
1890
- name: string;
1891
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1892
- }, {
1893
- name: string;
1894
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1895
- }>]>>;
1896
- tag: z.ZodOptional<z.ZodString>;
1897
- url: z.ZodOptional<z.ZodString>;
1898
- hideApiMarker: z.ZodOptional<z.ZodBoolean>;
1899
- noindex: z.ZodOptional<z.ZodBoolean>;
1900
- isPublic: z.ZodOptional<z.ZodBoolean>;
1901
- }, "strip", z.ZodTypeAny, {
1902
- href: string;
1903
- title: string;
1904
- sidebarTitle?: string | undefined;
1905
- description?: string | undefined;
1906
- api?: string | undefined;
1907
- openapi?: string | undefined;
1908
- contentType?: string | undefined;
1909
- authMethod?: string | undefined;
1910
- auth?: string | undefined;
1911
- version?: string | undefined;
1912
- mode?: string | undefined;
1913
- hideFooterPagination?: boolean | undefined;
1914
- authors?: unknown;
1915
- lastUpdatedDate?: string | undefined;
1916
- createdDate?: string | undefined;
1917
- 'openapi-schema'?: string | undefined;
1918
- icon?: string | {
1919
- name: string;
1920
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1921
- } | undefined;
1922
- tag?: string | undefined;
1923
- url?: string | undefined;
1924
- hideApiMarker?: boolean | undefined;
1925
- noindex?: boolean | undefined;
1926
- isPublic?: boolean | undefined;
1927
- }, {
1928
- href: string;
1929
- title: string;
1930
- sidebarTitle?: string | undefined;
1931
- description?: string | undefined;
1932
- api?: string | undefined;
1933
- openapi?: string | undefined;
1934
- contentType?: string | undefined;
1935
- authMethod?: string | undefined;
1936
- auth?: string | undefined;
1937
- version?: string | undefined;
1938
- mode?: string | undefined;
1939
- hideFooterPagination?: boolean | undefined;
1940
- authors?: unknown;
1941
- lastUpdatedDate?: string | undefined;
1942
- createdDate?: string | undefined;
1943
- 'openapi-schema'?: string | undefined;
1944
- icon?: string | {
1945
- name: string;
1946
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1947
- } | undefined;
1948
- tag?: string | undefined;
1949
- url?: string | undefined;
1950
- hideApiMarker?: boolean | undefined;
1951
- noindex?: boolean | undefined;
1952
- isPublic?: boolean | undefined;
1953
- }>>;
1954
- }, "strip", z.ZodTypeAny, {
1955
- group: string;
1956
- icon?: string | {
1957
- name: string;
1958
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1959
- } | undefined;
1960
- hidden?: boolean | undefined;
1961
- root?: string | {
1962
- href: string;
1963
- title: string;
1964
- sidebarTitle?: string | undefined;
1965
- description?: string | undefined;
1966
- api?: string | undefined;
1967
- openapi?: string | undefined;
1968
- contentType?: string | undefined;
1969
- authMethod?: string | undefined;
1970
- auth?: string | undefined;
1971
- version?: string | undefined;
1972
- mode?: string | undefined;
1973
- hideFooterPagination?: boolean | undefined;
1974
- authors?: unknown;
1975
- lastUpdatedDate?: string | undefined;
1976
- createdDate?: string | undefined;
1977
- 'openapi-schema'?: string | undefined;
1978
- icon?: string | {
1979
- name: string;
1980
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1981
- } | undefined;
1982
- tag?: string | undefined;
1983
- url?: string | undefined;
1984
- hideApiMarker?: boolean | undefined;
1985
- noindex?: boolean | undefined;
1986
- isPublic?: boolean | undefined;
1987
- } | undefined;
1988
- }, {
1989
- group: string;
1990
- icon?: string | {
1991
- name: string;
1992
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1993
- } | undefined;
1994
- hidden?: boolean | undefined;
1995
- root?: string | {
1996
- href: string;
1997
- title: string;
1998
- sidebarTitle?: string | undefined;
1999
- description?: string | undefined;
2000
- api?: string | undefined;
2001
- openapi?: string | undefined;
2002
- contentType?: string | undefined;
2003
- authMethod?: string | undefined;
2004
- auth?: string | undefined;
2005
- version?: string | undefined;
2006
- mode?: string | undefined;
2007
- hideFooterPagination?: boolean | undefined;
2008
- authors?: unknown;
2009
- lastUpdatedDate?: string | undefined;
2010
- createdDate?: string | undefined;
2011
- 'openapi-schema'?: string | undefined;
2012
- icon?: string | {
2013
- name: string;
2014
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2015
- } | undefined;
2016
- tag?: string | undefined;
2017
- url?: string | undefined;
2018
- hideApiMarker?: boolean | undefined;
2019
- noindex?: boolean | undefined;
2020
- isPublic?: boolean | undefined;
2021
- } | undefined;
2022
- }>, z.ZodUnion<[z.ZodObject<{
2023
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, z.ZodObject<{
2024
- source: z.ZodEffects<z.ZodString, string, string>;
2025
- directory: z.ZodOptional<z.ZodString>;
2026
- }, "strict", z.ZodTypeAny, {
2027
- source: string;
2028
- directory?: string | undefined;
2029
- }, {
2030
- source: string;
2031
- directory?: string | undefined;
2032
- }>]>;
2033
- }, "strip", z.ZodTypeAny, {
2034
- openapi: (string | string[] | {
2035
- source: string;
2036
- directory?: string | undefined;
2037
- }) & (string | string[] | {
2038
- source: string;
2039
- directory?: string | undefined;
2040
- } | undefined);
2041
- }, {
2042
- openapi: (string | string[] | {
2043
- source: string;
2044
- directory?: string | undefined;
2045
- }) & (string | string[] | {
2046
- source: string;
2047
- directory?: string | undefined;
2048
- } | undefined);
2049
- }>, z.ZodLazy<z.ZodObject<{
2050
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2051
- }, "strip", z.ZodTypeAny, {
2052
- pages: any[];
2053
- }, {
2054
- pages: any[];
2055
- }>>]>>, "many">;
2056
- }, "strip", z.ZodTypeAny, {
2057
- groups: ({
2058
- group: string;
2059
- icon?: string | {
2060
- name: string;
2061
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2062
- } | undefined;
2063
- hidden?: boolean | undefined;
2064
- root?: string | {
2065
- href: string;
2066
- title: string;
2067
- sidebarTitle?: string | undefined;
2068
- description?: string | undefined;
2069
- api?: string | undefined;
2070
- openapi?: string | undefined;
2071
- contentType?: string | undefined;
2072
- authMethod?: string | undefined;
2073
- auth?: string | undefined;
2074
- version?: string | undefined;
2075
- mode?: string | undefined;
2076
- hideFooterPagination?: boolean | undefined;
2077
- authors?: unknown;
2078
- lastUpdatedDate?: string | undefined;
2079
- createdDate?: string | undefined;
2080
- 'openapi-schema'?: string | undefined;
2081
- icon?: string | {
2082
- name: string;
2083
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2084
- } | undefined;
2085
- tag?: string | undefined;
2086
- url?: string | undefined;
2087
- hideApiMarker?: boolean | undefined;
2088
- noindex?: boolean | undefined;
2089
- isPublic?: boolean | undefined;
2090
- } | undefined;
2091
- } & ({
2092
- openapi: (string | string[] | {
2093
- source: string;
2094
- directory?: string | undefined;
2095
- }) & (string | string[] | {
2096
- source: string;
2097
- directory?: string | undefined;
2098
- } | undefined);
2099
- } | {
2100
- pages: any[];
2101
- }))[];
2102
- }, {
2103
- groups: ({
2104
- group: string;
2105
- icon?: string | {
2106
- name: string;
2107
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2108
- } | undefined;
2109
- hidden?: boolean | undefined;
2110
- root?: string | {
2111
- href: string;
2112
- title: string;
2113
- sidebarTitle?: string | undefined;
2114
- description?: string | undefined;
2115
- api?: string | undefined;
2116
- openapi?: string | undefined;
2117
- contentType?: string | undefined;
2118
- authMethod?: string | undefined;
2119
- auth?: string | undefined;
2120
- version?: string | undefined;
2121
- mode?: string | undefined;
2122
- hideFooterPagination?: boolean | undefined;
2123
- authors?: unknown;
2124
- lastUpdatedDate?: string | undefined;
2125
- createdDate?: string | undefined;
2126
- 'openapi-schema'?: string | undefined;
2127
- icon?: string | {
2128
- name: string;
2129
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2130
- } | undefined;
2131
- tag?: string | undefined;
2132
- url?: string | undefined;
2133
- hideApiMarker?: boolean | undefined;
2134
- noindex?: boolean | undefined;
2135
- isPublic?: boolean | undefined;
2136
- } | undefined;
2137
- } & ({
2138
- openapi: (string | string[] | {
2139
- source: string;
2140
- directory?: string | undefined;
2141
- }) & (string | string[] | {
2142
- source: string;
2143
- directory?: string | undefined;
2144
- } | undefined);
2145
- } | {
2146
- pages: any[];
2147
- }))[];
2148
- }>, z.ZodObject<{
2149
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
2150
- }, "strip", z.ZodTypeAny, {
2151
- pages: any[];
2152
- }, {
2153
- pages: any[];
2154
- }>]>>;
931
+ }>>;
2155
932
  export type NavigationConfig = z.infer<typeof navigationSchema>;
2156
933
  export type DecoratedNavigationConfig = z.infer<typeof decoratedNavigationSchema>;