@mintlify/validation 0.1.249 → 0.1.250

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 (23) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +945 -410
  2. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +232 -19
  3. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +6 -2
  4. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +160 -19
  5. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +6 -2
  6. package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +0 -25
  7. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +364 -110
  8. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +88 -19
  9. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +6 -2
  10. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +160 -19
  11. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +6 -2
  12. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +88 -19
  13. package/dist/mint-config/schemas/v2/properties/navigation/version.js +6 -2
  14. package/dist/mint-config/schemas/v2/themes/linden.d.ts +182 -75
  15. package/dist/mint-config/schemas/v2/themes/maple.d.ts +182 -75
  16. package/dist/mint-config/schemas/v2/themes/mint.d.ts +182 -75
  17. package/dist/mint-config/schemas/v2/themes/palm.d.ts +182 -75
  18. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +182 -55
  19. package/dist/mint-config/schemas/v2/themes/willow.d.ts +182 -75
  20. package/dist/mint-config/upgrades/updateNavigationToDocsConfig.d.ts +2 -2
  21. package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +2 -2
  22. package/dist/tsconfig.build.tsbuildinfo +1 -1
  23. package/package.json +3 -3
@@ -214,15 +214,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
214
214
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
215
215
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
216
216
  hidden: z.ZodOptional<z.ZodBoolean>;
217
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
218
217
  }, "strip", z.ZodTypeAny, {
219
218
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
220
219
  hidden?: boolean | undefined;
221
- openapi?: string | string[] | undefined;
222
220
  }, {
223
221
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
224
222
  hidden?: boolean | undefined;
225
- openapi?: string | string[] | undefined;
226
223
  }>, z.ZodObject<{
227
224
  href: z.ZodString;
228
225
  }, "strip", z.ZodTypeAny, {
@@ -233,15 +230,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
233
230
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
234
231
  version: z.ZodString;
235
232
  hidden: z.ZodOptional<z.ZodBoolean>;
236
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
237
233
  }, "strip", z.ZodTypeAny, {
238
234
  version: string;
239
235
  hidden?: boolean | undefined;
240
- openapi?: string | string[] | undefined;
241
236
  }, {
242
237
  version: string;
243
238
  hidden?: boolean | undefined;
244
- openapi?: string | string[] | undefined;
245
239
  }>, z.ZodObject<{
246
240
  href: z.ZodString;
247
241
  }, "strip", z.ZodTypeAny, {
@@ -262,7 +256,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
262
256
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
263
257
  }>]>>;
264
258
  hidden: z.ZodOptional<z.ZodBoolean>;
265
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
266
259
  }, "strip", z.ZodTypeAny, {
267
260
  tab: string;
268
261
  icon?: string | {
@@ -270,7 +263,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
270
263
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
271
264
  } | undefined;
272
265
  hidden?: boolean | undefined;
273
- openapi?: string | string[] | undefined;
274
266
  }, {
275
267
  tab: string;
276
268
  icon?: string | {
@@ -278,7 +270,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
278
270
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
279
271
  } | undefined;
280
272
  hidden?: boolean | undefined;
281
- openapi?: string | string[] | undefined;
282
273
  }>, z.ZodObject<{
283
274
  href: z.ZodString;
284
275
  }, "strip", z.ZodTypeAny, {
@@ -299,7 +290,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
299
290
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
300
291
  }>]>>;
301
292
  hidden: z.ZodOptional<z.ZodBoolean>;
302
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
303
293
  }, "strip", z.ZodTypeAny, {
304
294
  dropdown: string;
305
295
  icon?: string | {
@@ -307,7 +297,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
307
297
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
308
298
  } | undefined;
309
299
  hidden?: boolean | undefined;
310
- openapi?: string | string[] | undefined;
311
300
  }, {
312
301
  dropdown: string;
313
302
  icon?: string | {
@@ -315,7 +304,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
315
304
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
316
305
  } | undefined;
317
306
  hidden?: boolean | undefined;
318
- openapi?: string | string[] | undefined;
319
307
  }>, z.ZodObject<{
320
308
  href: z.ZodString;
321
309
  }, "strip", z.ZodTypeAny, {
@@ -346,7 +334,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
346
334
  dark?: string | undefined;
347
335
  }>>;
348
336
  hidden: z.ZodOptional<z.ZodBoolean>;
349
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
350
337
  }, "strip", z.ZodTypeAny, {
351
338
  anchor: string;
352
339
  icon?: string | {
@@ -358,7 +345,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
358
345
  dark?: string | undefined;
359
346
  } | undefined;
360
347
  hidden?: boolean | undefined;
361
- openapi?: string | string[] | undefined;
362
348
  }, {
363
349
  anchor: string;
364
350
  icon?: string | {
@@ -370,7 +356,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
370
356
  dark?: string | undefined;
371
357
  } | undefined;
372
358
  hidden?: boolean | undefined;
373
- openapi?: string | string[] | undefined;
374
359
  }>, z.ZodObject<{
375
360
  href: z.ZodString;
376
361
  }, "strip", z.ZodTypeAny, {
@@ -382,14 +367,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
382
367
  languages?: ({
383
368
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
384
369
  hidden?: boolean | undefined;
385
- openapi?: string | string[] | undefined;
386
370
  } & {
387
371
  href: string;
388
372
  })[] | undefined;
389
373
  versions?: ({
390
374
  version: string;
391
375
  hidden?: boolean | undefined;
392
- openapi?: string | string[] | undefined;
393
376
  } & {
394
377
  href: string;
395
378
  })[] | undefined;
@@ -400,7 +383,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
400
383
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
401
384
  } | undefined;
402
385
  hidden?: boolean | undefined;
403
- openapi?: string | string[] | undefined;
404
386
  } & {
405
387
  href: string;
406
388
  })[] | undefined;
@@ -411,7 +393,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
411
393
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
412
394
  } | undefined;
413
395
  hidden?: boolean | undefined;
414
- openapi?: string | string[] | undefined;
415
396
  } & {
416
397
  href: string;
417
398
  })[] | undefined;
@@ -426,7 +407,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
426
407
  dark?: string | undefined;
427
408
  } | undefined;
428
409
  hidden?: boolean | undefined;
429
- openapi?: string | string[] | undefined;
430
410
  } & {
431
411
  href: string;
432
412
  })[] | undefined;
@@ -434,14 +414,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
434
414
  languages?: ({
435
415
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
436
416
  hidden?: boolean | undefined;
437
- openapi?: string | string[] | undefined;
438
417
  } & {
439
418
  href: string;
440
419
  })[] | undefined;
441
420
  versions?: ({
442
421
  version: string;
443
422
  hidden?: boolean | undefined;
444
- openapi?: string | string[] | undefined;
445
423
  } & {
446
424
  href: string;
447
425
  })[] | undefined;
@@ -452,7 +430,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
452
430
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
453
431
  } | undefined;
454
432
  hidden?: boolean | undefined;
455
- openapi?: string | string[] | undefined;
456
433
  } & {
457
434
  href: string;
458
435
  })[] | undefined;
@@ -463,7 +440,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
463
440
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
464
441
  } | undefined;
465
442
  hidden?: boolean | undefined;
466
- openapi?: string | string[] | undefined;
467
443
  } & {
468
444
  href: string;
469
445
  })[] | undefined;
@@ -478,7 +454,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
478
454
  dark?: string | undefined;
479
455
  } | undefined;
480
456
  hidden?: boolean | undefined;
481
- openapi?: string | string[] | undefined;
482
457
  } & {
483
458
  href: string;
484
459
  })[] | undefined;
@@ -488,14 +463,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
488
463
  languages?: ({
489
464
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
490
465
  hidden?: boolean | undefined;
491
- openapi?: string | string[] | undefined;
492
466
  } & {
493
467
  href: string;
494
468
  })[] | undefined;
495
469
  versions?: ({
496
470
  version: string;
497
471
  hidden?: boolean | undefined;
498
- openapi?: string | string[] | undefined;
499
472
  } & {
500
473
  href: string;
501
474
  })[] | undefined;
@@ -506,7 +479,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
506
479
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
507
480
  } | undefined;
508
481
  hidden?: boolean | undefined;
509
- openapi?: string | string[] | undefined;
510
482
  } & {
511
483
  href: string;
512
484
  })[] | undefined;
@@ -517,7 +489,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
517
489
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
518
490
  } | undefined;
519
491
  hidden?: boolean | undefined;
520
- openapi?: string | string[] | undefined;
521
492
  } & {
522
493
  href: string;
523
494
  })[] | undefined;
@@ -532,7 +503,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
532
503
  dark?: string | undefined;
533
504
  } | undefined;
534
505
  hidden?: boolean | undefined;
535
- openapi?: string | string[] | undefined;
536
506
  } & {
537
507
  href: string;
538
508
  })[] | undefined;
@@ -542,14 +512,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
542
512
  languages?: ({
543
513
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
544
514
  hidden?: boolean | undefined;
545
- openapi?: string | string[] | undefined;
546
515
  } & {
547
516
  href: string;
548
517
  })[] | undefined;
549
518
  versions?: ({
550
519
  version: string;
551
520
  hidden?: boolean | undefined;
552
- openapi?: string | string[] | undefined;
553
521
  } & {
554
522
  href: string;
555
523
  })[] | undefined;
@@ -560,7 +528,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
560
528
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
561
529
  } | undefined;
562
530
  hidden?: boolean | undefined;
563
- openapi?: string | string[] | undefined;
564
531
  } & {
565
532
  href: string;
566
533
  })[] | undefined;
@@ -571,7 +538,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
571
538
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
572
539
  } | undefined;
573
540
  hidden?: boolean | undefined;
574
- openapi?: string | string[] | undefined;
575
541
  } & {
576
542
  href: string;
577
543
  })[] | undefined;
@@ -586,7 +552,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
586
552
  dark?: string | undefined;
587
553
  } | undefined;
588
554
  hidden?: boolean | undefined;
589
- openapi?: string | string[] | undefined;
590
555
  } & {
591
556
  href: string;
592
557
  })[] | undefined;
@@ -595,22 +560,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
595
560
  languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
596
561
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
597
562
  hidden: z.ZodOptional<z.ZodBoolean>;
598
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
599
563
  }, "strip", z.ZodTypeAny, {
600
564
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
601
565
  hidden?: boolean | undefined;
602
- openapi?: string | string[] | undefined;
603
566
  }, {
604
567
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
605
568
  hidden?: boolean | undefined;
606
- openapi?: string | string[] | undefined;
607
569
  }>, z.ZodUnion<[z.ZodObject<{
608
570
  href: z.ZodString;
609
571
  }, "strip", z.ZodTypeAny, {
610
572
  href: string;
611
573
  }, {
612
574
  href: string;
613
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
575
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
576
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
577
+ hidden: z.ZodOptional<z.ZodBoolean>;
578
+ }, "strip", z.ZodTypeAny, {
579
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
580
+ hidden?: boolean | undefined;
581
+ }, {
582
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
583
+ hidden?: boolean | undefined;
584
+ }>, z.ZodUnion<[z.ZodObject<{
585
+ href: z.ZodString;
586
+ }, "strip", z.ZodTypeAny, {
587
+ href: string;
588
+ }, {
589
+ href: string;
590
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
591
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
592
+ }, "strip", z.ZodTypeAny, {
593
+ openapi?: string | string[] | undefined;
594
+ }, {
595
+ openapi?: string | string[] | undefined;
596
+ }>>, "many">;
614
597
  }, "strip", z.ZodTypeAny, {
615
598
  languages: any[];
616
599
  }, {
@@ -619,22 +602,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
619
602
  versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
620
603
  version: z.ZodString;
621
604
  hidden: z.ZodOptional<z.ZodBoolean>;
622
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
623
605
  }, "strip", z.ZodTypeAny, {
624
606
  version: string;
625
607
  hidden?: boolean | undefined;
626
- openapi?: string | string[] | undefined;
627
608
  }, {
628
609
  version: string;
629
610
  hidden?: boolean | undefined;
630
- openapi?: string | string[] | undefined;
631
611
  }>, z.ZodUnion<[z.ZodObject<{
632
612
  href: z.ZodString;
633
613
  }, "strip", z.ZodTypeAny, {
634
614
  href: string;
635
615
  }, {
636
616
  href: string;
637
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
617
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
618
+ version: z.ZodString;
619
+ hidden: z.ZodOptional<z.ZodBoolean>;
620
+ }, "strip", z.ZodTypeAny, {
621
+ version: string;
622
+ hidden?: boolean | undefined;
623
+ }, {
624
+ version: string;
625
+ hidden?: boolean | undefined;
626
+ }>, z.ZodUnion<[z.ZodObject<{
627
+ href: z.ZodString;
628
+ }, "strip", z.ZodTypeAny, {
629
+ href: string;
630
+ }, {
631
+ href: string;
632
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
633
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
634
+ }, "strip", z.ZodTypeAny, {
635
+ openapi?: string | string[] | undefined;
636
+ }, {
637
+ openapi?: string | string[] | undefined;
638
+ }>>, "many">;
638
639
  }, "strip", z.ZodTypeAny, {
639
640
  versions: any[];
640
641
  }, {
@@ -653,7 +654,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
653
654
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
654
655
  }>]>>;
655
656
  hidden: z.ZodOptional<z.ZodBoolean>;
656
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
657
657
  }, "strip", z.ZodTypeAny, {
658
658
  tab: string;
659
659
  icon?: string | {
@@ -661,7 +661,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
661
661
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
662
662
  } | undefined;
663
663
  hidden?: boolean | undefined;
664
- openapi?: string | string[] | undefined;
665
664
  }, {
666
665
  tab: string;
667
666
  icon?: string | {
@@ -669,14 +668,52 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
669
668
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
670
669
  } | undefined;
671
670
  hidden?: boolean | undefined;
672
- openapi?: string | string[] | undefined;
673
671
  }>, z.ZodUnion<[z.ZodObject<{
674
672
  href: z.ZodString;
675
673
  }, "strip", z.ZodTypeAny, {
676
674
  href: string;
677
675
  }, {
678
676
  href: string;
679
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
677
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
678
+ tab: z.ZodString;
679
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
680
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
681
+ name: z.ZodEffects<z.ZodString, string, string>;
682
+ }, "strip", z.ZodTypeAny, {
683
+ name: string;
684
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
685
+ }, {
686
+ name: string;
687
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
688
+ }>]>>;
689
+ hidden: z.ZodOptional<z.ZodBoolean>;
690
+ }, "strip", z.ZodTypeAny, {
691
+ tab: string;
692
+ icon?: string | {
693
+ name: string;
694
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
695
+ } | undefined;
696
+ hidden?: boolean | undefined;
697
+ }, {
698
+ tab: string;
699
+ icon?: string | {
700
+ name: string;
701
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
702
+ } | undefined;
703
+ hidden?: boolean | undefined;
704
+ }>, z.ZodUnion<[z.ZodObject<{
705
+ href: z.ZodString;
706
+ }, "strip", z.ZodTypeAny, {
707
+ href: string;
708
+ }, {
709
+ href: string;
710
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
711
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
712
+ }, "strip", z.ZodTypeAny, {
713
+ openapi?: string | string[] | undefined;
714
+ }, {
715
+ openapi?: string | string[] | undefined;
716
+ }>>, "many">;
680
717
  }, "strip", z.ZodTypeAny, {
681
718
  tabs: any[];
682
719
  }, {
@@ -695,7 +732,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
695
732
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
696
733
  }>]>>;
697
734
  hidden: z.ZodOptional<z.ZodBoolean>;
698
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
699
735
  }, "strip", z.ZodTypeAny, {
700
736
  dropdown: string;
701
737
  icon?: string | {
@@ -703,7 +739,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
703
739
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
704
740
  } | undefined;
705
741
  hidden?: boolean | undefined;
706
- openapi?: string | string[] | undefined;
707
742
  }, {
708
743
  dropdown: string;
709
744
  icon?: string | {
@@ -711,14 +746,52 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
711
746
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
712
747
  } | undefined;
713
748
  hidden?: boolean | undefined;
714
- openapi?: string | string[] | undefined;
715
749
  }>, z.ZodUnion<[z.ZodObject<{
716
750
  href: z.ZodString;
717
751
  }, "strip", z.ZodTypeAny, {
718
752
  href: string;
719
753
  }, {
720
754
  href: string;
721
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
755
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
756
+ dropdown: z.ZodString;
757
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
758
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
759
+ name: z.ZodEffects<z.ZodString, string, string>;
760
+ }, "strip", z.ZodTypeAny, {
761
+ name: string;
762
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
763
+ }, {
764
+ name: string;
765
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
766
+ }>]>>;
767
+ hidden: z.ZodOptional<z.ZodBoolean>;
768
+ }, "strip", z.ZodTypeAny, {
769
+ dropdown: string;
770
+ icon?: string | {
771
+ name: string;
772
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
773
+ } | undefined;
774
+ hidden?: boolean | undefined;
775
+ }, {
776
+ dropdown: string;
777
+ icon?: string | {
778
+ name: string;
779
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
780
+ } | undefined;
781
+ hidden?: boolean | undefined;
782
+ }>, z.ZodUnion<[z.ZodObject<{
783
+ href: z.ZodString;
784
+ }, "strip", z.ZodTypeAny, {
785
+ href: string;
786
+ }, {
787
+ href: string;
788
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
789
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
790
+ }, "strip", z.ZodTypeAny, {
791
+ openapi?: string | string[] | undefined;
792
+ }, {
793
+ openapi?: string | string[] | undefined;
794
+ }>>, "many">;
722
795
  }, "strip", z.ZodTypeAny, {
723
796
  dropdowns: any[];
724
797
  }, {
@@ -747,7 +820,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
747
820
  dark?: string | undefined;
748
821
  }>>;
749
822
  hidden: z.ZodOptional<z.ZodBoolean>;
750
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
751
823
  }, "strip", z.ZodTypeAny, {
752
824
  anchor: string;
753
825
  icon?: string | {
@@ -759,7 +831,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
759
831
  dark?: string | undefined;
760
832
  } | undefined;
761
833
  hidden?: boolean | undefined;
762
- openapi?: string | string[] | undefined;
763
834
  }, {
764
835
  anchor: string;
765
836
  icon?: string | {
@@ -771,14 +842,70 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
771
842
  dark?: string | undefined;
772
843
  } | undefined;
773
844
  hidden?: boolean | undefined;
774
- openapi?: string | string[] | undefined;
775
845
  }>, z.ZodUnion<[z.ZodObject<{
776
846
  href: z.ZodString;
777
847
  }, "strip", z.ZodTypeAny, {
778
848
  href: string;
779
849
  }, {
780
850
  href: string;
781
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
851
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
852
+ anchor: z.ZodString;
853
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
854
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
855
+ name: z.ZodEffects<z.ZodString, string, string>;
856
+ }, "strip", z.ZodTypeAny, {
857
+ name: string;
858
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
859
+ }, {
860
+ name: string;
861
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
862
+ }>]>>;
863
+ color: z.ZodOptional<z.ZodObject<{
864
+ light: z.ZodOptional<z.ZodString>;
865
+ dark: z.ZodOptional<z.ZodString>;
866
+ }, "strict", z.ZodTypeAny, {
867
+ light?: string | undefined;
868
+ dark?: string | undefined;
869
+ }, {
870
+ light?: string | undefined;
871
+ dark?: string | undefined;
872
+ }>>;
873
+ hidden: z.ZodOptional<z.ZodBoolean>;
874
+ }, "strip", z.ZodTypeAny, {
875
+ anchor: string;
876
+ icon?: string | {
877
+ name: string;
878
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
879
+ } | undefined;
880
+ color?: {
881
+ light?: string | undefined;
882
+ dark?: string | undefined;
883
+ } | undefined;
884
+ hidden?: boolean | undefined;
885
+ }, {
886
+ anchor: string;
887
+ icon?: string | {
888
+ name: string;
889
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
890
+ } | undefined;
891
+ color?: {
892
+ light?: string | undefined;
893
+ dark?: string | undefined;
894
+ } | undefined;
895
+ hidden?: boolean | undefined;
896
+ }>, z.ZodUnion<[z.ZodObject<{
897
+ href: z.ZodString;
898
+ }, "strip", z.ZodTypeAny, {
899
+ href: string;
900
+ }, {
901
+ href: string;
902
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
903
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
904
+ }, "strip", z.ZodTypeAny, {
905
+ openapi?: string | string[] | undefined;
906
+ }, {
907
+ openapi?: string | string[] | undefined;
908
+ }>>, "many">;
782
909
  }, "strip", z.ZodTypeAny, {
783
910
  anchors: any[];
784
911
  }, {
@@ -1514,14 +1641,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1514
1641
  languages?: ({
1515
1642
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1516
1643
  hidden?: boolean | undefined;
1517
- openapi?: string | string[] | undefined;
1518
1644
  } & {
1519
1645
  href: string;
1520
1646
  })[] | undefined;
1521
1647
  versions?: ({
1522
1648
  version: string;
1523
1649
  hidden?: boolean | undefined;
1524
- openapi?: string | string[] | undefined;
1525
1650
  } & {
1526
1651
  href: string;
1527
1652
  })[] | undefined;
@@ -1532,7 +1657,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1532
1657
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1533
1658
  } | undefined;
1534
1659
  hidden?: boolean | undefined;
1535
- openapi?: string | string[] | undefined;
1536
1660
  } & {
1537
1661
  href: string;
1538
1662
  })[] | undefined;
@@ -1543,7 +1667,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1543
1667
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1544
1668
  } | undefined;
1545
1669
  hidden?: boolean | undefined;
1546
- openapi?: string | string[] | undefined;
1547
1670
  } & {
1548
1671
  href: string;
1549
1672
  })[] | undefined;
@@ -1558,7 +1681,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1558
1681
  dark?: string | undefined;
1559
1682
  } | undefined;
1560
1683
  hidden?: boolean | undefined;
1561
- openapi?: string | string[] | undefined;
1562
1684
  } & {
1563
1685
  href: string;
1564
1686
  })[] | undefined;
@@ -1620,14 +1742,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1620
1742
  languages?: ({
1621
1743
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1622
1744
  hidden?: boolean | undefined;
1623
- openapi?: string | string[] | undefined;
1624
1745
  } & {
1625
1746
  href: string;
1626
1747
  })[] | undefined;
1627
1748
  versions?: ({
1628
1749
  version: string;
1629
1750
  hidden?: boolean | undefined;
1630
- openapi?: string | string[] | undefined;
1631
1751
  } & {
1632
1752
  href: string;
1633
1753
  })[] | undefined;
@@ -1638,7 +1758,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1638
1758
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1639
1759
  } | undefined;
1640
1760
  hidden?: boolean | undefined;
1641
- openapi?: string | string[] | undefined;
1642
1761
  } & {
1643
1762
  href: string;
1644
1763
  })[] | undefined;
@@ -1649,7 +1768,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1649
1768
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1650
1769
  } | undefined;
1651
1770
  hidden?: boolean | undefined;
1652
- openapi?: string | string[] | undefined;
1653
1771
  } & {
1654
1772
  href: string;
1655
1773
  })[] | undefined;
@@ -1664,7 +1782,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1664
1782
  dark?: string | undefined;
1665
1783
  } | undefined;
1666
1784
  hidden?: boolean | undefined;
1667
- openapi?: string | string[] | undefined;
1668
1785
  } & {
1669
1786
  href: string;
1670
1787
  })[] | undefined;
@@ -1893,14 +2010,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1893
2010
  languages?: ({
1894
2011
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1895
2012
  hidden?: boolean | undefined;
1896
- openapi?: string | string[] | undefined;
1897
2013
  } & {
1898
2014
  href: string;
1899
2015
  })[] | undefined;
1900
2016
  versions?: ({
1901
2017
  version: string;
1902
2018
  hidden?: boolean | undefined;
1903
- openapi?: string | string[] | undefined;
1904
2019
  } & {
1905
2020
  href: string;
1906
2021
  })[] | undefined;
@@ -1911,7 +2026,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1911
2026
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1912
2027
  } | undefined;
1913
2028
  hidden?: boolean | undefined;
1914
- openapi?: string | string[] | undefined;
1915
2029
  } & {
1916
2030
  href: string;
1917
2031
  })[] | undefined;
@@ -1922,7 +2036,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1922
2036
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1923
2037
  } | undefined;
1924
2038
  hidden?: boolean | undefined;
1925
- openapi?: string | string[] | undefined;
1926
2039
  } & {
1927
2040
  href: string;
1928
2041
  })[] | undefined;
@@ -1937,7 +2050,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1937
2050
  dark?: string | undefined;
1938
2051
  } | undefined;
1939
2052
  hidden?: boolean | undefined;
1940
- openapi?: string | string[] | undefined;
1941
2053
  } & {
1942
2054
  href: string;
1943
2055
  })[] | undefined;
@@ -1999,14 +2111,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
1999
2111
  languages?: ({
2000
2112
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2001
2113
  hidden?: boolean | undefined;
2002
- openapi?: string | string[] | undefined;
2003
2114
  } & {
2004
2115
  href: string;
2005
2116
  })[] | undefined;
2006
2117
  versions?: ({
2007
2118
  version: string;
2008
2119
  hidden?: boolean | undefined;
2009
- openapi?: string | string[] | undefined;
2010
2120
  } & {
2011
2121
  href: string;
2012
2122
  })[] | undefined;
@@ -2017,7 +2127,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2017
2127
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2018
2128
  } | undefined;
2019
2129
  hidden?: boolean | undefined;
2020
- openapi?: string | string[] | undefined;
2021
2130
  } & {
2022
2131
  href: string;
2023
2132
  })[] | undefined;
@@ -2028,7 +2137,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2028
2137
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2029
2138
  } | undefined;
2030
2139
  hidden?: boolean | undefined;
2031
- openapi?: string | string[] | undefined;
2032
2140
  } & {
2033
2141
  href: string;
2034
2142
  })[] | undefined;
@@ -2043,7 +2151,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2043
2151
  dark?: string | undefined;
2044
2152
  } | undefined;
2045
2153
  hidden?: boolean | undefined;
2046
- openapi?: string | string[] | undefined;
2047
2154
  } & {
2048
2155
  href: string;
2049
2156
  })[] | undefined;
@@ -2474,15 +2581,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2474
2581
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2475
2582
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2476
2583
  hidden: z.ZodOptional<z.ZodBoolean>;
2477
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
2478
2584
  }, "strip", z.ZodTypeAny, {
2479
2585
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2480
2586
  hidden?: boolean | undefined;
2481
- openapi?: string | string[] | undefined;
2482
2587
  }, {
2483
2588
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2484
2589
  hidden?: boolean | undefined;
2485
- openapi?: string | string[] | undefined;
2486
2590
  }>, z.ZodObject<{
2487
2591
  href: z.ZodString;
2488
2592
  }, "strip", z.ZodTypeAny, {
@@ -2493,15 +2597,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2493
2597
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
2494
2598
  version: z.ZodString;
2495
2599
  hidden: z.ZodOptional<z.ZodBoolean>;
2496
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
2497
2600
  }, "strip", z.ZodTypeAny, {
2498
2601
  version: string;
2499
2602
  hidden?: boolean | undefined;
2500
- openapi?: string | string[] | undefined;
2501
2603
  }, {
2502
2604
  version: string;
2503
2605
  hidden?: boolean | undefined;
2504
- openapi?: string | string[] | undefined;
2505
2606
  }>, z.ZodObject<{
2506
2607
  href: z.ZodString;
2507
2608
  }, "strip", z.ZodTypeAny, {
@@ -2522,7 +2623,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2522
2623
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2523
2624
  }>]>>;
2524
2625
  hidden: z.ZodOptional<z.ZodBoolean>;
2525
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
2526
2626
  }, "strip", z.ZodTypeAny, {
2527
2627
  tab: string;
2528
2628
  icon?: string | {
@@ -2530,7 +2630,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2530
2630
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2531
2631
  } | undefined;
2532
2632
  hidden?: boolean | undefined;
2533
- openapi?: string | string[] | undefined;
2534
2633
  }, {
2535
2634
  tab: string;
2536
2635
  icon?: string | {
@@ -2538,7 +2637,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2538
2637
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2539
2638
  } | undefined;
2540
2639
  hidden?: boolean | undefined;
2541
- openapi?: string | string[] | undefined;
2542
2640
  }>, z.ZodObject<{
2543
2641
  href: z.ZodString;
2544
2642
  }, "strip", z.ZodTypeAny, {
@@ -2559,7 +2657,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2559
2657
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2560
2658
  }>]>>;
2561
2659
  hidden: z.ZodOptional<z.ZodBoolean>;
2562
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
2563
2660
  }, "strip", z.ZodTypeAny, {
2564
2661
  dropdown: string;
2565
2662
  icon?: string | {
@@ -2567,7 +2664,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2567
2664
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2568
2665
  } | undefined;
2569
2666
  hidden?: boolean | undefined;
2570
- openapi?: string | string[] | undefined;
2571
2667
  }, {
2572
2668
  dropdown: string;
2573
2669
  icon?: string | {
@@ -2575,7 +2671,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2575
2671
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2576
2672
  } | undefined;
2577
2673
  hidden?: boolean | undefined;
2578
- openapi?: string | string[] | undefined;
2579
2674
  }>, z.ZodObject<{
2580
2675
  href: z.ZodString;
2581
2676
  }, "strip", z.ZodTypeAny, {
@@ -2606,7 +2701,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2606
2701
  dark?: string | undefined;
2607
2702
  }>>;
2608
2703
  hidden: z.ZodOptional<z.ZodBoolean>;
2609
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
2610
2704
  }, "strip", z.ZodTypeAny, {
2611
2705
  anchor: string;
2612
2706
  icon?: string | {
@@ -2618,7 +2712,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2618
2712
  dark?: string | undefined;
2619
2713
  } | undefined;
2620
2714
  hidden?: boolean | undefined;
2621
- openapi?: string | string[] | undefined;
2622
2715
  }, {
2623
2716
  anchor: string;
2624
2717
  icon?: string | {
@@ -2630,7 +2723,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2630
2723
  dark?: string | undefined;
2631
2724
  } | undefined;
2632
2725
  hidden?: boolean | undefined;
2633
- openapi?: string | string[] | undefined;
2634
2726
  }>, z.ZodObject<{
2635
2727
  href: z.ZodString;
2636
2728
  }, "strip", z.ZodTypeAny, {
@@ -2642,14 +2734,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2642
2734
  languages?: ({
2643
2735
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2644
2736
  hidden?: boolean | undefined;
2645
- openapi?: string | string[] | undefined;
2646
2737
  } & {
2647
2738
  href: string;
2648
2739
  })[] | undefined;
2649
2740
  versions?: ({
2650
2741
  version: string;
2651
2742
  hidden?: boolean | undefined;
2652
- openapi?: string | string[] | undefined;
2653
2743
  } & {
2654
2744
  href: string;
2655
2745
  })[] | undefined;
@@ -2660,7 +2750,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2660
2750
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2661
2751
  } | undefined;
2662
2752
  hidden?: boolean | undefined;
2663
- openapi?: string | string[] | undefined;
2664
2753
  } & {
2665
2754
  href: string;
2666
2755
  })[] | undefined;
@@ -2671,7 +2760,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2671
2760
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2672
2761
  } | undefined;
2673
2762
  hidden?: boolean | undefined;
2674
- openapi?: string | string[] | undefined;
2675
2763
  } & {
2676
2764
  href: string;
2677
2765
  })[] | undefined;
@@ -2686,7 +2774,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2686
2774
  dark?: string | undefined;
2687
2775
  } | undefined;
2688
2776
  hidden?: boolean | undefined;
2689
- openapi?: string | string[] | undefined;
2690
2777
  } & {
2691
2778
  href: string;
2692
2779
  })[] | undefined;
@@ -2694,14 +2781,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2694
2781
  languages?: ({
2695
2782
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2696
2783
  hidden?: boolean | undefined;
2697
- openapi?: string | string[] | undefined;
2698
2784
  } & {
2699
2785
  href: string;
2700
2786
  })[] | undefined;
2701
2787
  versions?: ({
2702
2788
  version: string;
2703
2789
  hidden?: boolean | undefined;
2704
- openapi?: string | string[] | undefined;
2705
2790
  } & {
2706
2791
  href: string;
2707
2792
  })[] | undefined;
@@ -2712,7 +2797,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2712
2797
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2713
2798
  } | undefined;
2714
2799
  hidden?: boolean | undefined;
2715
- openapi?: string | string[] | undefined;
2716
2800
  } & {
2717
2801
  href: string;
2718
2802
  })[] | undefined;
@@ -2723,7 +2807,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2723
2807
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2724
2808
  } | undefined;
2725
2809
  hidden?: boolean | undefined;
2726
- openapi?: string | string[] | undefined;
2727
2810
  } & {
2728
2811
  href: string;
2729
2812
  })[] | undefined;
@@ -2738,7 +2821,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2738
2821
  dark?: string | undefined;
2739
2822
  } | undefined;
2740
2823
  hidden?: boolean | undefined;
2741
- openapi?: string | string[] | undefined;
2742
2824
  } & {
2743
2825
  href: string;
2744
2826
  })[] | undefined;
@@ -2748,14 +2830,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2748
2830
  languages?: ({
2749
2831
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2750
2832
  hidden?: boolean | undefined;
2751
- openapi?: string | string[] | undefined;
2752
2833
  } & {
2753
2834
  href: string;
2754
2835
  })[] | undefined;
2755
2836
  versions?: ({
2756
2837
  version: string;
2757
2838
  hidden?: boolean | undefined;
2758
- openapi?: string | string[] | undefined;
2759
2839
  } & {
2760
2840
  href: string;
2761
2841
  })[] | undefined;
@@ -2766,7 +2846,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2766
2846
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2767
2847
  } | undefined;
2768
2848
  hidden?: boolean | undefined;
2769
- openapi?: string | string[] | undefined;
2770
2849
  } & {
2771
2850
  href: string;
2772
2851
  })[] | undefined;
@@ -2777,7 +2856,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2777
2856
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2778
2857
  } | undefined;
2779
2858
  hidden?: boolean | undefined;
2780
- openapi?: string | string[] | undefined;
2781
2859
  } & {
2782
2860
  href: string;
2783
2861
  })[] | undefined;
@@ -2792,7 +2870,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2792
2870
  dark?: string | undefined;
2793
2871
  } | undefined;
2794
2872
  hidden?: boolean | undefined;
2795
- openapi?: string | string[] | undefined;
2796
2873
  } & {
2797
2874
  href: string;
2798
2875
  })[] | undefined;
@@ -2802,14 +2879,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2802
2879
  languages?: ({
2803
2880
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2804
2881
  hidden?: boolean | undefined;
2805
- openapi?: string | string[] | undefined;
2806
2882
  } & {
2807
2883
  href: string;
2808
2884
  })[] | undefined;
2809
2885
  versions?: ({
2810
2886
  version: string;
2811
2887
  hidden?: boolean | undefined;
2812
- openapi?: string | string[] | undefined;
2813
2888
  } & {
2814
2889
  href: string;
2815
2890
  })[] | undefined;
@@ -2820,7 +2895,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2820
2895
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2821
2896
  } | undefined;
2822
2897
  hidden?: boolean | undefined;
2823
- openapi?: string | string[] | undefined;
2824
2898
  } & {
2825
2899
  href: string;
2826
2900
  })[] | undefined;
@@ -2831,7 +2905,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2831
2905
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2832
2906
  } | undefined;
2833
2907
  hidden?: boolean | undefined;
2834
- openapi?: string | string[] | undefined;
2835
2908
  } & {
2836
2909
  href: string;
2837
2910
  })[] | undefined;
@@ -2846,7 +2919,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2846
2919
  dark?: string | undefined;
2847
2920
  } | undefined;
2848
2921
  hidden?: boolean | undefined;
2849
- openapi?: string | string[] | undefined;
2850
2922
  } & {
2851
2923
  href: string;
2852
2924
  })[] | undefined;
@@ -2855,22 +2927,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2855
2927
  languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
2856
2928
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2857
2929
  hidden: z.ZodOptional<z.ZodBoolean>;
2858
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
2859
2930
  }, "strip", z.ZodTypeAny, {
2860
2931
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2861
2932
  hidden?: boolean | undefined;
2862
- openapi?: string | string[] | undefined;
2863
2933
  }, {
2864
2934
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2865
2935
  hidden?: boolean | undefined;
2866
- openapi?: string | string[] | undefined;
2867
2936
  }>, z.ZodUnion<[z.ZodObject<{
2868
2937
  href: z.ZodString;
2869
2938
  }, "strip", z.ZodTypeAny, {
2870
2939
  href: string;
2871
2940
  }, {
2872
2941
  href: string;
2873
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
2942
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2943
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
2944
+ hidden: z.ZodOptional<z.ZodBoolean>;
2945
+ }, "strip", z.ZodTypeAny, {
2946
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2947
+ hidden?: boolean | undefined;
2948
+ }, {
2949
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2950
+ hidden?: boolean | undefined;
2951
+ }>, z.ZodUnion<[z.ZodObject<{
2952
+ href: z.ZodString;
2953
+ }, "strip", z.ZodTypeAny, {
2954
+ href: string;
2955
+ }, {
2956
+ href: string;
2957
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
2958
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
2959
+ }, "strip", z.ZodTypeAny, {
2960
+ openapi?: string | string[] | undefined;
2961
+ }, {
2962
+ openapi?: string | string[] | undefined;
2963
+ }>>, "many">;
2874
2964
  }, "strip", z.ZodTypeAny, {
2875
2965
  languages: any[];
2876
2966
  }, {
@@ -2879,22 +2969,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2879
2969
  versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
2880
2970
  version: z.ZodString;
2881
2971
  hidden: z.ZodOptional<z.ZodBoolean>;
2882
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
2883
2972
  }, "strip", z.ZodTypeAny, {
2884
2973
  version: string;
2885
2974
  hidden?: boolean | undefined;
2886
- openapi?: string | string[] | undefined;
2887
2975
  }, {
2888
2976
  version: string;
2889
2977
  hidden?: boolean | undefined;
2890
- openapi?: string | string[] | undefined;
2891
2978
  }>, z.ZodUnion<[z.ZodObject<{
2892
2979
  href: z.ZodString;
2893
2980
  }, "strip", z.ZodTypeAny, {
2894
2981
  href: string;
2895
2982
  }, {
2896
2983
  href: string;
2897
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
2984
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
2985
+ version: z.ZodString;
2986
+ hidden: z.ZodOptional<z.ZodBoolean>;
2987
+ }, "strip", z.ZodTypeAny, {
2988
+ version: string;
2989
+ hidden?: boolean | undefined;
2990
+ }, {
2991
+ version: string;
2992
+ hidden?: boolean | undefined;
2993
+ }>, z.ZodUnion<[z.ZodObject<{
2994
+ href: z.ZodString;
2995
+ }, "strip", z.ZodTypeAny, {
2996
+ href: string;
2997
+ }, {
2998
+ href: string;
2999
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
3000
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
3001
+ }, "strip", z.ZodTypeAny, {
3002
+ openapi?: string | string[] | undefined;
3003
+ }, {
3004
+ openapi?: string | string[] | undefined;
3005
+ }>>, "many">;
2898
3006
  }, "strip", z.ZodTypeAny, {
2899
3007
  versions: any[];
2900
3008
  }, {
@@ -2913,7 +3021,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2913
3021
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2914
3022
  }>]>>;
2915
3023
  hidden: z.ZodOptional<z.ZodBoolean>;
2916
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
2917
3024
  }, "strip", z.ZodTypeAny, {
2918
3025
  tab: string;
2919
3026
  icon?: string | {
@@ -2921,7 +3028,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2921
3028
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2922
3029
  } | undefined;
2923
3030
  hidden?: boolean | undefined;
2924
- openapi?: string | string[] | undefined;
2925
3031
  }, {
2926
3032
  tab: string;
2927
3033
  icon?: string | {
@@ -2929,21 +3035,14 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2929
3035
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2930
3036
  } | undefined;
2931
3037
  hidden?: boolean | undefined;
2932
- openapi?: string | string[] | undefined;
2933
3038
  }>, z.ZodUnion<[z.ZodObject<{
2934
3039
  href: z.ZodString;
2935
3040
  }, "strip", z.ZodTypeAny, {
2936
3041
  href: string;
2937
3042
  }, {
2938
3043
  href: string;
2939
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
2940
- }, "strip", z.ZodTypeAny, {
2941
- tabs: any[];
2942
- }, {
2943
- tabs: any[];
2944
- }>, z.ZodObject<{
2945
- dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
2946
- dropdown: z.ZodString;
3044
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
3045
+ tab: z.ZodString;
2947
3046
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2948
3047
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2949
3048
  name: z.ZodEffects<z.ZodString, string, string>;
@@ -2955,38 +3054,170 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
2955
3054
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2956
3055
  }>]>>;
2957
3056
  hidden: z.ZodOptional<z.ZodBoolean>;
2958
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
2959
3057
  }, "strip", z.ZodTypeAny, {
2960
- dropdown: string;
3058
+ tab: string;
2961
3059
  icon?: string | {
2962
3060
  name: string;
2963
3061
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2964
3062
  } | undefined;
2965
3063
  hidden?: boolean | undefined;
2966
- openapi?: string | string[] | undefined;
2967
3064
  }, {
2968
- dropdown: string;
3065
+ tab: string;
2969
3066
  icon?: string | {
2970
3067
  name: string;
2971
3068
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2972
3069
  } | undefined;
2973
3070
  hidden?: boolean | undefined;
2974
- openapi?: string | string[] | undefined;
2975
3071
  }>, z.ZodUnion<[z.ZodObject<{
2976
3072
  href: z.ZodString;
2977
3073
  }, "strip", z.ZodTypeAny, {
2978
3074
  href: string;
2979
3075
  }, {
2980
3076
  href: string;
2981
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
3077
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
3078
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
3079
+ }, "strip", z.ZodTypeAny, {
3080
+ openapi?: string | string[] | undefined;
3081
+ }, {
3082
+ openapi?: string | string[] | undefined;
3083
+ }>>, "many">;
2982
3084
  }, "strip", z.ZodTypeAny, {
2983
- dropdowns: any[];
3085
+ tabs: any[];
2984
3086
  }, {
2985
- dropdowns: any[];
3087
+ tabs: any[];
2986
3088
  }>, z.ZodObject<{
2987
- anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
2988
- anchor: z.ZodString;
2989
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
3089
+ dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
3090
+ dropdown: z.ZodString;
3091
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
3092
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
3093
+ name: z.ZodEffects<z.ZodString, string, string>;
3094
+ }, "strip", z.ZodTypeAny, {
3095
+ name: string;
3096
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3097
+ }, {
3098
+ name: string;
3099
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3100
+ }>]>>;
3101
+ hidden: z.ZodOptional<z.ZodBoolean>;
3102
+ }, "strip", z.ZodTypeAny, {
3103
+ dropdown: string;
3104
+ icon?: string | {
3105
+ name: string;
3106
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3107
+ } | undefined;
3108
+ hidden?: boolean | undefined;
3109
+ }, {
3110
+ dropdown: string;
3111
+ icon?: string | {
3112
+ name: string;
3113
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3114
+ } | undefined;
3115
+ hidden?: boolean | undefined;
3116
+ }>, z.ZodUnion<[z.ZodObject<{
3117
+ href: z.ZodString;
3118
+ }, "strip", z.ZodTypeAny, {
3119
+ href: string;
3120
+ }, {
3121
+ href: string;
3122
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
3123
+ dropdown: z.ZodString;
3124
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
3125
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
3126
+ name: z.ZodEffects<z.ZodString, string, string>;
3127
+ }, "strip", z.ZodTypeAny, {
3128
+ name: string;
3129
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3130
+ }, {
3131
+ name: string;
3132
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3133
+ }>]>>;
3134
+ hidden: z.ZodOptional<z.ZodBoolean>;
3135
+ }, "strip", z.ZodTypeAny, {
3136
+ dropdown: string;
3137
+ icon?: string | {
3138
+ name: string;
3139
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3140
+ } | undefined;
3141
+ hidden?: boolean | undefined;
3142
+ }, {
3143
+ dropdown: string;
3144
+ icon?: string | {
3145
+ name: string;
3146
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3147
+ } | undefined;
3148
+ hidden?: boolean | undefined;
3149
+ }>, z.ZodUnion<[z.ZodObject<{
3150
+ href: z.ZodString;
3151
+ }, "strip", z.ZodTypeAny, {
3152
+ href: string;
3153
+ }, {
3154
+ href: string;
3155
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
3156
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
3157
+ }, "strip", z.ZodTypeAny, {
3158
+ openapi?: string | string[] | undefined;
3159
+ }, {
3160
+ openapi?: string | string[] | undefined;
3161
+ }>>, "many">;
3162
+ }, "strip", z.ZodTypeAny, {
3163
+ dropdowns: any[];
3164
+ }, {
3165
+ dropdowns: any[];
3166
+ }>, z.ZodObject<{
3167
+ anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
3168
+ anchor: z.ZodString;
3169
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
3170
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
3171
+ name: z.ZodEffects<z.ZodString, string, string>;
3172
+ }, "strip", z.ZodTypeAny, {
3173
+ name: string;
3174
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3175
+ }, {
3176
+ name: string;
3177
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3178
+ }>]>>;
3179
+ color: z.ZodOptional<z.ZodObject<{
3180
+ light: z.ZodOptional<z.ZodString>;
3181
+ dark: z.ZodOptional<z.ZodString>;
3182
+ }, "strict", z.ZodTypeAny, {
3183
+ light?: string | undefined;
3184
+ dark?: string | undefined;
3185
+ }, {
3186
+ light?: string | undefined;
3187
+ dark?: string | undefined;
3188
+ }>>;
3189
+ hidden: z.ZodOptional<z.ZodBoolean>;
3190
+ }, "strip", z.ZodTypeAny, {
3191
+ anchor: string;
3192
+ icon?: string | {
3193
+ name: string;
3194
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3195
+ } | undefined;
3196
+ color?: {
3197
+ light?: string | undefined;
3198
+ dark?: string | undefined;
3199
+ } | undefined;
3200
+ hidden?: boolean | undefined;
3201
+ }, {
3202
+ anchor: string;
3203
+ icon?: string | {
3204
+ name: string;
3205
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3206
+ } | undefined;
3207
+ color?: {
3208
+ light?: string | undefined;
3209
+ dark?: string | undefined;
3210
+ } | undefined;
3211
+ hidden?: boolean | undefined;
3212
+ }>, z.ZodUnion<[z.ZodObject<{
3213
+ href: z.ZodString;
3214
+ }, "strip", z.ZodTypeAny, {
3215
+ href: string;
3216
+ }, {
3217
+ href: string;
3218
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
3219
+ anchor: z.ZodString;
3220
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
2990
3221
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
2991
3222
  name: z.ZodEffects<z.ZodString, string, string>;
2992
3223
  }, "strip", z.ZodTypeAny, {
@@ -3007,7 +3238,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3007
3238
  dark?: string | undefined;
3008
3239
  }>>;
3009
3240
  hidden: z.ZodOptional<z.ZodBoolean>;
3010
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
3011
3241
  }, "strip", z.ZodTypeAny, {
3012
3242
  anchor: string;
3013
3243
  icon?: string | {
@@ -3019,7 +3249,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3019
3249
  dark?: string | undefined;
3020
3250
  } | undefined;
3021
3251
  hidden?: boolean | undefined;
3022
- openapi?: string | string[] | undefined;
3023
3252
  }, {
3024
3253
  anchor: string;
3025
3254
  icon?: string | {
@@ -3031,14 +3260,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3031
3260
  dark?: string | undefined;
3032
3261
  } | undefined;
3033
3262
  hidden?: boolean | undefined;
3034
- openapi?: string | string[] | undefined;
3035
3263
  }>, z.ZodUnion<[z.ZodObject<{
3036
3264
  href: z.ZodString;
3037
3265
  }, "strip", z.ZodTypeAny, {
3038
3266
  href: string;
3039
3267
  }, {
3040
3268
  href: string;
3041
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
3269
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
3270
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
3271
+ }, "strip", z.ZodTypeAny, {
3272
+ openapi?: string | string[] | undefined;
3273
+ }, {
3274
+ openapi?: string | string[] | undefined;
3275
+ }>>, "many">;
3042
3276
  }, "strip", z.ZodTypeAny, {
3043
3277
  anchors: any[];
3044
3278
  }, {
@@ -3774,14 +4008,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3774
4008
  languages?: ({
3775
4009
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3776
4010
  hidden?: boolean | undefined;
3777
- openapi?: string | string[] | undefined;
3778
4011
  } & {
3779
4012
  href: string;
3780
4013
  })[] | undefined;
3781
4014
  versions?: ({
3782
4015
  version: string;
3783
4016
  hidden?: boolean | undefined;
3784
- openapi?: string | string[] | undefined;
3785
4017
  } & {
3786
4018
  href: string;
3787
4019
  })[] | undefined;
@@ -3792,7 +4024,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3792
4024
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3793
4025
  } | undefined;
3794
4026
  hidden?: boolean | undefined;
3795
- openapi?: string | string[] | undefined;
3796
4027
  } & {
3797
4028
  href: string;
3798
4029
  })[] | undefined;
@@ -3803,7 +4034,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3803
4034
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3804
4035
  } | undefined;
3805
4036
  hidden?: boolean | undefined;
3806
- openapi?: string | string[] | undefined;
3807
4037
  } & {
3808
4038
  href: string;
3809
4039
  })[] | undefined;
@@ -3818,7 +4048,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3818
4048
  dark?: string | undefined;
3819
4049
  } | undefined;
3820
4050
  hidden?: boolean | undefined;
3821
- openapi?: string | string[] | undefined;
3822
4051
  } & {
3823
4052
  href: string;
3824
4053
  })[] | undefined;
@@ -3880,14 +4109,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3880
4109
  languages?: ({
3881
4110
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
3882
4111
  hidden?: boolean | undefined;
3883
- openapi?: string | string[] | undefined;
3884
4112
  } & {
3885
4113
  href: string;
3886
4114
  })[] | undefined;
3887
4115
  versions?: ({
3888
4116
  version: string;
3889
4117
  hidden?: boolean | undefined;
3890
- openapi?: string | string[] | undefined;
3891
4118
  } & {
3892
4119
  href: string;
3893
4120
  })[] | undefined;
@@ -3898,7 +4125,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3898
4125
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3899
4126
  } | undefined;
3900
4127
  hidden?: boolean | undefined;
3901
- openapi?: string | string[] | undefined;
3902
4128
  } & {
3903
4129
  href: string;
3904
4130
  })[] | undefined;
@@ -3909,7 +4135,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3909
4135
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
3910
4136
  } | undefined;
3911
4137
  hidden?: boolean | undefined;
3912
- openapi?: string | string[] | undefined;
3913
4138
  } & {
3914
4139
  href: string;
3915
4140
  })[] | undefined;
@@ -3924,7 +4149,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
3924
4149
  dark?: string | undefined;
3925
4150
  } | undefined;
3926
4151
  hidden?: boolean | undefined;
3927
- openapi?: string | string[] | undefined;
3928
4152
  } & {
3929
4153
  href: string;
3930
4154
  })[] | undefined;
@@ -4153,14 +4377,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4153
4377
  languages?: ({
4154
4378
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4155
4379
  hidden?: boolean | undefined;
4156
- openapi?: string | string[] | undefined;
4157
4380
  } & {
4158
4381
  href: string;
4159
4382
  })[] | undefined;
4160
4383
  versions?: ({
4161
4384
  version: string;
4162
4385
  hidden?: boolean | undefined;
4163
- openapi?: string | string[] | undefined;
4164
4386
  } & {
4165
4387
  href: string;
4166
4388
  })[] | undefined;
@@ -4171,7 +4393,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4171
4393
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4172
4394
  } | undefined;
4173
4395
  hidden?: boolean | undefined;
4174
- openapi?: string | string[] | undefined;
4175
4396
  } & {
4176
4397
  href: string;
4177
4398
  })[] | undefined;
@@ -4182,7 +4403,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4182
4403
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4183
4404
  } | undefined;
4184
4405
  hidden?: boolean | undefined;
4185
- openapi?: string | string[] | undefined;
4186
4406
  } & {
4187
4407
  href: string;
4188
4408
  })[] | undefined;
@@ -4197,7 +4417,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4197
4417
  dark?: string | undefined;
4198
4418
  } | undefined;
4199
4419
  hidden?: boolean | undefined;
4200
- openapi?: string | string[] | undefined;
4201
4420
  } & {
4202
4421
  href: string;
4203
4422
  })[] | undefined;
@@ -4259,14 +4478,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4259
4478
  languages?: ({
4260
4479
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4261
4480
  hidden?: boolean | undefined;
4262
- openapi?: string | string[] | undefined;
4263
4481
  } & {
4264
4482
  href: string;
4265
4483
  })[] | undefined;
4266
4484
  versions?: ({
4267
4485
  version: string;
4268
4486
  hidden?: boolean | undefined;
4269
- openapi?: string | string[] | undefined;
4270
4487
  } & {
4271
4488
  href: string;
4272
4489
  })[] | undefined;
@@ -4277,7 +4494,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4277
4494
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4278
4495
  } | undefined;
4279
4496
  hidden?: boolean | undefined;
4280
- openapi?: string | string[] | undefined;
4281
4497
  } & {
4282
4498
  href: string;
4283
4499
  })[] | undefined;
@@ -4288,7 +4504,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4288
4504
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4289
4505
  } | undefined;
4290
4506
  hidden?: boolean | undefined;
4291
- openapi?: string | string[] | undefined;
4292
4507
  } & {
4293
4508
  href: string;
4294
4509
  })[] | undefined;
@@ -4303,7 +4518,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4303
4518
  dark?: string | undefined;
4304
4519
  } | undefined;
4305
4520
  hidden?: boolean | undefined;
4306
- openapi?: string | string[] | undefined;
4307
4521
  } & {
4308
4522
  href: string;
4309
4523
  })[] | undefined;
@@ -4734,15 +4948,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4734
4948
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4735
4949
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
4736
4950
  hidden: z.ZodOptional<z.ZodBoolean>;
4737
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
4738
4951
  }, "strip", z.ZodTypeAny, {
4739
4952
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4740
4953
  hidden?: boolean | undefined;
4741
- openapi?: string | string[] | undefined;
4742
4954
  }, {
4743
4955
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4744
4956
  hidden?: boolean | undefined;
4745
- openapi?: string | string[] | undefined;
4746
4957
  }>, z.ZodObject<{
4747
4958
  href: z.ZodString;
4748
4959
  }, "strip", z.ZodTypeAny, {
@@ -4753,15 +4964,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4753
4964
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
4754
4965
  version: z.ZodString;
4755
4966
  hidden: z.ZodOptional<z.ZodBoolean>;
4756
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
4757
4967
  }, "strip", z.ZodTypeAny, {
4758
4968
  version: string;
4759
4969
  hidden?: boolean | undefined;
4760
- openapi?: string | string[] | undefined;
4761
4970
  }, {
4762
4971
  version: string;
4763
4972
  hidden?: boolean | undefined;
4764
- openapi?: string | string[] | undefined;
4765
4973
  }>, z.ZodObject<{
4766
4974
  href: z.ZodString;
4767
4975
  }, "strip", z.ZodTypeAny, {
@@ -4782,7 +4990,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4782
4990
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4783
4991
  }>]>>;
4784
4992
  hidden: z.ZodOptional<z.ZodBoolean>;
4785
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
4786
4993
  }, "strip", z.ZodTypeAny, {
4787
4994
  tab: string;
4788
4995
  icon?: string | {
@@ -4790,7 +4997,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4790
4997
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4791
4998
  } | undefined;
4792
4999
  hidden?: boolean | undefined;
4793
- openapi?: string | string[] | undefined;
4794
5000
  }, {
4795
5001
  tab: string;
4796
5002
  icon?: string | {
@@ -4798,7 +5004,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4798
5004
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4799
5005
  } | undefined;
4800
5006
  hidden?: boolean | undefined;
4801
- openapi?: string | string[] | undefined;
4802
5007
  }>, z.ZodObject<{
4803
5008
  href: z.ZodString;
4804
5009
  }, "strip", z.ZodTypeAny, {
@@ -4819,7 +5024,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4819
5024
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4820
5025
  }>]>>;
4821
5026
  hidden: z.ZodOptional<z.ZodBoolean>;
4822
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
4823
5027
  }, "strip", z.ZodTypeAny, {
4824
5028
  dropdown: string;
4825
5029
  icon?: string | {
@@ -4827,7 +5031,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4827
5031
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4828
5032
  } | undefined;
4829
5033
  hidden?: boolean | undefined;
4830
- openapi?: string | string[] | undefined;
4831
5034
  }, {
4832
5035
  dropdown: string;
4833
5036
  icon?: string | {
@@ -4835,7 +5038,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4835
5038
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4836
5039
  } | undefined;
4837
5040
  hidden?: boolean | undefined;
4838
- openapi?: string | string[] | undefined;
4839
5041
  }>, z.ZodObject<{
4840
5042
  href: z.ZodString;
4841
5043
  }, "strip", z.ZodTypeAny, {
@@ -4866,7 +5068,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4866
5068
  dark?: string | undefined;
4867
5069
  }>>;
4868
5070
  hidden: z.ZodOptional<z.ZodBoolean>;
4869
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
4870
5071
  }, "strip", z.ZodTypeAny, {
4871
5072
  anchor: string;
4872
5073
  icon?: string | {
@@ -4878,7 +5079,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4878
5079
  dark?: string | undefined;
4879
5080
  } | undefined;
4880
5081
  hidden?: boolean | undefined;
4881
- openapi?: string | string[] | undefined;
4882
5082
  }, {
4883
5083
  anchor: string;
4884
5084
  icon?: string | {
@@ -4890,7 +5090,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4890
5090
  dark?: string | undefined;
4891
5091
  } | undefined;
4892
5092
  hidden?: boolean | undefined;
4893
- openapi?: string | string[] | undefined;
4894
5093
  }>, z.ZodObject<{
4895
5094
  href: z.ZodString;
4896
5095
  }, "strip", z.ZodTypeAny, {
@@ -4902,14 +5101,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4902
5101
  languages?: ({
4903
5102
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4904
5103
  hidden?: boolean | undefined;
4905
- openapi?: string | string[] | undefined;
4906
5104
  } & {
4907
5105
  href: string;
4908
5106
  })[] | undefined;
4909
5107
  versions?: ({
4910
5108
  version: string;
4911
5109
  hidden?: boolean | undefined;
4912
- openapi?: string | string[] | undefined;
4913
5110
  } & {
4914
5111
  href: string;
4915
5112
  })[] | undefined;
@@ -4920,7 +5117,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4920
5117
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4921
5118
  } | undefined;
4922
5119
  hidden?: boolean | undefined;
4923
- openapi?: string | string[] | undefined;
4924
5120
  } & {
4925
5121
  href: string;
4926
5122
  })[] | undefined;
@@ -4931,7 +5127,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4931
5127
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4932
5128
  } | undefined;
4933
5129
  hidden?: boolean | undefined;
4934
- openapi?: string | string[] | undefined;
4935
5130
  } & {
4936
5131
  href: string;
4937
5132
  })[] | undefined;
@@ -4946,7 +5141,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4946
5141
  dark?: string | undefined;
4947
5142
  } | undefined;
4948
5143
  hidden?: boolean | undefined;
4949
- openapi?: string | string[] | undefined;
4950
5144
  } & {
4951
5145
  href: string;
4952
5146
  })[] | undefined;
@@ -4954,14 +5148,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4954
5148
  languages?: ({
4955
5149
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
4956
5150
  hidden?: boolean | undefined;
4957
- openapi?: string | string[] | undefined;
4958
5151
  } & {
4959
5152
  href: string;
4960
5153
  })[] | undefined;
4961
5154
  versions?: ({
4962
5155
  version: string;
4963
5156
  hidden?: boolean | undefined;
4964
- openapi?: string | string[] | undefined;
4965
5157
  } & {
4966
5158
  href: string;
4967
5159
  })[] | undefined;
@@ -4972,7 +5164,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4972
5164
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4973
5165
  } | undefined;
4974
5166
  hidden?: boolean | undefined;
4975
- openapi?: string | string[] | undefined;
4976
5167
  } & {
4977
5168
  href: string;
4978
5169
  })[] | undefined;
@@ -4983,7 +5174,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4983
5174
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
4984
5175
  } | undefined;
4985
5176
  hidden?: boolean | undefined;
4986
- openapi?: string | string[] | undefined;
4987
5177
  } & {
4988
5178
  href: string;
4989
5179
  })[] | undefined;
@@ -4998,7 +5188,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
4998
5188
  dark?: string | undefined;
4999
5189
  } | undefined;
5000
5190
  hidden?: boolean | undefined;
5001
- openapi?: string | string[] | undefined;
5002
5191
  } & {
5003
5192
  href: string;
5004
5193
  })[] | undefined;
@@ -5008,14 +5197,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5008
5197
  languages?: ({
5009
5198
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5010
5199
  hidden?: boolean | undefined;
5011
- openapi?: string | string[] | undefined;
5012
5200
  } & {
5013
5201
  href: string;
5014
5202
  })[] | undefined;
5015
5203
  versions?: ({
5016
5204
  version: string;
5017
5205
  hidden?: boolean | undefined;
5018
- openapi?: string | string[] | undefined;
5019
5206
  } & {
5020
5207
  href: string;
5021
5208
  })[] | undefined;
@@ -5026,7 +5213,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5026
5213
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5027
5214
  } | undefined;
5028
5215
  hidden?: boolean | undefined;
5029
- openapi?: string | string[] | undefined;
5030
5216
  } & {
5031
5217
  href: string;
5032
5218
  })[] | undefined;
@@ -5037,7 +5223,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5037
5223
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5038
5224
  } | undefined;
5039
5225
  hidden?: boolean | undefined;
5040
- openapi?: string | string[] | undefined;
5041
5226
  } & {
5042
5227
  href: string;
5043
5228
  })[] | undefined;
@@ -5052,7 +5237,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5052
5237
  dark?: string | undefined;
5053
5238
  } | undefined;
5054
5239
  hidden?: boolean | undefined;
5055
- openapi?: string | string[] | undefined;
5056
5240
  } & {
5057
5241
  href: string;
5058
5242
  })[] | undefined;
@@ -5062,14 +5246,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5062
5246
  languages?: ({
5063
5247
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5064
5248
  hidden?: boolean | undefined;
5065
- openapi?: string | string[] | undefined;
5066
5249
  } & {
5067
5250
  href: string;
5068
5251
  })[] | undefined;
5069
5252
  versions?: ({
5070
5253
  version: string;
5071
5254
  hidden?: boolean | undefined;
5072
- openapi?: string | string[] | undefined;
5073
5255
  } & {
5074
5256
  href: string;
5075
5257
  })[] | undefined;
@@ -5080,7 +5262,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5080
5262
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5081
5263
  } | undefined;
5082
5264
  hidden?: boolean | undefined;
5083
- openapi?: string | string[] | undefined;
5084
5265
  } & {
5085
5266
  href: string;
5086
5267
  })[] | undefined;
@@ -5091,7 +5272,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5091
5272
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5092
5273
  } | undefined;
5093
5274
  hidden?: boolean | undefined;
5094
- openapi?: string | string[] | undefined;
5095
5275
  } & {
5096
5276
  href: string;
5097
5277
  })[] | undefined;
@@ -5106,7 +5286,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5106
5286
  dark?: string | undefined;
5107
5287
  } | undefined;
5108
5288
  hidden?: boolean | undefined;
5109
- openapi?: string | string[] | undefined;
5110
5289
  } & {
5111
5290
  href: string;
5112
5291
  })[] | undefined;
@@ -5115,22 +5294,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5115
5294
  languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
5116
5295
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
5117
5296
  hidden: z.ZodOptional<z.ZodBoolean>;
5118
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
5119
5297
  }, "strip", z.ZodTypeAny, {
5120
5298
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5121
5299
  hidden?: boolean | undefined;
5122
- openapi?: string | string[] | undefined;
5123
5300
  }, {
5124
5301
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5125
5302
  hidden?: boolean | undefined;
5126
- openapi?: string | string[] | undefined;
5127
5303
  }>, z.ZodUnion<[z.ZodObject<{
5128
5304
  href: z.ZodString;
5129
5305
  }, "strip", z.ZodTypeAny, {
5130
5306
  href: string;
5131
5307
  }, {
5132
5308
  href: string;
5133
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
5309
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
5310
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
5311
+ hidden: z.ZodOptional<z.ZodBoolean>;
5312
+ }, "strip", z.ZodTypeAny, {
5313
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5314
+ hidden?: boolean | undefined;
5315
+ }, {
5316
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
5317
+ hidden?: boolean | undefined;
5318
+ }>, z.ZodUnion<[z.ZodObject<{
5319
+ href: z.ZodString;
5320
+ }, "strip", z.ZodTypeAny, {
5321
+ href: string;
5322
+ }, {
5323
+ href: string;
5324
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
5325
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
5326
+ }, "strip", z.ZodTypeAny, {
5327
+ openapi?: string | string[] | undefined;
5328
+ }, {
5329
+ openapi?: string | string[] | undefined;
5330
+ }>>, "many">;
5134
5331
  }, "strip", z.ZodTypeAny, {
5135
5332
  languages: any[];
5136
5333
  }, {
@@ -5139,22 +5336,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5139
5336
  versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
5140
5337
  version: z.ZodString;
5141
5338
  hidden: z.ZodOptional<z.ZodBoolean>;
5142
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
5143
5339
  }, "strip", z.ZodTypeAny, {
5144
5340
  version: string;
5145
5341
  hidden?: boolean | undefined;
5146
- openapi?: string | string[] | undefined;
5147
5342
  }, {
5148
5343
  version: string;
5149
5344
  hidden?: boolean | undefined;
5150
- openapi?: string | string[] | undefined;
5151
5345
  }>, z.ZodUnion<[z.ZodObject<{
5152
5346
  href: z.ZodString;
5153
5347
  }, "strip", z.ZodTypeAny, {
5154
5348
  href: string;
5155
5349
  }, {
5156
5350
  href: string;
5157
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
5351
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
5352
+ version: z.ZodString;
5353
+ hidden: z.ZodOptional<z.ZodBoolean>;
5354
+ }, "strip", z.ZodTypeAny, {
5355
+ version: string;
5356
+ hidden?: boolean | undefined;
5357
+ }, {
5358
+ version: string;
5359
+ hidden?: boolean | undefined;
5360
+ }>, z.ZodUnion<[z.ZodObject<{
5361
+ href: z.ZodString;
5362
+ }, "strip", z.ZodTypeAny, {
5363
+ href: string;
5364
+ }, {
5365
+ href: string;
5366
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
5367
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
5368
+ }, "strip", z.ZodTypeAny, {
5369
+ openapi?: string | string[] | undefined;
5370
+ }, {
5371
+ openapi?: string | string[] | undefined;
5372
+ }>>, "many">;
5158
5373
  }, "strip", z.ZodTypeAny, {
5159
5374
  versions: any[];
5160
5375
  }, {
@@ -5173,7 +5388,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5173
5388
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5174
5389
  }>]>>;
5175
5390
  hidden: z.ZodOptional<z.ZodBoolean>;
5176
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
5177
5391
  }, "strip", z.ZodTypeAny, {
5178
5392
  tab: string;
5179
5393
  icon?: string | {
@@ -5181,7 +5395,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5181
5395
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5182
5396
  } | undefined;
5183
5397
  hidden?: boolean | undefined;
5184
- openapi?: string | string[] | undefined;
5185
5398
  }, {
5186
5399
  tab: string;
5187
5400
  icon?: string | {
@@ -5189,14 +5402,52 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5189
5402
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5190
5403
  } | undefined;
5191
5404
  hidden?: boolean | undefined;
5192
- openapi?: string | string[] | undefined;
5193
5405
  }>, z.ZodUnion<[z.ZodObject<{
5194
5406
  href: z.ZodString;
5195
5407
  }, "strip", z.ZodTypeAny, {
5196
5408
  href: string;
5197
5409
  }, {
5198
5410
  href: string;
5199
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
5411
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
5412
+ tab: z.ZodString;
5413
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
5414
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
5415
+ name: z.ZodEffects<z.ZodString, string, string>;
5416
+ }, "strip", z.ZodTypeAny, {
5417
+ name: string;
5418
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5419
+ }, {
5420
+ name: string;
5421
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5422
+ }>]>>;
5423
+ hidden: z.ZodOptional<z.ZodBoolean>;
5424
+ }, "strip", z.ZodTypeAny, {
5425
+ tab: string;
5426
+ icon?: string | {
5427
+ name: string;
5428
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5429
+ } | undefined;
5430
+ hidden?: boolean | undefined;
5431
+ }, {
5432
+ tab: string;
5433
+ icon?: string | {
5434
+ name: string;
5435
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5436
+ } | undefined;
5437
+ hidden?: boolean | undefined;
5438
+ }>, z.ZodUnion<[z.ZodObject<{
5439
+ href: z.ZodString;
5440
+ }, "strip", z.ZodTypeAny, {
5441
+ href: string;
5442
+ }, {
5443
+ href: string;
5444
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
5445
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
5446
+ }, "strip", z.ZodTypeAny, {
5447
+ openapi?: string | string[] | undefined;
5448
+ }, {
5449
+ openapi?: string | string[] | undefined;
5450
+ }>>, "many">;
5200
5451
  }, "strip", z.ZodTypeAny, {
5201
5452
  tabs: any[];
5202
5453
  }, {
@@ -5215,7 +5466,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5215
5466
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5216
5467
  }>]>>;
5217
5468
  hidden: z.ZodOptional<z.ZodBoolean>;
5218
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
5219
5469
  }, "strip", z.ZodTypeAny, {
5220
5470
  dropdown: string;
5221
5471
  icon?: string | {
@@ -5223,7 +5473,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5223
5473
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5224
5474
  } | undefined;
5225
5475
  hidden?: boolean | undefined;
5226
- openapi?: string | string[] | undefined;
5227
5476
  }, {
5228
5477
  dropdown: string;
5229
5478
  icon?: string | {
@@ -5231,14 +5480,52 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5231
5480
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5232
5481
  } | undefined;
5233
5482
  hidden?: boolean | undefined;
5234
- openapi?: string | string[] | undefined;
5235
5483
  }>, z.ZodUnion<[z.ZodObject<{
5236
5484
  href: z.ZodString;
5237
5485
  }, "strip", z.ZodTypeAny, {
5238
5486
  href: string;
5239
5487
  }, {
5240
5488
  href: string;
5241
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
5489
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
5490
+ dropdown: z.ZodString;
5491
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
5492
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
5493
+ name: z.ZodEffects<z.ZodString, string, string>;
5494
+ }, "strip", z.ZodTypeAny, {
5495
+ name: string;
5496
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5497
+ }, {
5498
+ name: string;
5499
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5500
+ }>]>>;
5501
+ hidden: z.ZodOptional<z.ZodBoolean>;
5502
+ }, "strip", z.ZodTypeAny, {
5503
+ dropdown: string;
5504
+ icon?: string | {
5505
+ name: string;
5506
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5507
+ } | undefined;
5508
+ hidden?: boolean | undefined;
5509
+ }, {
5510
+ dropdown: string;
5511
+ icon?: string | {
5512
+ name: string;
5513
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5514
+ } | undefined;
5515
+ hidden?: boolean | undefined;
5516
+ }>, z.ZodUnion<[z.ZodObject<{
5517
+ href: z.ZodString;
5518
+ }, "strip", z.ZodTypeAny, {
5519
+ href: string;
5520
+ }, {
5521
+ href: string;
5522
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
5523
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
5524
+ }, "strip", z.ZodTypeAny, {
5525
+ openapi?: string | string[] | undefined;
5526
+ }, {
5527
+ openapi?: string | string[] | undefined;
5528
+ }>>, "many">;
5242
5529
  }, "strip", z.ZodTypeAny, {
5243
5530
  dropdowns: any[];
5244
5531
  }, {
@@ -5267,7 +5554,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5267
5554
  dark?: string | undefined;
5268
5555
  }>>;
5269
5556
  hidden: z.ZodOptional<z.ZodBoolean>;
5270
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
5271
5557
  }, "strip", z.ZodTypeAny, {
5272
5558
  anchor: string;
5273
5559
  icon?: string | {
@@ -5279,7 +5565,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5279
5565
  dark?: string | undefined;
5280
5566
  } | undefined;
5281
5567
  hidden?: boolean | undefined;
5282
- openapi?: string | string[] | undefined;
5283
5568
  }, {
5284
5569
  anchor: string;
5285
5570
  icon?: string | {
@@ -5291,14 +5576,70 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
5291
5576
  dark?: string | undefined;
5292
5577
  } | undefined;
5293
5578
  hidden?: boolean | undefined;
5294
- openapi?: string | string[] | undefined;
5295
5579
  }>, z.ZodUnion<[z.ZodObject<{
5296
5580
  href: z.ZodString;
5297
5581
  }, "strip", z.ZodTypeAny, {
5298
5582
  href: string;
5299
5583
  }, {
5300
5584
  href: string;
5301
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
5585
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
5586
+ anchor: z.ZodString;
5587
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
5588
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
5589
+ name: z.ZodEffects<z.ZodString, string, string>;
5590
+ }, "strip", z.ZodTypeAny, {
5591
+ name: string;
5592
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5593
+ }, {
5594
+ name: string;
5595
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5596
+ }>]>>;
5597
+ color: z.ZodOptional<z.ZodObject<{
5598
+ light: z.ZodOptional<z.ZodString>;
5599
+ dark: z.ZodOptional<z.ZodString>;
5600
+ }, "strict", z.ZodTypeAny, {
5601
+ light?: string | undefined;
5602
+ dark?: string | undefined;
5603
+ }, {
5604
+ light?: string | undefined;
5605
+ dark?: string | undefined;
5606
+ }>>;
5607
+ hidden: z.ZodOptional<z.ZodBoolean>;
5608
+ }, "strip", z.ZodTypeAny, {
5609
+ anchor: string;
5610
+ icon?: string | {
5611
+ name: string;
5612
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5613
+ } | undefined;
5614
+ color?: {
5615
+ light?: string | undefined;
5616
+ dark?: string | undefined;
5617
+ } | undefined;
5618
+ hidden?: boolean | undefined;
5619
+ }, {
5620
+ anchor: string;
5621
+ icon?: string | {
5622
+ name: string;
5623
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
5624
+ } | undefined;
5625
+ color?: {
5626
+ light?: string | undefined;
5627
+ dark?: string | undefined;
5628
+ } | undefined;
5629
+ hidden?: boolean | undefined;
5630
+ }>, z.ZodUnion<[z.ZodObject<{
5631
+ href: z.ZodString;
5632
+ }, "strip", z.ZodTypeAny, {
5633
+ href: string;
5634
+ }, {
5635
+ href: string;
5636
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
5637
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
5638
+ }, "strip", z.ZodTypeAny, {
5639
+ openapi?: string | string[] | undefined;
5640
+ }, {
5641
+ openapi?: string | string[] | undefined;
5642
+ }>>, "many">;
5302
5643
  }, "strip", z.ZodTypeAny, {
5303
5644
  anchors: any[];
5304
5645
  }, {
@@ -6034,14 +6375,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6034
6375
  languages?: ({
6035
6376
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6036
6377
  hidden?: boolean | undefined;
6037
- openapi?: string | string[] | undefined;
6038
6378
  } & {
6039
6379
  href: string;
6040
6380
  })[] | undefined;
6041
6381
  versions?: ({
6042
6382
  version: string;
6043
6383
  hidden?: boolean | undefined;
6044
- openapi?: string | string[] | undefined;
6045
6384
  } & {
6046
6385
  href: string;
6047
6386
  })[] | undefined;
@@ -6052,7 +6391,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6052
6391
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6053
6392
  } | undefined;
6054
6393
  hidden?: boolean | undefined;
6055
- openapi?: string | string[] | undefined;
6056
6394
  } & {
6057
6395
  href: string;
6058
6396
  })[] | undefined;
@@ -6063,7 +6401,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6063
6401
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6064
6402
  } | undefined;
6065
6403
  hidden?: boolean | undefined;
6066
- openapi?: string | string[] | undefined;
6067
6404
  } & {
6068
6405
  href: string;
6069
6406
  })[] | undefined;
@@ -6078,7 +6415,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6078
6415
  dark?: string | undefined;
6079
6416
  } | undefined;
6080
6417
  hidden?: boolean | undefined;
6081
- openapi?: string | string[] | undefined;
6082
6418
  } & {
6083
6419
  href: string;
6084
6420
  })[] | undefined;
@@ -6140,14 +6476,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6140
6476
  languages?: ({
6141
6477
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6142
6478
  hidden?: boolean | undefined;
6143
- openapi?: string | string[] | undefined;
6144
6479
  } & {
6145
6480
  href: string;
6146
6481
  })[] | undefined;
6147
6482
  versions?: ({
6148
6483
  version: string;
6149
6484
  hidden?: boolean | undefined;
6150
- openapi?: string | string[] | undefined;
6151
6485
  } & {
6152
6486
  href: string;
6153
6487
  })[] | undefined;
@@ -6158,7 +6492,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6158
6492
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6159
6493
  } | undefined;
6160
6494
  hidden?: boolean | undefined;
6161
- openapi?: string | string[] | undefined;
6162
6495
  } & {
6163
6496
  href: string;
6164
6497
  })[] | undefined;
@@ -6169,7 +6502,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6169
6502
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6170
6503
  } | undefined;
6171
6504
  hidden?: boolean | undefined;
6172
- openapi?: string | string[] | undefined;
6173
6505
  } & {
6174
6506
  href: string;
6175
6507
  })[] | undefined;
@@ -6184,7 +6516,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6184
6516
  dark?: string | undefined;
6185
6517
  } | undefined;
6186
6518
  hidden?: boolean | undefined;
6187
- openapi?: string | string[] | undefined;
6188
6519
  } & {
6189
6520
  href: string;
6190
6521
  })[] | undefined;
@@ -6413,14 +6744,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6413
6744
  languages?: ({
6414
6745
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6415
6746
  hidden?: boolean | undefined;
6416
- openapi?: string | string[] | undefined;
6417
6747
  } & {
6418
6748
  href: string;
6419
6749
  })[] | undefined;
6420
6750
  versions?: ({
6421
6751
  version: string;
6422
6752
  hidden?: boolean | undefined;
6423
- openapi?: string | string[] | undefined;
6424
6753
  } & {
6425
6754
  href: string;
6426
6755
  })[] | undefined;
@@ -6431,7 +6760,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6431
6760
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6432
6761
  } | undefined;
6433
6762
  hidden?: boolean | undefined;
6434
- openapi?: string | string[] | undefined;
6435
6763
  } & {
6436
6764
  href: string;
6437
6765
  })[] | undefined;
@@ -6442,7 +6770,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6442
6770
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6443
6771
  } | undefined;
6444
6772
  hidden?: boolean | undefined;
6445
- openapi?: string | string[] | undefined;
6446
6773
  } & {
6447
6774
  href: string;
6448
6775
  })[] | undefined;
@@ -6457,7 +6784,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6457
6784
  dark?: string | undefined;
6458
6785
  } | undefined;
6459
6786
  hidden?: boolean | undefined;
6460
- openapi?: string | string[] | undefined;
6461
6787
  } & {
6462
6788
  href: string;
6463
6789
  })[] | undefined;
@@ -6519,14 +6845,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6519
6845
  languages?: ({
6520
6846
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
6521
6847
  hidden?: boolean | undefined;
6522
- openapi?: string | string[] | undefined;
6523
6848
  } & {
6524
6849
  href: string;
6525
6850
  })[] | undefined;
6526
6851
  versions?: ({
6527
6852
  version: string;
6528
6853
  hidden?: boolean | undefined;
6529
- openapi?: string | string[] | undefined;
6530
6854
  } & {
6531
6855
  href: string;
6532
6856
  })[] | undefined;
@@ -6537,7 +6861,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6537
6861
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6538
6862
  } | undefined;
6539
6863
  hidden?: boolean | undefined;
6540
- openapi?: string | string[] | undefined;
6541
6864
  } & {
6542
6865
  href: string;
6543
6866
  })[] | undefined;
@@ -6548,7 +6871,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6548
6871
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
6549
6872
  } | undefined;
6550
6873
  hidden?: boolean | undefined;
6551
- openapi?: string | string[] | undefined;
6552
6874
  } & {
6553
6875
  href: string;
6554
6876
  })[] | undefined;
@@ -6563,7 +6885,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6563
6885
  dark?: string | undefined;
6564
6886
  } | undefined;
6565
6887
  hidden?: boolean | undefined;
6566
- openapi?: string | string[] | undefined;
6567
6888
  } & {
6568
6889
  href: string;
6569
6890
  })[] | undefined;
@@ -6994,15 +7315,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
6994
7315
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
6995
7316
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
6996
7317
  hidden: z.ZodOptional<z.ZodBoolean>;
6997
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
6998
7318
  }, "strip", z.ZodTypeAny, {
6999
7319
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7000
7320
  hidden?: boolean | undefined;
7001
- openapi?: string | string[] | undefined;
7002
7321
  }, {
7003
7322
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7004
7323
  hidden?: boolean | undefined;
7005
- openapi?: string | string[] | undefined;
7006
7324
  }>, z.ZodObject<{
7007
7325
  href: z.ZodString;
7008
7326
  }, "strip", z.ZodTypeAny, {
@@ -7013,15 +7331,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7013
7331
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
7014
7332
  version: z.ZodString;
7015
7333
  hidden: z.ZodOptional<z.ZodBoolean>;
7016
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7017
7334
  }, "strip", z.ZodTypeAny, {
7018
7335
  version: string;
7019
7336
  hidden?: boolean | undefined;
7020
- openapi?: string | string[] | undefined;
7021
7337
  }, {
7022
7338
  version: string;
7023
7339
  hidden?: boolean | undefined;
7024
- openapi?: string | string[] | undefined;
7025
7340
  }>, z.ZodObject<{
7026
7341
  href: z.ZodString;
7027
7342
  }, "strip", z.ZodTypeAny, {
@@ -7042,7 +7357,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7042
7357
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7043
7358
  }>]>>;
7044
7359
  hidden: z.ZodOptional<z.ZodBoolean>;
7045
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7046
7360
  }, "strip", z.ZodTypeAny, {
7047
7361
  tab: string;
7048
7362
  icon?: string | {
@@ -7050,7 +7364,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7050
7364
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7051
7365
  } | undefined;
7052
7366
  hidden?: boolean | undefined;
7053
- openapi?: string | string[] | undefined;
7054
7367
  }, {
7055
7368
  tab: string;
7056
7369
  icon?: string | {
@@ -7058,7 +7371,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7058
7371
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7059
7372
  } | undefined;
7060
7373
  hidden?: boolean | undefined;
7061
- openapi?: string | string[] | undefined;
7062
7374
  }>, z.ZodObject<{
7063
7375
  href: z.ZodString;
7064
7376
  }, "strip", z.ZodTypeAny, {
@@ -7079,7 +7391,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7079
7391
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7080
7392
  }>]>>;
7081
7393
  hidden: z.ZodOptional<z.ZodBoolean>;
7082
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7083
7394
  }, "strip", z.ZodTypeAny, {
7084
7395
  dropdown: string;
7085
7396
  icon?: string | {
@@ -7087,7 +7398,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7087
7398
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7088
7399
  } | undefined;
7089
7400
  hidden?: boolean | undefined;
7090
- openapi?: string | string[] | undefined;
7091
7401
  }, {
7092
7402
  dropdown: string;
7093
7403
  icon?: string | {
@@ -7095,7 +7405,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7095
7405
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7096
7406
  } | undefined;
7097
7407
  hidden?: boolean | undefined;
7098
- openapi?: string | string[] | undefined;
7099
7408
  }>, z.ZodObject<{
7100
7409
  href: z.ZodString;
7101
7410
  }, "strip", z.ZodTypeAny, {
@@ -7126,7 +7435,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7126
7435
  dark?: string | undefined;
7127
7436
  }>>;
7128
7437
  hidden: z.ZodOptional<z.ZodBoolean>;
7129
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7130
7438
  }, "strip", z.ZodTypeAny, {
7131
7439
  anchor: string;
7132
7440
  icon?: string | {
@@ -7138,7 +7446,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7138
7446
  dark?: string | undefined;
7139
7447
  } | undefined;
7140
7448
  hidden?: boolean | undefined;
7141
- openapi?: string | string[] | undefined;
7142
7449
  }, {
7143
7450
  anchor: string;
7144
7451
  icon?: string | {
@@ -7150,7 +7457,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7150
7457
  dark?: string | undefined;
7151
7458
  } | undefined;
7152
7459
  hidden?: boolean | undefined;
7153
- openapi?: string | string[] | undefined;
7154
7460
  }>, z.ZodObject<{
7155
7461
  href: z.ZodString;
7156
7462
  }, "strip", z.ZodTypeAny, {
@@ -7162,14 +7468,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7162
7468
  languages?: ({
7163
7469
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7164
7470
  hidden?: boolean | undefined;
7165
- openapi?: string | string[] | undefined;
7166
7471
  } & {
7167
7472
  href: string;
7168
7473
  })[] | undefined;
7169
7474
  versions?: ({
7170
7475
  version: string;
7171
7476
  hidden?: boolean | undefined;
7172
- openapi?: string | string[] | undefined;
7173
7477
  } & {
7174
7478
  href: string;
7175
7479
  })[] | undefined;
@@ -7180,7 +7484,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7180
7484
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7181
7485
  } | undefined;
7182
7486
  hidden?: boolean | undefined;
7183
- openapi?: string | string[] | undefined;
7184
7487
  } & {
7185
7488
  href: string;
7186
7489
  })[] | undefined;
@@ -7191,7 +7494,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7191
7494
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7192
7495
  } | undefined;
7193
7496
  hidden?: boolean | undefined;
7194
- openapi?: string | string[] | undefined;
7195
7497
  } & {
7196
7498
  href: string;
7197
7499
  })[] | undefined;
@@ -7206,7 +7508,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7206
7508
  dark?: string | undefined;
7207
7509
  } | undefined;
7208
7510
  hidden?: boolean | undefined;
7209
- openapi?: string | string[] | undefined;
7210
7511
  } & {
7211
7512
  href: string;
7212
7513
  })[] | undefined;
@@ -7214,14 +7515,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7214
7515
  languages?: ({
7215
7516
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7216
7517
  hidden?: boolean | undefined;
7217
- openapi?: string | string[] | undefined;
7218
7518
  } & {
7219
7519
  href: string;
7220
7520
  })[] | undefined;
7221
7521
  versions?: ({
7222
7522
  version: string;
7223
7523
  hidden?: boolean | undefined;
7224
- openapi?: string | string[] | undefined;
7225
7524
  } & {
7226
7525
  href: string;
7227
7526
  })[] | undefined;
@@ -7232,7 +7531,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7232
7531
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7233
7532
  } | undefined;
7234
7533
  hidden?: boolean | undefined;
7235
- openapi?: string | string[] | undefined;
7236
7534
  } & {
7237
7535
  href: string;
7238
7536
  })[] | undefined;
@@ -7243,7 +7541,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7243
7541
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7244
7542
  } | undefined;
7245
7543
  hidden?: boolean | undefined;
7246
- openapi?: string | string[] | undefined;
7247
7544
  } & {
7248
7545
  href: string;
7249
7546
  })[] | undefined;
@@ -7258,7 +7555,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7258
7555
  dark?: string | undefined;
7259
7556
  } | undefined;
7260
7557
  hidden?: boolean | undefined;
7261
- openapi?: string | string[] | undefined;
7262
7558
  } & {
7263
7559
  href: string;
7264
7560
  })[] | undefined;
@@ -7268,14 +7564,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7268
7564
  languages?: ({
7269
7565
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7270
7566
  hidden?: boolean | undefined;
7271
- openapi?: string | string[] | undefined;
7272
7567
  } & {
7273
7568
  href: string;
7274
7569
  })[] | undefined;
7275
7570
  versions?: ({
7276
7571
  version: string;
7277
7572
  hidden?: boolean | undefined;
7278
- openapi?: string | string[] | undefined;
7279
7573
  } & {
7280
7574
  href: string;
7281
7575
  })[] | undefined;
@@ -7286,7 +7580,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7286
7580
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7287
7581
  } | undefined;
7288
7582
  hidden?: boolean | undefined;
7289
- openapi?: string | string[] | undefined;
7290
7583
  } & {
7291
7584
  href: string;
7292
7585
  })[] | undefined;
@@ -7297,7 +7590,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7297
7590
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7298
7591
  } | undefined;
7299
7592
  hidden?: boolean | undefined;
7300
- openapi?: string | string[] | undefined;
7301
7593
  } & {
7302
7594
  href: string;
7303
7595
  })[] | undefined;
@@ -7312,7 +7604,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7312
7604
  dark?: string | undefined;
7313
7605
  } | undefined;
7314
7606
  hidden?: boolean | undefined;
7315
- openapi?: string | string[] | undefined;
7316
7607
  } & {
7317
7608
  href: string;
7318
7609
  })[] | undefined;
@@ -7322,14 +7613,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7322
7613
  languages?: ({
7323
7614
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7324
7615
  hidden?: boolean | undefined;
7325
- openapi?: string | string[] | undefined;
7326
7616
  } & {
7327
7617
  href: string;
7328
7618
  })[] | undefined;
7329
7619
  versions?: ({
7330
7620
  version: string;
7331
7621
  hidden?: boolean | undefined;
7332
- openapi?: string | string[] | undefined;
7333
7622
  } & {
7334
7623
  href: string;
7335
7624
  })[] | undefined;
@@ -7340,7 +7629,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7340
7629
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7341
7630
  } | undefined;
7342
7631
  hidden?: boolean | undefined;
7343
- openapi?: string | string[] | undefined;
7344
7632
  } & {
7345
7633
  href: string;
7346
7634
  })[] | undefined;
@@ -7351,7 +7639,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7351
7639
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7352
7640
  } | undefined;
7353
7641
  hidden?: boolean | undefined;
7354
- openapi?: string | string[] | undefined;
7355
7642
  } & {
7356
7643
  href: string;
7357
7644
  })[] | undefined;
@@ -7366,7 +7653,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7366
7653
  dark?: string | undefined;
7367
7654
  } | undefined;
7368
7655
  hidden?: boolean | undefined;
7369
- openapi?: string | string[] | undefined;
7370
7656
  } & {
7371
7657
  href: string;
7372
7658
  })[] | undefined;
@@ -7375,22 +7661,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7375
7661
  languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
7376
7662
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
7377
7663
  hidden: z.ZodOptional<z.ZodBoolean>;
7378
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7379
7664
  }, "strip", z.ZodTypeAny, {
7380
7665
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7381
7666
  hidden?: boolean | undefined;
7382
- openapi?: string | string[] | undefined;
7383
7667
  }, {
7384
7668
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7385
7669
  hidden?: boolean | undefined;
7386
- openapi?: string | string[] | undefined;
7387
7670
  }>, z.ZodUnion<[z.ZodObject<{
7388
7671
  href: z.ZodString;
7389
7672
  }, "strip", z.ZodTypeAny, {
7390
7673
  href: string;
7391
7674
  }, {
7392
7675
  href: string;
7393
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
7676
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
7677
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
7678
+ hidden: z.ZodOptional<z.ZodBoolean>;
7679
+ }, "strip", z.ZodTypeAny, {
7680
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7681
+ hidden?: boolean | undefined;
7682
+ }, {
7683
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
7684
+ hidden?: boolean | undefined;
7685
+ }>, z.ZodUnion<[z.ZodObject<{
7686
+ href: z.ZodString;
7687
+ }, "strip", z.ZodTypeAny, {
7688
+ href: string;
7689
+ }, {
7690
+ href: string;
7691
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
7692
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7693
+ }, "strip", z.ZodTypeAny, {
7694
+ openapi?: string | string[] | undefined;
7695
+ }, {
7696
+ openapi?: string | string[] | undefined;
7697
+ }>>, "many">;
7394
7698
  }, "strip", z.ZodTypeAny, {
7395
7699
  languages: any[];
7396
7700
  }, {
@@ -7399,29 +7703,158 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7399
7703
  versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
7400
7704
  version: z.ZodString;
7401
7705
  hidden: z.ZodOptional<z.ZodBoolean>;
7402
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7403
7706
  }, "strip", z.ZodTypeAny, {
7404
7707
  version: string;
7405
7708
  hidden?: boolean | undefined;
7709
+ }, {
7710
+ version: string;
7711
+ hidden?: boolean | undefined;
7712
+ }>, z.ZodUnion<[z.ZodObject<{
7713
+ href: z.ZodString;
7714
+ }, "strip", z.ZodTypeAny, {
7715
+ href: string;
7716
+ }, {
7717
+ href: string;
7718
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
7719
+ version: z.ZodString;
7720
+ hidden: z.ZodOptional<z.ZodBoolean>;
7721
+ }, "strip", z.ZodTypeAny, {
7722
+ version: string;
7723
+ hidden?: boolean | undefined;
7724
+ }, {
7725
+ version: string;
7726
+ hidden?: boolean | undefined;
7727
+ }>, z.ZodUnion<[z.ZodObject<{
7728
+ href: z.ZodString;
7729
+ }, "strip", z.ZodTypeAny, {
7730
+ href: string;
7731
+ }, {
7732
+ href: string;
7733
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
7734
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7735
+ }, "strip", z.ZodTypeAny, {
7406
7736
  openapi?: string | string[] | undefined;
7407
7737
  }, {
7408
- version: string;
7738
+ openapi?: string | string[] | undefined;
7739
+ }>>, "many">;
7740
+ }, "strip", z.ZodTypeAny, {
7741
+ versions: any[];
7742
+ }, {
7743
+ versions: any[];
7744
+ }>, z.ZodObject<{
7745
+ tabs: z.ZodArray<z.ZodIntersection<z.ZodObject<{
7746
+ tab: z.ZodString;
7747
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7748
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
7749
+ name: z.ZodEffects<z.ZodString, string, string>;
7750
+ }, "strip", z.ZodTypeAny, {
7751
+ name: string;
7752
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7753
+ }, {
7754
+ name: string;
7755
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7756
+ }>]>>;
7757
+ hidden: z.ZodOptional<z.ZodBoolean>;
7758
+ }, "strip", z.ZodTypeAny, {
7759
+ tab: string;
7760
+ icon?: string | {
7761
+ name: string;
7762
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7763
+ } | undefined;
7764
+ hidden?: boolean | undefined;
7765
+ }, {
7766
+ tab: string;
7767
+ icon?: string | {
7768
+ name: string;
7769
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7770
+ } | undefined;
7771
+ hidden?: boolean | undefined;
7772
+ }>, z.ZodUnion<[z.ZodObject<{
7773
+ href: z.ZodString;
7774
+ }, "strip", z.ZodTypeAny, {
7775
+ href: string;
7776
+ }, {
7777
+ href: string;
7778
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
7779
+ tab: z.ZodString;
7780
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7781
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
7782
+ name: z.ZodEffects<z.ZodString, string, string>;
7783
+ }, "strip", z.ZodTypeAny, {
7784
+ name: string;
7785
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7786
+ }, {
7787
+ name: string;
7788
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7789
+ }>]>>;
7790
+ hidden: z.ZodOptional<z.ZodBoolean>;
7791
+ }, "strip", z.ZodTypeAny, {
7792
+ tab: string;
7793
+ icon?: string | {
7794
+ name: string;
7795
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7796
+ } | undefined;
7797
+ hidden?: boolean | undefined;
7798
+ }, {
7799
+ tab: string;
7800
+ icon?: string | {
7801
+ name: string;
7802
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7803
+ } | undefined;
7804
+ hidden?: boolean | undefined;
7805
+ }>, z.ZodUnion<[z.ZodObject<{
7806
+ href: z.ZodString;
7807
+ }, "strip", z.ZodTypeAny, {
7808
+ href: string;
7809
+ }, {
7810
+ href: string;
7811
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
7812
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7813
+ }, "strip", z.ZodTypeAny, {
7814
+ openapi?: string | string[] | undefined;
7815
+ }, {
7816
+ openapi?: string | string[] | undefined;
7817
+ }>>, "many">;
7818
+ }, "strip", z.ZodTypeAny, {
7819
+ tabs: any[];
7820
+ }, {
7821
+ tabs: any[];
7822
+ }>, z.ZodObject<{
7823
+ dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
7824
+ dropdown: z.ZodString;
7825
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7826
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
7827
+ name: z.ZodEffects<z.ZodString, string, string>;
7828
+ }, "strip", z.ZodTypeAny, {
7829
+ name: string;
7830
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7831
+ }, {
7832
+ name: string;
7833
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7834
+ }>]>>;
7835
+ hidden: z.ZodOptional<z.ZodBoolean>;
7836
+ }, "strip", z.ZodTypeAny, {
7837
+ dropdown: string;
7838
+ icon?: string | {
7839
+ name: string;
7840
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7841
+ } | undefined;
7842
+ hidden?: boolean | undefined;
7843
+ }, {
7844
+ dropdown: string;
7845
+ icon?: string | {
7846
+ name: string;
7847
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7848
+ } | undefined;
7409
7849
  hidden?: boolean | undefined;
7410
- openapi?: string | string[] | undefined;
7411
7850
  }>, z.ZodUnion<[z.ZodObject<{
7412
7851
  href: z.ZodString;
7413
7852
  }, "strip", z.ZodTypeAny, {
7414
7853
  href: string;
7415
7854
  }, {
7416
7855
  href: string;
7417
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
7418
- }, "strip", z.ZodTypeAny, {
7419
- versions: any[];
7420
- }, {
7421
- versions: any[];
7422
- }>, z.ZodObject<{
7423
- tabs: z.ZodArray<z.ZodIntersection<z.ZodObject<{
7424
- tab: z.ZodString;
7856
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
7857
+ dropdown: z.ZodString;
7425
7858
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7426
7859
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
7427
7860
  name: z.ZodEffects<z.ZodString, string, string>;
@@ -7433,37 +7866,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7433
7866
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7434
7867
  }>]>>;
7435
7868
  hidden: z.ZodOptional<z.ZodBoolean>;
7436
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7437
7869
  }, "strip", z.ZodTypeAny, {
7438
- tab: string;
7870
+ dropdown: string;
7439
7871
  icon?: string | {
7440
7872
  name: string;
7441
7873
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7442
7874
  } | undefined;
7443
7875
  hidden?: boolean | undefined;
7444
- openapi?: string | string[] | undefined;
7445
7876
  }, {
7446
- tab: string;
7877
+ dropdown: string;
7447
7878
  icon?: string | {
7448
7879
  name: string;
7449
7880
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7450
7881
  } | undefined;
7451
7882
  hidden?: boolean | undefined;
7452
- openapi?: string | string[] | undefined;
7453
7883
  }>, z.ZodUnion<[z.ZodObject<{
7454
7884
  href: z.ZodString;
7455
7885
  }, "strip", z.ZodTypeAny, {
7456
7886
  href: string;
7457
7887
  }, {
7458
7888
  href: string;
7459
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
7889
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
7890
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7891
+ }, "strip", z.ZodTypeAny, {
7892
+ openapi?: string | string[] | undefined;
7893
+ }, {
7894
+ openapi?: string | string[] | undefined;
7895
+ }>>, "many">;
7460
7896
  }, "strip", z.ZodTypeAny, {
7461
- tabs: any[];
7897
+ dropdowns: any[];
7462
7898
  }, {
7463
- tabs: any[];
7899
+ dropdowns: any[];
7464
7900
  }>, z.ZodObject<{
7465
- dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
7466
- dropdown: z.ZodString;
7901
+ anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
7902
+ anchor: z.ZodString;
7467
7903
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7468
7904
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
7469
7905
  name: z.ZodEffects<z.ZodString, string, string>;
@@ -7474,37 +7910,46 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7474
7910
  name: string;
7475
7911
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7476
7912
  }>]>>;
7913
+ color: z.ZodOptional<z.ZodObject<{
7914
+ light: z.ZodOptional<z.ZodString>;
7915
+ dark: z.ZodOptional<z.ZodString>;
7916
+ }, "strict", z.ZodTypeAny, {
7917
+ light?: string | undefined;
7918
+ dark?: string | undefined;
7919
+ }, {
7920
+ light?: string | undefined;
7921
+ dark?: string | undefined;
7922
+ }>>;
7477
7923
  hidden: z.ZodOptional<z.ZodBoolean>;
7478
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7479
7924
  }, "strip", z.ZodTypeAny, {
7480
- dropdown: string;
7925
+ anchor: string;
7481
7926
  icon?: string | {
7482
7927
  name: string;
7483
7928
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7484
7929
  } | undefined;
7930
+ color?: {
7931
+ light?: string | undefined;
7932
+ dark?: string | undefined;
7933
+ } | undefined;
7485
7934
  hidden?: boolean | undefined;
7486
- openapi?: string | string[] | undefined;
7487
7935
  }, {
7488
- dropdown: string;
7936
+ anchor: string;
7489
7937
  icon?: string | {
7490
7938
  name: string;
7491
7939
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
7492
7940
  } | undefined;
7941
+ color?: {
7942
+ light?: string | undefined;
7943
+ dark?: string | undefined;
7944
+ } | undefined;
7493
7945
  hidden?: boolean | undefined;
7494
- openapi?: string | string[] | undefined;
7495
7946
  }>, z.ZodUnion<[z.ZodObject<{
7496
7947
  href: z.ZodString;
7497
7948
  }, "strip", z.ZodTypeAny, {
7498
7949
  href: string;
7499
7950
  }, {
7500
7951
  href: string;
7501
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
7502
- }, "strip", z.ZodTypeAny, {
7503
- dropdowns: any[];
7504
- }, {
7505
- dropdowns: any[];
7506
- }>, z.ZodObject<{
7507
- anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
7952
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
7508
7953
  anchor: z.ZodString;
7509
7954
  icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
7510
7955
  style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
@@ -7527,7 +7972,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7527
7972
  dark?: string | undefined;
7528
7973
  }>>;
7529
7974
  hidden: z.ZodOptional<z.ZodBoolean>;
7530
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
7531
7975
  }, "strip", z.ZodTypeAny, {
7532
7976
  anchor: string;
7533
7977
  icon?: string | {
@@ -7539,7 +7983,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7539
7983
  dark?: string | undefined;
7540
7984
  } | undefined;
7541
7985
  hidden?: boolean | undefined;
7542
- openapi?: string | string[] | undefined;
7543
7986
  }, {
7544
7987
  anchor: string;
7545
7988
  icon?: string | {
@@ -7551,14 +7994,19 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
7551
7994
  dark?: string | undefined;
7552
7995
  } | undefined;
7553
7996
  hidden?: boolean | undefined;
7554
- openapi?: string | string[] | undefined;
7555
7997
  }>, z.ZodUnion<[z.ZodObject<{
7556
7998
  href: z.ZodString;
7557
7999
  }, "strip", z.ZodTypeAny, {
7558
8000
  href: string;
7559
8001
  }, {
7560
8002
  href: string;
7561
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
8003
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
8004
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
8005
+ }, "strip", z.ZodTypeAny, {
8006
+ openapi?: string | string[] | undefined;
8007
+ }, {
8008
+ openapi?: string | string[] | undefined;
8009
+ }>>, "many">;
7562
8010
  }, "strip", z.ZodTypeAny, {
7563
8011
  anchors: any[];
7564
8012
  }, {
@@ -8294,14 +8742,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8294
8742
  languages?: ({
8295
8743
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8296
8744
  hidden?: boolean | undefined;
8297
- openapi?: string | string[] | undefined;
8298
8745
  } & {
8299
8746
  href: string;
8300
8747
  })[] | undefined;
8301
8748
  versions?: ({
8302
8749
  version: string;
8303
8750
  hidden?: boolean | undefined;
8304
- openapi?: string | string[] | undefined;
8305
8751
  } & {
8306
8752
  href: string;
8307
8753
  })[] | undefined;
@@ -8312,7 +8758,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8312
8758
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8313
8759
  } | undefined;
8314
8760
  hidden?: boolean | undefined;
8315
- openapi?: string | string[] | undefined;
8316
8761
  } & {
8317
8762
  href: string;
8318
8763
  })[] | undefined;
@@ -8323,7 +8768,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8323
8768
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8324
8769
  } | undefined;
8325
8770
  hidden?: boolean | undefined;
8326
- openapi?: string | string[] | undefined;
8327
8771
  } & {
8328
8772
  href: string;
8329
8773
  })[] | undefined;
@@ -8338,7 +8782,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8338
8782
  dark?: string | undefined;
8339
8783
  } | undefined;
8340
8784
  hidden?: boolean | undefined;
8341
- openapi?: string | string[] | undefined;
8342
8785
  } & {
8343
8786
  href: string;
8344
8787
  })[] | undefined;
@@ -8400,14 +8843,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8400
8843
  languages?: ({
8401
8844
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8402
8845
  hidden?: boolean | undefined;
8403
- openapi?: string | string[] | undefined;
8404
8846
  } & {
8405
8847
  href: string;
8406
8848
  })[] | undefined;
8407
8849
  versions?: ({
8408
8850
  version: string;
8409
8851
  hidden?: boolean | undefined;
8410
- openapi?: string | string[] | undefined;
8411
8852
  } & {
8412
8853
  href: string;
8413
8854
  })[] | undefined;
@@ -8418,7 +8859,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8418
8859
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8419
8860
  } | undefined;
8420
8861
  hidden?: boolean | undefined;
8421
- openapi?: string | string[] | undefined;
8422
8862
  } & {
8423
8863
  href: string;
8424
8864
  })[] | undefined;
@@ -8429,7 +8869,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8429
8869
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8430
8870
  } | undefined;
8431
8871
  hidden?: boolean | undefined;
8432
- openapi?: string | string[] | undefined;
8433
8872
  } & {
8434
8873
  href: string;
8435
8874
  })[] | undefined;
@@ -8444,7 +8883,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8444
8883
  dark?: string | undefined;
8445
8884
  } | undefined;
8446
8885
  hidden?: boolean | undefined;
8447
- openapi?: string | string[] | undefined;
8448
8886
  } & {
8449
8887
  href: string;
8450
8888
  })[] | undefined;
@@ -8673,14 +9111,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8673
9111
  languages?: ({
8674
9112
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8675
9113
  hidden?: boolean | undefined;
8676
- openapi?: string | string[] | undefined;
8677
9114
  } & {
8678
9115
  href: string;
8679
9116
  })[] | undefined;
8680
9117
  versions?: ({
8681
9118
  version: string;
8682
9119
  hidden?: boolean | undefined;
8683
- openapi?: string | string[] | undefined;
8684
9120
  } & {
8685
9121
  href: string;
8686
9122
  })[] | undefined;
@@ -8691,7 +9127,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8691
9127
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8692
9128
  } | undefined;
8693
9129
  hidden?: boolean | undefined;
8694
- openapi?: string | string[] | undefined;
8695
9130
  } & {
8696
9131
  href: string;
8697
9132
  })[] | undefined;
@@ -8702,7 +9137,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8702
9137
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8703
9138
  } | undefined;
8704
9139
  hidden?: boolean | undefined;
8705
- openapi?: string | string[] | undefined;
8706
9140
  } & {
8707
9141
  href: string;
8708
9142
  })[] | undefined;
@@ -8717,7 +9151,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8717
9151
  dark?: string | undefined;
8718
9152
  } | undefined;
8719
9153
  hidden?: boolean | undefined;
8720
- openapi?: string | string[] | undefined;
8721
9154
  } & {
8722
9155
  href: string;
8723
9156
  })[] | undefined;
@@ -8779,14 +9212,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8779
9212
  languages?: ({
8780
9213
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
8781
9214
  hidden?: boolean | undefined;
8782
- openapi?: string | string[] | undefined;
8783
9215
  } & {
8784
9216
  href: string;
8785
9217
  })[] | undefined;
8786
9218
  versions?: ({
8787
9219
  version: string;
8788
9220
  hidden?: boolean | undefined;
8789
- openapi?: string | string[] | undefined;
8790
9221
  } & {
8791
9222
  href: string;
8792
9223
  })[] | undefined;
@@ -8797,7 +9228,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8797
9228
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8798
9229
  } | undefined;
8799
9230
  hidden?: boolean | undefined;
8800
- openapi?: string | string[] | undefined;
8801
9231
  } & {
8802
9232
  href: string;
8803
9233
  })[] | undefined;
@@ -8808,7 +9238,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8808
9238
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
8809
9239
  } | undefined;
8810
9240
  hidden?: boolean | undefined;
8811
- openapi?: string | string[] | undefined;
8812
9241
  } & {
8813
9242
  href: string;
8814
9243
  })[] | undefined;
@@ -8823,7 +9252,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
8823
9252
  dark?: string | undefined;
8824
9253
  } | undefined;
8825
9254
  hidden?: boolean | undefined;
8826
- openapi?: string | string[] | undefined;
8827
9255
  } & {
8828
9256
  href: string;
8829
9257
  })[] | undefined;
@@ -9254,15 +9682,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9254
9682
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
9255
9683
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
9256
9684
  hidden: z.ZodOptional<z.ZodBoolean>;
9257
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
9258
9685
  }, "strip", z.ZodTypeAny, {
9259
9686
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
9260
9687
  hidden?: boolean | undefined;
9261
- openapi?: string | string[] | undefined;
9262
9688
  }, {
9263
9689
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
9264
9690
  hidden?: boolean | undefined;
9265
- openapi?: string | string[] | undefined;
9266
9691
  }>, z.ZodObject<{
9267
9692
  href: z.ZodString;
9268
9693
  }, "strip", z.ZodTypeAny, {
@@ -9273,15 +9698,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9273
9698
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
9274
9699
  version: z.ZodString;
9275
9700
  hidden: z.ZodOptional<z.ZodBoolean>;
9276
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
9277
9701
  }, "strip", z.ZodTypeAny, {
9278
9702
  version: string;
9279
9703
  hidden?: boolean | undefined;
9280
- openapi?: string | string[] | undefined;
9281
9704
  }, {
9282
9705
  version: string;
9283
9706
  hidden?: boolean | undefined;
9284
- openapi?: string | string[] | undefined;
9285
9707
  }>, z.ZodObject<{
9286
9708
  href: z.ZodString;
9287
9709
  }, "strip", z.ZodTypeAny, {
@@ -9302,7 +9724,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9302
9724
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9303
9725
  }>]>>;
9304
9726
  hidden: z.ZodOptional<z.ZodBoolean>;
9305
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
9306
9727
  }, "strip", z.ZodTypeAny, {
9307
9728
  tab: string;
9308
9729
  icon?: string | {
@@ -9310,7 +9731,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9310
9731
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9311
9732
  } | undefined;
9312
9733
  hidden?: boolean | undefined;
9313
- openapi?: string | string[] | undefined;
9314
9734
  }, {
9315
9735
  tab: string;
9316
9736
  icon?: string | {
@@ -9318,7 +9738,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9318
9738
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9319
9739
  } | undefined;
9320
9740
  hidden?: boolean | undefined;
9321
- openapi?: string | string[] | undefined;
9322
9741
  }>, z.ZodObject<{
9323
9742
  href: z.ZodString;
9324
9743
  }, "strip", z.ZodTypeAny, {
@@ -9339,7 +9758,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9339
9758
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9340
9759
  }>]>>;
9341
9760
  hidden: z.ZodOptional<z.ZodBoolean>;
9342
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
9343
9761
  }, "strip", z.ZodTypeAny, {
9344
9762
  dropdown: string;
9345
9763
  icon?: string | {
@@ -9347,7 +9765,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9347
9765
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9348
9766
  } | undefined;
9349
9767
  hidden?: boolean | undefined;
9350
- openapi?: string | string[] | undefined;
9351
9768
  }, {
9352
9769
  dropdown: string;
9353
9770
  icon?: string | {
@@ -9355,7 +9772,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9355
9772
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9356
9773
  } | undefined;
9357
9774
  hidden?: boolean | undefined;
9358
- openapi?: string | string[] | undefined;
9359
9775
  }>, z.ZodObject<{
9360
9776
  href: z.ZodString;
9361
9777
  }, "strip", z.ZodTypeAny, {
@@ -9386,7 +9802,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9386
9802
  dark?: string | undefined;
9387
9803
  }>>;
9388
9804
  hidden: z.ZodOptional<z.ZodBoolean>;
9389
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
9390
9805
  }, "strip", z.ZodTypeAny, {
9391
9806
  anchor: string;
9392
9807
  icon?: string | {
@@ -9398,7 +9813,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9398
9813
  dark?: string | undefined;
9399
9814
  } | undefined;
9400
9815
  hidden?: boolean | undefined;
9401
- openapi?: string | string[] | undefined;
9402
9816
  }, {
9403
9817
  anchor: string;
9404
9818
  icon?: string | {
@@ -9410,7 +9824,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9410
9824
  dark?: string | undefined;
9411
9825
  } | undefined;
9412
9826
  hidden?: boolean | undefined;
9413
- openapi?: string | string[] | undefined;
9414
9827
  }>, z.ZodObject<{
9415
9828
  href: z.ZodString;
9416
9829
  }, "strip", z.ZodTypeAny, {
@@ -9422,14 +9835,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9422
9835
  languages?: ({
9423
9836
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
9424
9837
  hidden?: boolean | undefined;
9425
- openapi?: string | string[] | undefined;
9426
9838
  } & {
9427
9839
  href: string;
9428
9840
  })[] | undefined;
9429
9841
  versions?: ({
9430
9842
  version: string;
9431
9843
  hidden?: boolean | undefined;
9432
- openapi?: string | string[] | undefined;
9433
9844
  } & {
9434
9845
  href: string;
9435
9846
  })[] | undefined;
@@ -9440,7 +9851,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9440
9851
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9441
9852
  } | undefined;
9442
9853
  hidden?: boolean | undefined;
9443
- openapi?: string | string[] | undefined;
9444
9854
  } & {
9445
9855
  href: string;
9446
9856
  })[] | undefined;
@@ -9451,7 +9861,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9451
9861
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9452
9862
  } | undefined;
9453
9863
  hidden?: boolean | undefined;
9454
- openapi?: string | string[] | undefined;
9455
9864
  } & {
9456
9865
  href: string;
9457
9866
  })[] | undefined;
@@ -9466,7 +9875,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9466
9875
  dark?: string | undefined;
9467
9876
  } | undefined;
9468
9877
  hidden?: boolean | undefined;
9469
- openapi?: string | string[] | undefined;
9470
9878
  } & {
9471
9879
  href: string;
9472
9880
  })[] | undefined;
@@ -9474,14 +9882,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9474
9882
  languages?: ({
9475
9883
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
9476
9884
  hidden?: boolean | undefined;
9477
- openapi?: string | string[] | undefined;
9478
9885
  } & {
9479
9886
  href: string;
9480
9887
  })[] | undefined;
9481
9888
  versions?: ({
9482
9889
  version: string;
9483
9890
  hidden?: boolean | undefined;
9484
- openapi?: string | string[] | undefined;
9485
9891
  } & {
9486
9892
  href: string;
9487
9893
  })[] | undefined;
@@ -9492,7 +9898,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9492
9898
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9493
9899
  } | undefined;
9494
9900
  hidden?: boolean | undefined;
9495
- openapi?: string | string[] | undefined;
9496
9901
  } & {
9497
9902
  href: string;
9498
9903
  })[] | undefined;
@@ -9503,7 +9908,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9503
9908
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9504
9909
  } | undefined;
9505
9910
  hidden?: boolean | undefined;
9506
- openapi?: string | string[] | undefined;
9507
9911
  } & {
9508
9912
  href: string;
9509
9913
  })[] | undefined;
@@ -9518,7 +9922,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9518
9922
  dark?: string | undefined;
9519
9923
  } | undefined;
9520
9924
  hidden?: boolean | undefined;
9521
- openapi?: string | string[] | undefined;
9522
9925
  } & {
9523
9926
  href: string;
9524
9927
  })[] | undefined;
@@ -9528,14 +9931,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9528
9931
  languages?: ({
9529
9932
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
9530
9933
  hidden?: boolean | undefined;
9531
- openapi?: string | string[] | undefined;
9532
9934
  } & {
9533
9935
  href: string;
9534
9936
  })[] | undefined;
9535
9937
  versions?: ({
9536
9938
  version: string;
9537
9939
  hidden?: boolean | undefined;
9538
- openapi?: string | string[] | undefined;
9539
9940
  } & {
9540
9941
  href: string;
9541
9942
  })[] | undefined;
@@ -9546,7 +9947,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9546
9947
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9547
9948
  } | undefined;
9548
9949
  hidden?: boolean | undefined;
9549
- openapi?: string | string[] | undefined;
9550
9950
  } & {
9551
9951
  href: string;
9552
9952
  })[] | undefined;
@@ -9557,7 +9957,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9557
9957
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9558
9958
  } | undefined;
9559
9959
  hidden?: boolean | undefined;
9560
- openapi?: string | string[] | undefined;
9561
9960
  } & {
9562
9961
  href: string;
9563
9962
  })[] | undefined;
@@ -9572,7 +9971,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9572
9971
  dark?: string | undefined;
9573
9972
  } | undefined;
9574
9973
  hidden?: boolean | undefined;
9575
- openapi?: string | string[] | undefined;
9576
9974
  } & {
9577
9975
  href: string;
9578
9976
  })[] | undefined;
@@ -9582,14 +9980,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9582
9980
  languages?: ({
9583
9981
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
9584
9982
  hidden?: boolean | undefined;
9585
- openapi?: string | string[] | undefined;
9586
9983
  } & {
9587
9984
  href: string;
9588
9985
  })[] | undefined;
9589
9986
  versions?: ({
9590
9987
  version: string;
9591
9988
  hidden?: boolean | undefined;
9592
- openapi?: string | string[] | undefined;
9593
9989
  } & {
9594
9990
  href: string;
9595
9991
  })[] | undefined;
@@ -9600,7 +9996,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9600
9996
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9601
9997
  } | undefined;
9602
9998
  hidden?: boolean | undefined;
9603
- openapi?: string | string[] | undefined;
9604
9999
  } & {
9605
10000
  href: string;
9606
10001
  })[] | undefined;
@@ -9611,7 +10006,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9611
10006
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9612
10007
  } | undefined;
9613
10008
  hidden?: boolean | undefined;
9614
- openapi?: string | string[] | undefined;
9615
10009
  } & {
9616
10010
  href: string;
9617
10011
  })[] | undefined;
@@ -9626,7 +10020,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9626
10020
  dark?: string | undefined;
9627
10021
  } | undefined;
9628
10022
  hidden?: boolean | undefined;
9629
- openapi?: string | string[] | undefined;
9630
10023
  } & {
9631
10024
  href: string;
9632
10025
  })[] | undefined;
@@ -9635,22 +10028,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9635
10028
  languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
9636
10029
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
9637
10030
  hidden: z.ZodOptional<z.ZodBoolean>;
9638
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
9639
10031
  }, "strip", z.ZodTypeAny, {
9640
10032
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
9641
10033
  hidden?: boolean | undefined;
9642
- openapi?: string | string[] | undefined;
9643
10034
  }, {
9644
10035
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
9645
10036
  hidden?: boolean | undefined;
9646
- openapi?: string | string[] | undefined;
9647
10037
  }>, z.ZodUnion<[z.ZodObject<{
9648
10038
  href: z.ZodString;
9649
10039
  }, "strip", z.ZodTypeAny, {
9650
10040
  href: string;
9651
10041
  }, {
9652
10042
  href: string;
9653
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
10043
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
10044
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
10045
+ hidden: z.ZodOptional<z.ZodBoolean>;
10046
+ }, "strip", z.ZodTypeAny, {
10047
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
10048
+ hidden?: boolean | undefined;
10049
+ }, {
10050
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
10051
+ hidden?: boolean | undefined;
10052
+ }>, z.ZodUnion<[z.ZodObject<{
10053
+ href: z.ZodString;
10054
+ }, "strip", z.ZodTypeAny, {
10055
+ href: string;
10056
+ }, {
10057
+ href: string;
10058
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
10059
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
10060
+ }, "strip", z.ZodTypeAny, {
10061
+ openapi?: string | string[] | undefined;
10062
+ }, {
10063
+ openapi?: string | string[] | undefined;
10064
+ }>>, "many">;
9654
10065
  }, "strip", z.ZodTypeAny, {
9655
10066
  languages: any[];
9656
10067
  }, {
@@ -9659,22 +10070,40 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9659
10070
  versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
9660
10071
  version: z.ZodString;
9661
10072
  hidden: z.ZodOptional<z.ZodBoolean>;
9662
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
9663
10073
  }, "strip", z.ZodTypeAny, {
9664
10074
  version: string;
9665
10075
  hidden?: boolean | undefined;
9666
- openapi?: string | string[] | undefined;
9667
10076
  }, {
9668
10077
  version: string;
9669
10078
  hidden?: boolean | undefined;
9670
- openapi?: string | string[] | undefined;
9671
10079
  }>, z.ZodUnion<[z.ZodObject<{
9672
10080
  href: z.ZodString;
9673
10081
  }, "strip", z.ZodTypeAny, {
9674
10082
  href: string;
9675
10083
  }, {
9676
10084
  href: string;
9677
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
10085
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
10086
+ version: z.ZodString;
10087
+ hidden: z.ZodOptional<z.ZodBoolean>;
10088
+ }, "strip", z.ZodTypeAny, {
10089
+ version: string;
10090
+ hidden?: boolean | undefined;
10091
+ }, {
10092
+ version: string;
10093
+ hidden?: boolean | undefined;
10094
+ }>, z.ZodUnion<[z.ZodObject<{
10095
+ href: z.ZodString;
10096
+ }, "strip", z.ZodTypeAny, {
10097
+ href: string;
10098
+ }, {
10099
+ href: string;
10100
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
10101
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
10102
+ }, "strip", z.ZodTypeAny, {
10103
+ openapi?: string | string[] | undefined;
10104
+ }, {
10105
+ openapi?: string | string[] | undefined;
10106
+ }>>, "many">;
9678
10107
  }, "strip", z.ZodTypeAny, {
9679
10108
  versions: any[];
9680
10109
  }, {
@@ -9693,7 +10122,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9693
10122
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9694
10123
  }>]>>;
9695
10124
  hidden: z.ZodOptional<z.ZodBoolean>;
9696
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
9697
10125
  }, "strip", z.ZodTypeAny, {
9698
10126
  tab: string;
9699
10127
  icon?: string | {
@@ -9701,7 +10129,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9701
10129
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9702
10130
  } | undefined;
9703
10131
  hidden?: boolean | undefined;
9704
- openapi?: string | string[] | undefined;
9705
10132
  }, {
9706
10133
  tab: string;
9707
10134
  icon?: string | {
@@ -9709,14 +10136,52 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9709
10136
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9710
10137
  } | undefined;
9711
10138
  hidden?: boolean | undefined;
9712
- openapi?: string | string[] | undefined;
9713
10139
  }>, z.ZodUnion<[z.ZodObject<{
9714
10140
  href: z.ZodString;
9715
10141
  }, "strip", z.ZodTypeAny, {
9716
10142
  href: string;
9717
10143
  }, {
9718
10144
  href: string;
9719
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
10145
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
10146
+ tab: z.ZodString;
10147
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
10148
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
10149
+ name: z.ZodEffects<z.ZodString, string, string>;
10150
+ }, "strip", z.ZodTypeAny, {
10151
+ name: string;
10152
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10153
+ }, {
10154
+ name: string;
10155
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10156
+ }>]>>;
10157
+ hidden: z.ZodOptional<z.ZodBoolean>;
10158
+ }, "strip", z.ZodTypeAny, {
10159
+ tab: string;
10160
+ icon?: string | {
10161
+ name: string;
10162
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10163
+ } | undefined;
10164
+ hidden?: boolean | undefined;
10165
+ }, {
10166
+ tab: string;
10167
+ icon?: string | {
10168
+ name: string;
10169
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10170
+ } | undefined;
10171
+ hidden?: boolean | undefined;
10172
+ }>, z.ZodUnion<[z.ZodObject<{
10173
+ href: z.ZodString;
10174
+ }, "strip", z.ZodTypeAny, {
10175
+ href: string;
10176
+ }, {
10177
+ href: string;
10178
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
10179
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
10180
+ }, "strip", z.ZodTypeAny, {
10181
+ openapi?: string | string[] | undefined;
10182
+ }, {
10183
+ openapi?: string | string[] | undefined;
10184
+ }>>, "many">;
9720
10185
  }, "strip", z.ZodTypeAny, {
9721
10186
  tabs: any[];
9722
10187
  }, {
@@ -9735,7 +10200,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9735
10200
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9736
10201
  }>]>>;
9737
10202
  hidden: z.ZodOptional<z.ZodBoolean>;
9738
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
9739
10203
  }, "strip", z.ZodTypeAny, {
9740
10204
  dropdown: string;
9741
10205
  icon?: string | {
@@ -9743,7 +10207,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9743
10207
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9744
10208
  } | undefined;
9745
10209
  hidden?: boolean | undefined;
9746
- openapi?: string | string[] | undefined;
9747
10210
  }, {
9748
10211
  dropdown: string;
9749
10212
  icon?: string | {
@@ -9751,14 +10214,52 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9751
10214
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
9752
10215
  } | undefined;
9753
10216
  hidden?: boolean | undefined;
9754
- openapi?: string | string[] | undefined;
9755
10217
  }>, z.ZodUnion<[z.ZodObject<{
9756
10218
  href: z.ZodString;
9757
10219
  }, "strip", z.ZodTypeAny, {
9758
10220
  href: string;
9759
10221
  }, {
9760
10222
  href: string;
9761
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
10223
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
10224
+ dropdown: z.ZodString;
10225
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
10226
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
10227
+ name: z.ZodEffects<z.ZodString, string, string>;
10228
+ }, "strip", z.ZodTypeAny, {
10229
+ name: string;
10230
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10231
+ }, {
10232
+ name: string;
10233
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10234
+ }>]>>;
10235
+ hidden: z.ZodOptional<z.ZodBoolean>;
10236
+ }, "strip", z.ZodTypeAny, {
10237
+ dropdown: string;
10238
+ icon?: string | {
10239
+ name: string;
10240
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10241
+ } | undefined;
10242
+ hidden?: boolean | undefined;
10243
+ }, {
10244
+ dropdown: string;
10245
+ icon?: string | {
10246
+ name: string;
10247
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10248
+ } | undefined;
10249
+ hidden?: boolean | undefined;
10250
+ }>, z.ZodUnion<[z.ZodObject<{
10251
+ href: z.ZodString;
10252
+ }, "strip", z.ZodTypeAny, {
10253
+ href: string;
10254
+ }, {
10255
+ href: string;
10256
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
10257
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
10258
+ }, "strip", z.ZodTypeAny, {
10259
+ openapi?: string | string[] | undefined;
10260
+ }, {
10261
+ openapi?: string | string[] | undefined;
10262
+ }>>, "many">;
9762
10263
  }, "strip", z.ZodTypeAny, {
9763
10264
  dropdowns: any[];
9764
10265
  }, {
@@ -9787,7 +10288,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9787
10288
  dark?: string | undefined;
9788
10289
  }>>;
9789
10290
  hidden: z.ZodOptional<z.ZodBoolean>;
9790
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
9791
10291
  }, "strip", z.ZodTypeAny, {
9792
10292
  anchor: string;
9793
10293
  icon?: string | {
@@ -9799,7 +10299,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9799
10299
  dark?: string | undefined;
9800
10300
  } | undefined;
9801
10301
  hidden?: boolean | undefined;
9802
- openapi?: string | string[] | undefined;
9803
10302
  }, {
9804
10303
  anchor: string;
9805
10304
  icon?: string | {
@@ -9811,14 +10310,70 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
9811
10310
  dark?: string | undefined;
9812
10311
  } | undefined;
9813
10312
  hidden?: boolean | undefined;
9814
- openapi?: string | string[] | undefined;
9815
10313
  }>, z.ZodUnion<[z.ZodObject<{
9816
10314
  href: z.ZodString;
9817
10315
  }, "strip", z.ZodTypeAny, {
9818
10316
  href: string;
9819
10317
  }, {
9820
10318
  href: string;
9821
- }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
10319
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>> | z.ZodIntersection<z.ZodIntersection<z.ZodObject<{
10320
+ anchor: z.ZodString;
10321
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
10322
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
10323
+ name: z.ZodEffects<z.ZodString, string, string>;
10324
+ }, "strip", z.ZodTypeAny, {
10325
+ name: string;
10326
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10327
+ }, {
10328
+ name: string;
10329
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10330
+ }>]>>;
10331
+ color: z.ZodOptional<z.ZodObject<{
10332
+ light: z.ZodOptional<z.ZodString>;
10333
+ dark: z.ZodOptional<z.ZodString>;
10334
+ }, "strict", z.ZodTypeAny, {
10335
+ light?: string | undefined;
10336
+ dark?: string | undefined;
10337
+ }, {
10338
+ light?: string | undefined;
10339
+ dark?: string | undefined;
10340
+ }>>;
10341
+ hidden: z.ZodOptional<z.ZodBoolean>;
10342
+ }, "strip", z.ZodTypeAny, {
10343
+ anchor: string;
10344
+ icon?: string | {
10345
+ name: string;
10346
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10347
+ } | undefined;
10348
+ color?: {
10349
+ light?: string | undefined;
10350
+ dark?: string | undefined;
10351
+ } | undefined;
10352
+ hidden?: boolean | undefined;
10353
+ }, {
10354
+ anchor: string;
10355
+ icon?: string | {
10356
+ name: string;
10357
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10358
+ } | undefined;
10359
+ color?: {
10360
+ light?: string | undefined;
10361
+ dark?: string | undefined;
10362
+ } | undefined;
10363
+ hidden?: boolean | undefined;
10364
+ }>, z.ZodUnion<[z.ZodObject<{
10365
+ href: z.ZodString;
10366
+ }, "strip", z.ZodTypeAny, {
10367
+ href: string;
10368
+ }, {
10369
+ href: string;
10370
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, z.ZodObject<{
10371
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
10372
+ }, "strip", z.ZodTypeAny, {
10373
+ openapi?: string | string[] | undefined;
10374
+ }, {
10375
+ openapi?: string | string[] | undefined;
10376
+ }>>, "many">;
9822
10377
  }, "strip", z.ZodTypeAny, {
9823
10378
  anchors: any[];
9824
10379
  }, {
@@ -10554,14 +11109,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10554
11109
  languages?: ({
10555
11110
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
10556
11111
  hidden?: boolean | undefined;
10557
- openapi?: string | string[] | undefined;
10558
11112
  } & {
10559
11113
  href: string;
10560
11114
  })[] | undefined;
10561
11115
  versions?: ({
10562
11116
  version: string;
10563
11117
  hidden?: boolean | undefined;
10564
- openapi?: string | string[] | undefined;
10565
11118
  } & {
10566
11119
  href: string;
10567
11120
  })[] | undefined;
@@ -10572,7 +11125,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10572
11125
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10573
11126
  } | undefined;
10574
11127
  hidden?: boolean | undefined;
10575
- openapi?: string | string[] | undefined;
10576
11128
  } & {
10577
11129
  href: string;
10578
11130
  })[] | undefined;
@@ -10583,7 +11135,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10583
11135
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10584
11136
  } | undefined;
10585
11137
  hidden?: boolean | undefined;
10586
- openapi?: string | string[] | undefined;
10587
11138
  } & {
10588
11139
  href: string;
10589
11140
  })[] | undefined;
@@ -10598,7 +11149,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10598
11149
  dark?: string | undefined;
10599
11150
  } | undefined;
10600
11151
  hidden?: boolean | undefined;
10601
- openapi?: string | string[] | undefined;
10602
11152
  } & {
10603
11153
  href: string;
10604
11154
  })[] | undefined;
@@ -10660,14 +11210,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10660
11210
  languages?: ({
10661
11211
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
10662
11212
  hidden?: boolean | undefined;
10663
- openapi?: string | string[] | undefined;
10664
11213
  } & {
10665
11214
  href: string;
10666
11215
  })[] | undefined;
10667
11216
  versions?: ({
10668
11217
  version: string;
10669
11218
  hidden?: boolean | undefined;
10670
- openapi?: string | string[] | undefined;
10671
11219
  } & {
10672
11220
  href: string;
10673
11221
  })[] | undefined;
@@ -10678,7 +11226,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10678
11226
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10679
11227
  } | undefined;
10680
11228
  hidden?: boolean | undefined;
10681
- openapi?: string | string[] | undefined;
10682
11229
  } & {
10683
11230
  href: string;
10684
11231
  })[] | undefined;
@@ -10689,7 +11236,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10689
11236
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10690
11237
  } | undefined;
10691
11238
  hidden?: boolean | undefined;
10692
- openapi?: string | string[] | undefined;
10693
11239
  } & {
10694
11240
  href: string;
10695
11241
  })[] | undefined;
@@ -10704,7 +11250,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10704
11250
  dark?: string | undefined;
10705
11251
  } | undefined;
10706
11252
  hidden?: boolean | undefined;
10707
- openapi?: string | string[] | undefined;
10708
11253
  } & {
10709
11254
  href: string;
10710
11255
  })[] | undefined;
@@ -10933,14 +11478,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10933
11478
  languages?: ({
10934
11479
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
10935
11480
  hidden?: boolean | undefined;
10936
- openapi?: string | string[] | undefined;
10937
11481
  } & {
10938
11482
  href: string;
10939
11483
  })[] | undefined;
10940
11484
  versions?: ({
10941
11485
  version: string;
10942
11486
  hidden?: boolean | undefined;
10943
- openapi?: string | string[] | undefined;
10944
11487
  } & {
10945
11488
  href: string;
10946
11489
  })[] | undefined;
@@ -10951,7 +11494,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10951
11494
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10952
11495
  } | undefined;
10953
11496
  hidden?: boolean | undefined;
10954
- openapi?: string | string[] | undefined;
10955
11497
  } & {
10956
11498
  href: string;
10957
11499
  })[] | undefined;
@@ -10962,7 +11504,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10962
11504
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
10963
11505
  } | undefined;
10964
11506
  hidden?: boolean | undefined;
10965
- openapi?: string | string[] | undefined;
10966
11507
  } & {
10967
11508
  href: string;
10968
11509
  })[] | undefined;
@@ -10977,7 +11518,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
10977
11518
  dark?: string | undefined;
10978
11519
  } | undefined;
10979
11520
  hidden?: boolean | undefined;
10980
- openapi?: string | string[] | undefined;
10981
11521
  } & {
10982
11522
  href: string;
10983
11523
  })[] | undefined;
@@ -11039,14 +11579,12 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11039
11579
  languages?: ({
11040
11580
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
11041
11581
  hidden?: boolean | undefined;
11042
- openapi?: string | string[] | undefined;
11043
11582
  } & {
11044
11583
  href: string;
11045
11584
  })[] | undefined;
11046
11585
  versions?: ({
11047
11586
  version: string;
11048
11587
  hidden?: boolean | undefined;
11049
- openapi?: string | string[] | undefined;
11050
11588
  } & {
11051
11589
  href: string;
11052
11590
  })[] | undefined;
@@ -11057,7 +11595,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11057
11595
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11058
11596
  } | undefined;
11059
11597
  hidden?: boolean | undefined;
11060
- openapi?: string | string[] | undefined;
11061
11598
  } & {
11062
11599
  href: string;
11063
11600
  })[] | undefined;
@@ -11068,7 +11605,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11068
11605
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
11069
11606
  } | undefined;
11070
11607
  hidden?: boolean | undefined;
11071
- openapi?: string | string[] | undefined;
11072
11608
  } & {
11073
11609
  href: string;
11074
11610
  })[] | undefined;
@@ -11083,7 +11619,6 @@ export declare const docsConfigSchema: z.ZodDiscriminatedUnion<"theme", [z.ZodOb
11083
11619
  dark?: string | undefined;
11084
11620
  } | undefined;
11085
11621
  hidden?: boolean | undefined;
11086
- openapi?: string | string[] | undefined;
11087
11622
  } & {
11088
11623
  href: string;
11089
11624
  })[] | undefined;