@mintlify/validation 0.1.245 → 0.1.247

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 (57) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +5235 -2167
  2. package/dist/mint-config/schemas/v2/index.js +8 -6
  3. package/dist/mint-config/schemas/v2/properties/api.d.ts +14 -11
  4. package/dist/mint-config/schemas/v2/properties/api.js +5 -5
  5. package/dist/mint-config/schemas/v2/properties/appearance.d.ts +4 -4
  6. package/dist/mint-config/schemas/v2/properties/appearance.js +6 -3
  7. package/dist/mint-config/schemas/v2/properties/icons.d.ts +2 -2
  8. package/dist/mint-config/schemas/v2/properties/icons.js +3 -1
  9. package/dist/mint-config/schemas/v2/properties/index.d.ts +9 -0
  10. package/dist/mint-config/schemas/v2/properties/index.js +9 -0
  11. package/dist/mint-config/schemas/v2/properties/navigation/anchors.d.ts +225 -2
  12. package/dist/mint-config/schemas/v2/properties/navigation/anchors.js +10 -16
  13. package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.d.ts +7 -0
  14. package/dist/mint-config/schemas/v2/properties/navigation/divisionSchemas.js +26 -0
  15. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.d.ts +155 -2
  16. package/dist/mint-config/schemas/v2/properties/navigation/dropdown.js +10 -16
  17. package/dist/mint-config/schemas/v2/properties/navigation/global.d.ts +25 -0
  18. package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +638 -6
  19. package/dist/mint-config/schemas/v2/properties/navigation/groups.js +15 -7
  20. package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +1338 -295
  21. package/dist/mint-config/schemas/v2/properties/navigation/index.js +20 -18
  22. package/dist/mint-config/schemas/v2/properties/navigation/languages.d.ts +47 -214
  23. package/dist/mint-config/schemas/v2/properties/navigation/languages.js +10 -18
  24. package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +4 -0
  25. package/dist/mint-config/schemas/v2/properties/navigation/pages.js +6 -2
  26. package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +153 -2
  27. package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +8 -16
  28. package/dist/mint-config/schemas/v2/properties/navigation/version.d.ts +81 -2
  29. package/dist/mint-config/schemas/v2/properties/navigation/version.js +10 -16
  30. package/dist/mint-config/schemas/v2/properties/reusable/divisions.d.ts +2 -0
  31. package/dist/mint-config/schemas/v2/properties/reusable/divisions.js +1 -0
  32. package/dist/mint-config/schemas/v2/properties/reusable/index.d.ts +4 -0
  33. package/dist/mint-config/schemas/v2/properties/reusable/index.js +4 -0
  34. package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +86 -0
  35. package/dist/mint-config/schemas/v2/properties/reusable/page.js +27 -0
  36. package/dist/mint-config/schemas/v2/properties/seo.d.ts +2 -2
  37. package/dist/mint-config/schemas/v2/properties/seo.js +1 -2
  38. package/dist/mint-config/schemas/v2/properties/styling.d.ts +6 -6
  39. package/dist/mint-config/schemas/v2/properties/styling.js +3 -6
  40. package/dist/mint-config/schemas/v2/themes/{quill.d.ts → linden.d.ts} +745 -543
  41. package/dist/mint-config/schemas/v2/themes/linden.js +3 -0
  42. package/dist/mint-config/schemas/v2/themes/{venus.d.ts → maple.d.ts} +745 -543
  43. package/dist/mint-config/schemas/v2/themes/maple.js +3 -0
  44. package/dist/mint-config/schemas/v2/themes/mint.d.ts +741 -539
  45. package/dist/mint-config/schemas/v2/themes/{prism.d.ts → palm.d.ts} +745 -543
  46. package/dist/mint-config/schemas/v2/themes/palm.js +3 -0
  47. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +523 -321
  48. package/dist/mint-config/schemas/v2/themes/reusable/index.js +0 -2
  49. package/dist/mint-config/schemas/v2/themes/willow.d.ts +2262 -0
  50. package/dist/mint-config/schemas/v2/themes/willow.js +3 -0
  51. package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +2 -5
  52. package/dist/mint-config/upgrades/upgradeToDocsConfig.js +72 -45
  53. package/dist/tsconfig.build.tsbuildinfo +1 -1
  54. package/package.json +2 -2
  55. package/dist/mint-config/schemas/v2/themes/prism.js +0 -3
  56. package/dist/mint-config/schemas/v2/themes/quill.js +0 -3
  57. package/dist/mint-config/schemas/v2/themes/venus.js +0 -3
@@ -1,5 +1,5 @@
1
1
  import { z } from 'zod';
2
- export declare const quillConfigSchema: z.ZodObject<{
2
+ export declare const lindenConfigSchema: z.ZodObject<{
3
3
  $schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4
4
  name: z.ZodString;
5
5
  description: z.ZodOptional<z.ZodString>;
@@ -39,14 +39,14 @@ export declare const quillConfigSchema: z.ZodObject<{
39
39
  light: string;
40
40
  dark: string;
41
41
  }>]>>;
42
- openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
43
42
  api: z.ZodOptional<z.ZodObject<{
43
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
44
44
  playground: z.ZodOptional<z.ZodObject<{
45
- display: z.ZodDefault<z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>>;
46
- proxy: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
45
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
46
+ proxy: z.ZodOptional<z.ZodBoolean>;
47
47
  }, "strip", z.ZodTypeAny, {
48
- display: "simple" | "none" | "interactive";
49
- proxy: boolean;
48
+ display?: "simple" | "none" | "interactive" | undefined;
49
+ proxy?: boolean | undefined;
50
50
  }, {
51
51
  display?: "simple" | "none" | "interactive" | undefined;
52
52
  proxy?: boolean | undefined;
@@ -60,27 +60,29 @@ export declare const quillConfigSchema: z.ZodObject<{
60
60
  }>>;
61
61
  mdx: z.ZodOptional<z.ZodObject<{
62
62
  auth: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
63
- base: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
63
+ server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
64
64
  }, "strip", z.ZodTypeAny, {
65
65
  auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
66
- base?: string | string[] | undefined;
66
+ server?: string | string[] | undefined;
67
67
  }, {
68
68
  auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
69
- base?: string | string[] | undefined;
69
+ server?: string | string[] | undefined;
70
70
  }>>;
71
71
  }, "strip", z.ZodTypeAny, {
72
+ openapi?: string | string[] | undefined;
72
73
  playground?: {
73
- display: "simple" | "none" | "interactive";
74
- proxy: boolean;
74
+ display?: "simple" | "none" | "interactive" | undefined;
75
+ proxy?: boolean | undefined;
75
76
  } | undefined;
76
77
  examples?: {
77
78
  languages?: string[] | undefined;
78
79
  } | undefined;
79
80
  mdx?: {
80
81
  auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
81
- base?: string | string[] | undefined;
82
+ server?: string | string[] | undefined;
82
83
  } | undefined;
83
84
  }, {
85
+ openapi?: string | string[] | undefined;
84
86
  playground?: {
85
87
  display?: "simple" | "none" | "interactive" | undefined;
86
88
  proxy?: boolean | undefined;
@@ -90,15 +92,15 @@ export declare const quillConfigSchema: z.ZodObject<{
90
92
  } | undefined;
91
93
  mdx?: {
92
94
  auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
93
- base?: string | string[] | undefined;
95
+ server?: string | string[] | undefined;
94
96
  } | undefined;
95
97
  }>>;
96
98
  appearance: z.ZodOptional<z.ZodObject<{
97
- default: z.ZodDefault<z.ZodEnum<["system", "light", "dark"]>>;
98
- strict: z.ZodDefault<z.ZodBoolean>;
99
+ default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
100
+ strict: z.ZodOptional<z.ZodBoolean>;
99
101
  }, "strip", z.ZodTypeAny, {
100
- strict: boolean;
101
- default: "light" | "dark" | "system";
102
+ default?: "light" | "dark" | "system" | undefined;
103
+ strict?: boolean | undefined;
102
104
  }, {
103
105
  default?: "light" | "dark" | "system" | undefined;
104
106
  strict?: boolean | undefined;
@@ -206,310 +208,20 @@ export declare const quillConfigSchema: z.ZodObject<{
206
208
  href: string;
207
209
  } | undefined;
208
210
  }>>;
209
- navigation: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
210
- languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
211
- language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
212
- hidden: z.ZodOptional<z.ZodBoolean>;
213
- }, "strip", z.ZodTypeAny, {
214
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
215
- hidden?: boolean | undefined;
216
- }, {
217
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
218
- hidden?: boolean | undefined;
219
- }>, z.ZodUnion<[z.ZodObject<{
220
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
221
- }, "strip", z.ZodTypeAny, {
222
- openapi: (string | string[]) & (string | string[] | undefined);
223
- }, {
224
- openapi: (string | string[]) & (string | string[] | undefined);
225
- }>, z.ZodObject<{
226
- href: z.ZodString;
227
- }, "strip", z.ZodTypeAny, {
228
- href: string;
229
- }, {
230
- href: string;
231
- }>, z.ZodLazy<z.ZodObject<{
232
- versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
233
- }, "strip", z.ZodTypeAny, {
234
- versions: any[];
235
- }, {
236
- versions: any[];
237
- }>>, z.ZodLazy<z.ZodObject<{
238
- tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
239
- }, "strip", z.ZodTypeAny, {
240
- tabs: any[];
241
- }, {
242
- tabs: any[];
243
- }>>, z.ZodLazy<z.ZodObject<{
244
- dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
245
- }, "strip", z.ZodTypeAny, {
246
- dropdowns: any[];
247
- }, {
248
- dropdowns: any[];
249
- }>>, z.ZodLazy<z.ZodObject<{
250
- anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
251
- }, "strip", z.ZodTypeAny, {
252
- anchors: any[];
253
- }, {
254
- anchors: any[];
255
- }>>, z.ZodLazy<z.ZodObject<{
256
- groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
257
- group: z.ZodString;
258
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
259
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
260
- name: z.ZodEffects<z.ZodString, string, string>;
261
- }, "strip", z.ZodTypeAny, {
262
- name: string;
263
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
264
- }, {
265
- name: string;
266
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
267
- }>]>>;
268
- hidden: z.ZodOptional<z.ZodBoolean>;
269
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
270
- }, "strip", z.ZodTypeAny, {
271
- group: string;
272
- icon?: string | {
273
- name: string;
274
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
275
- } | undefined;
276
- hidden?: boolean | undefined;
277
- root?: string | undefined;
278
- }, {
279
- group: string;
280
- icon?: string | {
281
- name: string;
282
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
283
- } | undefined;
284
- hidden?: boolean | undefined;
285
- root?: string | undefined;
286
- }>, z.ZodUnion<[z.ZodObject<{
287
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
288
- }, "strip", z.ZodTypeAny, {
289
- openapi: (string | string[]) & (string | string[] | undefined);
290
- }, {
291
- openapi: (string | string[]) & (string | string[] | undefined);
292
- }>, z.ZodLazy<z.ZodObject<{
293
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
294
- }, "strip", z.ZodTypeAny, {
295
- pages: any[];
296
- }, {
297
- pages: any[];
298
- }>>]>>, "many">;
299
- }, "strip", z.ZodTypeAny, {
300
- groups: ({
301
- group: string;
302
- icon?: string | {
303
- name: string;
304
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
305
- } | undefined;
306
- hidden?: boolean | undefined;
307
- root?: string | undefined;
308
- } & ({
309
- openapi: (string | string[]) & (string | string[] | undefined);
310
- } | {
311
- pages: any[];
312
- }))[];
313
- }, {
314
- groups: ({
315
- group: string;
316
- icon?: string | {
317
- name: string;
318
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
319
- } | undefined;
320
- hidden?: boolean | undefined;
321
- root?: string | undefined;
322
- } & ({
323
- openapi: (string | string[]) & (string | string[] | undefined);
324
- } | {
325
- pages: any[];
326
- }))[];
327
- }>>, z.ZodLazy<z.ZodObject<{
328
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
329
- }, "strip", z.ZodTypeAny, {
330
- pages: any[];
331
- }, {
332
- pages: any[];
333
- }>>]>>, "many">;
334
- }, "strip", z.ZodTypeAny, {
335
- languages: ({
336
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
337
- hidden?: boolean | undefined;
338
- } & ({
339
- openapi: (string | string[]) & (string | string[] | undefined);
340
- } | {
341
- href: string;
342
- } | {
343
- versions: any[];
344
- } | {
345
- tabs: any[];
346
- } | {
347
- dropdowns: any[];
348
- } | {
349
- anchors: any[];
350
- } | {
351
- groups: ({
352
- group: string;
353
- icon?: string | {
354
- name: string;
355
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
356
- } | undefined;
357
- hidden?: boolean | undefined;
358
- root?: string | undefined;
359
- } & ({
360
- openapi: (string | string[]) & (string | string[] | undefined);
361
- } | {
362
- pages: any[];
363
- }))[];
364
- } | {
365
- pages: any[];
366
- }))[];
367
- }, {
368
- languages: ({
369
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
370
- hidden?: boolean | undefined;
371
- } & ({
372
- openapi: (string | string[]) & (string | string[] | undefined);
373
- } | {
374
- href: string;
375
- } | {
376
- versions: any[];
377
- } | {
378
- tabs: any[];
379
- } | {
380
- dropdowns: any[];
381
- } | {
382
- anchors: any[];
383
- } | {
384
- groups: ({
385
- group: string;
386
- icon?: string | {
387
- name: string;
388
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
389
- } | undefined;
390
- hidden?: boolean | undefined;
391
- root?: string | undefined;
392
- } & ({
393
- openapi: (string | string[]) & (string | string[] | undefined);
394
- } | {
395
- pages: any[];
396
- }))[];
397
- } | {
398
- pages: any[];
399
- }))[];
400
- }>, z.ZodObject<{
401
- versions: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
402
- }, "strip", z.ZodTypeAny, {
403
- versions: any[];
404
- }, {
405
- versions: any[];
406
- }>, z.ZodObject<{
407
- tabs: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
408
- }, "strip", z.ZodTypeAny, {
409
- tabs: any[];
410
- }, {
411
- tabs: any[];
412
- }>, z.ZodObject<{
413
- dropdowns: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
414
- }, "strip", z.ZodTypeAny, {
415
- dropdowns: any[];
416
- }, {
417
- dropdowns: any[];
418
- }>, z.ZodObject<{
419
- anchors: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
420
- }, "strip", z.ZodTypeAny, {
421
- anchors: any[];
422
- }, {
423
- anchors: any[];
424
- }>, z.ZodObject<{
425
- groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
426
- group: z.ZodString;
427
- icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
428
- style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
429
- name: z.ZodEffects<z.ZodString, string, string>;
430
- }, "strip", z.ZodTypeAny, {
431
- name: string;
432
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
433
- }, {
434
- name: string;
435
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
436
- }>]>>;
437
- hidden: z.ZodOptional<z.ZodBoolean>;
438
- root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
439
- }, "strip", z.ZodTypeAny, {
440
- group: string;
441
- icon?: string | {
442
- name: string;
443
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
444
- } | undefined;
445
- hidden?: boolean | undefined;
446
- root?: string | undefined;
447
- }, {
448
- group: string;
449
- icon?: string | {
450
- name: string;
451
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
452
- } | undefined;
453
- hidden?: boolean | undefined;
454
- root?: string | undefined;
455
- }>, z.ZodUnion<[z.ZodObject<{
456
- openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
457
- }, "strip", z.ZodTypeAny, {
458
- openapi: (string | string[]) & (string | string[] | undefined);
459
- }, {
460
- openapi: (string | string[]) & (string | string[] | undefined);
461
- }>, z.ZodLazy<z.ZodObject<{
462
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
463
- }, "strip", z.ZodTypeAny, {
464
- pages: any[];
465
- }, {
466
- pages: any[];
467
- }>>]>>, "many">;
468
- }, "strip", z.ZodTypeAny, {
469
- groups: ({
470
- group: string;
471
- icon?: string | {
472
- name: string;
473
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
474
- } | undefined;
475
- hidden?: boolean | undefined;
476
- root?: string | undefined;
477
- } & ({
478
- openapi: (string | string[]) & (string | string[] | undefined);
479
- } | {
480
- pages: any[];
481
- }))[];
482
- }, {
483
- groups: ({
484
- group: string;
485
- icon?: string | {
486
- name: string;
487
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
488
- } | undefined;
489
- hidden?: boolean | undefined;
490
- root?: string | undefined;
491
- } & ({
492
- openapi: (string | string[]) & (string | string[] | undefined);
493
- } | {
494
- pages: any[];
495
- }))[];
496
- }>, z.ZodObject<{
497
- pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
498
- }, "strip", z.ZodTypeAny, {
499
- pages: any[];
500
- }, {
501
- pages: any[];
502
- }>]>, z.ZodObject<{
211
+ navigation: z.ZodIntersection<z.ZodObject<{
503
212
  global: z.ZodOptional<z.ZodObject<{
504
213
  languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
505
214
  language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
506
215
  hidden: z.ZodOptional<z.ZodBoolean>;
216
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
507
217
  }, "strip", z.ZodTypeAny, {
508
218
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
509
219
  hidden?: boolean | undefined;
220
+ openapi?: string | string[] | undefined;
510
221
  }, {
511
222
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
512
223
  hidden?: boolean | undefined;
224
+ openapi?: string | string[] | undefined;
513
225
  }>, z.ZodObject<{
514
226
  href: z.ZodString;
515
227
  }, "strip", z.ZodTypeAny, {
@@ -520,12 +232,15 @@ export declare const quillConfigSchema: z.ZodObject<{
520
232
  versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
521
233
  version: z.ZodString;
522
234
  hidden: z.ZodOptional<z.ZodBoolean>;
235
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
523
236
  }, "strip", z.ZodTypeAny, {
524
237
  version: string;
525
238
  hidden?: boolean | undefined;
239
+ openapi?: string | string[] | undefined;
526
240
  }, {
527
241
  version: string;
528
242
  hidden?: boolean | undefined;
243
+ openapi?: string | string[] | undefined;
529
244
  }>, z.ZodObject<{
530
245
  href: z.ZodString;
531
246
  }, "strip", z.ZodTypeAny, {
@@ -546,6 +261,7 @@ export declare const quillConfigSchema: z.ZodObject<{
546
261
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
547
262
  }>]>>;
548
263
  hidden: z.ZodOptional<z.ZodBoolean>;
264
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
549
265
  }, "strip", z.ZodTypeAny, {
550
266
  tab: string;
551
267
  icon?: string | {
@@ -553,6 +269,7 @@ export declare const quillConfigSchema: z.ZodObject<{
553
269
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
554
270
  } | undefined;
555
271
  hidden?: boolean | undefined;
272
+ openapi?: string | string[] | undefined;
556
273
  }, {
557
274
  tab: string;
558
275
  icon?: string | {
@@ -560,6 +277,7 @@ export declare const quillConfigSchema: z.ZodObject<{
560
277
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
561
278
  } | undefined;
562
279
  hidden?: boolean | undefined;
280
+ openapi?: string | string[] | undefined;
563
281
  }>, z.ZodObject<{
564
282
  href: z.ZodString;
565
283
  }, "strip", z.ZodTypeAny, {
@@ -580,6 +298,7 @@ export declare const quillConfigSchema: z.ZodObject<{
580
298
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
581
299
  }>]>>;
582
300
  hidden: z.ZodOptional<z.ZodBoolean>;
301
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
583
302
  }, "strip", z.ZodTypeAny, {
584
303
  dropdown: string;
585
304
  icon?: string | {
@@ -587,6 +306,7 @@ export declare const quillConfigSchema: z.ZodObject<{
587
306
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
588
307
  } | undefined;
589
308
  hidden?: boolean | undefined;
309
+ openapi?: string | string[] | undefined;
590
310
  }, {
591
311
  dropdown: string;
592
312
  icon?: string | {
@@ -594,6 +314,7 @@ export declare const quillConfigSchema: z.ZodObject<{
594
314
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
595
315
  } | undefined;
596
316
  hidden?: boolean | undefined;
317
+ openapi?: string | string[] | undefined;
597
318
  }>, z.ZodObject<{
598
319
  href: z.ZodString;
599
320
  }, "strip", z.ZodTypeAny, {
@@ -624,6 +345,7 @@ export declare const quillConfigSchema: z.ZodObject<{
624
345
  dark?: string | undefined;
625
346
  }>>;
626
347
  hidden: z.ZodOptional<z.ZodBoolean>;
348
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
627
349
  }, "strip", z.ZodTypeAny, {
628
350
  anchor: string;
629
351
  icon?: string | {
@@ -635,6 +357,7 @@ export declare const quillConfigSchema: z.ZodObject<{
635
357
  dark?: string | undefined;
636
358
  } | undefined;
637
359
  hidden?: boolean | undefined;
360
+ openapi?: string | string[] | undefined;
638
361
  }, {
639
362
  anchor: string;
640
363
  icon?: string | {
@@ -646,6 +369,7 @@ export declare const quillConfigSchema: z.ZodObject<{
646
369
  dark?: string | undefined;
647
370
  } | undefined;
648
371
  hidden?: boolean | undefined;
372
+ openapi?: string | string[] | undefined;
649
373
  }>, z.ZodObject<{
650
374
  href: z.ZodString;
651
375
  }, "strip", z.ZodTypeAny, {
@@ -657,12 +381,14 @@ export declare const quillConfigSchema: z.ZodObject<{
657
381
  languages?: ({
658
382
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
659
383
  hidden?: boolean | undefined;
384
+ openapi?: string | string[] | undefined;
660
385
  } & {
661
386
  href: string;
662
387
  })[] | undefined;
663
388
  versions?: ({
664
389
  version: string;
665
390
  hidden?: boolean | undefined;
391
+ openapi?: string | string[] | undefined;
666
392
  } & {
667
393
  href: string;
668
394
  })[] | undefined;
@@ -673,6 +399,7 @@ export declare const quillConfigSchema: z.ZodObject<{
673
399
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
674
400
  } | undefined;
675
401
  hidden?: boolean | undefined;
402
+ openapi?: string | string[] | undefined;
676
403
  } & {
677
404
  href: string;
678
405
  })[] | undefined;
@@ -683,6 +410,7 @@ export declare const quillConfigSchema: z.ZodObject<{
683
410
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
684
411
  } | undefined;
685
412
  hidden?: boolean | undefined;
413
+ openapi?: string | string[] | undefined;
686
414
  } & {
687
415
  href: string;
688
416
  })[] | undefined;
@@ -697,6 +425,7 @@ export declare const quillConfigSchema: z.ZodObject<{
697
425
  dark?: string | undefined;
698
426
  } | undefined;
699
427
  hidden?: boolean | undefined;
428
+ openapi?: string | string[] | undefined;
700
429
  } & {
701
430
  href: string;
702
431
  })[] | undefined;
@@ -704,12 +433,14 @@ export declare const quillConfigSchema: z.ZodObject<{
704
433
  languages?: ({
705
434
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
706
435
  hidden?: boolean | undefined;
436
+ openapi?: string | string[] | undefined;
707
437
  } & {
708
438
  href: string;
709
439
  })[] | undefined;
710
440
  versions?: ({
711
441
  version: string;
712
442
  hidden?: boolean | undefined;
443
+ openapi?: string | string[] | undefined;
713
444
  } & {
714
445
  href: string;
715
446
  })[] | undefined;
@@ -720,6 +451,7 @@ export declare const quillConfigSchema: z.ZodObject<{
720
451
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
721
452
  } | undefined;
722
453
  hidden?: boolean | undefined;
454
+ openapi?: string | string[] | undefined;
723
455
  } & {
724
456
  href: string;
725
457
  })[] | undefined;
@@ -730,6 +462,7 @@ export declare const quillConfigSchema: z.ZodObject<{
730
462
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
731
463
  } | undefined;
732
464
  hidden?: boolean | undefined;
465
+ openapi?: string | string[] | undefined;
733
466
  } & {
734
467
  href: string;
735
468
  })[] | undefined;
@@ -744,6 +477,7 @@ export declare const quillConfigSchema: z.ZodObject<{
744
477
  dark?: string | undefined;
745
478
  } | undefined;
746
479
  hidden?: boolean | undefined;
480
+ openapi?: string | string[] | undefined;
747
481
  } & {
748
482
  href: string;
749
483
  })[] | undefined;
@@ -753,12 +487,14 @@ export declare const quillConfigSchema: z.ZodObject<{
753
487
  languages?: ({
754
488
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
755
489
  hidden?: boolean | undefined;
490
+ openapi?: string | string[] | undefined;
756
491
  } & {
757
492
  href: string;
758
493
  })[] | undefined;
759
494
  versions?: ({
760
495
  version: string;
761
496
  hidden?: boolean | undefined;
497
+ openapi?: string | string[] | undefined;
762
498
  } & {
763
499
  href: string;
764
500
  })[] | undefined;
@@ -769,6 +505,7 @@ export declare const quillConfigSchema: z.ZodObject<{
769
505
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
770
506
  } | undefined;
771
507
  hidden?: boolean | undefined;
508
+ openapi?: string | string[] | undefined;
772
509
  } & {
773
510
  href: string;
774
511
  })[] | undefined;
@@ -779,6 +516,7 @@ export declare const quillConfigSchema: z.ZodObject<{
779
516
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
780
517
  } | undefined;
781
518
  hidden?: boolean | undefined;
519
+ openapi?: string | string[] | undefined;
782
520
  } & {
783
521
  href: string;
784
522
  })[] | undefined;
@@ -793,6 +531,7 @@ export declare const quillConfigSchema: z.ZodObject<{
793
531
  dark?: string | undefined;
794
532
  } | undefined;
795
533
  hidden?: boolean | undefined;
534
+ openapi?: string | string[] | undefined;
796
535
  } & {
797
536
  href: string;
798
537
  })[] | undefined;
@@ -802,12 +541,14 @@ export declare const quillConfigSchema: z.ZodObject<{
802
541
  languages?: ({
803
542
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
804
543
  hidden?: boolean | undefined;
544
+ openapi?: string | string[] | undefined;
805
545
  } & {
806
546
  href: string;
807
547
  })[] | undefined;
808
548
  versions?: ({
809
549
  version: string;
810
550
  hidden?: boolean | undefined;
551
+ openapi?: string | string[] | undefined;
811
552
  } & {
812
553
  href: string;
813
554
  })[] | undefined;
@@ -818,35 +559,496 @@ export declare const quillConfigSchema: z.ZodObject<{
818
559
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
819
560
  } | undefined;
820
561
  hidden?: boolean | undefined;
562
+ openapi?: string | string[] | undefined;
563
+ } & {
564
+ href: string;
565
+ })[] | undefined;
566
+ dropdowns?: ({
567
+ dropdown: string;
568
+ icon?: string | {
569
+ name: string;
570
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
571
+ } | undefined;
572
+ hidden?: boolean | undefined;
573
+ openapi?: string | string[] | undefined;
574
+ } & {
575
+ href: string;
576
+ })[] | undefined;
577
+ anchors?: ({
578
+ anchor: string;
579
+ icon?: string | {
580
+ name: string;
581
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
582
+ } | undefined;
583
+ color?: {
584
+ light?: string | undefined;
585
+ dark?: string | undefined;
586
+ } | undefined;
587
+ hidden?: boolean | undefined;
588
+ openapi?: string | string[] | undefined;
821
589
  } & {
822
590
  href: string;
823
- })[] | undefined;
824
- dropdowns?: ({
825
- dropdown: string;
591
+ })[] | undefined;
592
+ } | undefined;
593
+ }>, z.ZodUnion<[z.ZodObject<{
594
+ languages: z.ZodArray<z.ZodIntersection<z.ZodObject<{
595
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
596
+ hidden: z.ZodOptional<z.ZodBoolean>;
597
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
598
+ }, "strip", z.ZodTypeAny, {
599
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
600
+ hidden?: boolean | undefined;
601
+ openapi?: string | string[] | undefined;
602
+ }, {
603
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
604
+ hidden?: boolean | undefined;
605
+ openapi?: string | string[] | undefined;
606
+ }>, z.ZodUnion<[z.ZodObject<{
607
+ href: z.ZodString;
608
+ }, "strip", z.ZodTypeAny, {
609
+ href: string;
610
+ }, {
611
+ href: string;
612
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
613
+ }, "strip", z.ZodTypeAny, {
614
+ languages: any[];
615
+ }, {
616
+ languages: any[];
617
+ }>, z.ZodObject<{
618
+ versions: z.ZodArray<z.ZodIntersection<z.ZodObject<{
619
+ version: z.ZodString;
620
+ hidden: z.ZodOptional<z.ZodBoolean>;
621
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
622
+ }, "strip", z.ZodTypeAny, {
623
+ version: string;
624
+ hidden?: boolean | undefined;
625
+ openapi?: string | string[] | undefined;
626
+ }, {
627
+ version: string;
628
+ hidden?: boolean | undefined;
629
+ openapi?: string | string[] | undefined;
630
+ }>, z.ZodUnion<[z.ZodObject<{
631
+ href: z.ZodString;
632
+ }, "strip", z.ZodTypeAny, {
633
+ href: string;
634
+ }, {
635
+ href: string;
636
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
637
+ }, "strip", z.ZodTypeAny, {
638
+ versions: any[];
639
+ }, {
640
+ versions: any[];
641
+ }>, z.ZodObject<{
642
+ tabs: z.ZodArray<z.ZodIntersection<z.ZodObject<{
643
+ tab: z.ZodString;
644
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
645
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
646
+ name: z.ZodEffects<z.ZodString, string, string>;
647
+ }, "strip", z.ZodTypeAny, {
648
+ name: string;
649
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
650
+ }, {
651
+ name: string;
652
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
653
+ }>]>>;
654
+ hidden: z.ZodOptional<z.ZodBoolean>;
655
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
656
+ }, "strip", z.ZodTypeAny, {
657
+ tab: string;
658
+ icon?: string | {
659
+ name: string;
660
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
661
+ } | undefined;
662
+ hidden?: boolean | undefined;
663
+ openapi?: string | string[] | undefined;
664
+ }, {
665
+ tab: string;
666
+ icon?: string | {
667
+ name: string;
668
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
669
+ } | undefined;
670
+ hidden?: boolean | undefined;
671
+ openapi?: string | string[] | undefined;
672
+ }>, z.ZodUnion<[z.ZodObject<{
673
+ href: z.ZodString;
674
+ }, "strip", z.ZodTypeAny, {
675
+ href: string;
676
+ }, {
677
+ href: string;
678
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
679
+ }, "strip", z.ZodTypeAny, {
680
+ tabs: any[];
681
+ }, {
682
+ tabs: any[];
683
+ }>, z.ZodObject<{
684
+ dropdowns: z.ZodArray<z.ZodIntersection<z.ZodObject<{
685
+ dropdown: z.ZodString;
686
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
687
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
688
+ name: z.ZodEffects<z.ZodString, string, string>;
689
+ }, "strip", z.ZodTypeAny, {
690
+ name: string;
691
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
692
+ }, {
693
+ name: string;
694
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
695
+ }>]>>;
696
+ hidden: z.ZodOptional<z.ZodBoolean>;
697
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
698
+ }, "strip", z.ZodTypeAny, {
699
+ dropdown: string;
700
+ icon?: string | {
701
+ name: string;
702
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
703
+ } | undefined;
704
+ hidden?: boolean | undefined;
705
+ openapi?: string | string[] | undefined;
706
+ }, {
707
+ dropdown: string;
708
+ icon?: string | {
709
+ name: string;
710
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
711
+ } | undefined;
712
+ hidden?: boolean | undefined;
713
+ openapi?: string | string[] | undefined;
714
+ }>, z.ZodUnion<[z.ZodObject<{
715
+ href: z.ZodString;
716
+ }, "strip", z.ZodTypeAny, {
717
+ href: string;
718
+ }, {
719
+ href: string;
720
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
721
+ }, "strip", z.ZodTypeAny, {
722
+ dropdowns: any[];
723
+ }, {
724
+ dropdowns: any[];
725
+ }>, z.ZodObject<{
726
+ anchors: z.ZodArray<z.ZodIntersection<z.ZodObject<{
727
+ anchor: z.ZodString;
728
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
729
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
730
+ name: z.ZodEffects<z.ZodString, string, string>;
731
+ }, "strip", z.ZodTypeAny, {
732
+ name: string;
733
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
734
+ }, {
735
+ name: string;
736
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
737
+ }>]>>;
738
+ color: z.ZodOptional<z.ZodObject<{
739
+ light: z.ZodOptional<z.ZodString>;
740
+ dark: z.ZodOptional<z.ZodString>;
741
+ }, "strict", z.ZodTypeAny, {
742
+ light?: string | undefined;
743
+ dark?: string | undefined;
744
+ }, {
745
+ light?: string | undefined;
746
+ dark?: string | undefined;
747
+ }>>;
748
+ hidden: z.ZodOptional<z.ZodBoolean>;
749
+ openapi: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>>;
750
+ }, "strip", z.ZodTypeAny, {
751
+ anchor: string;
752
+ icon?: string | {
753
+ name: string;
754
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
755
+ } | undefined;
756
+ color?: {
757
+ light?: string | undefined;
758
+ dark?: string | undefined;
759
+ } | undefined;
760
+ hidden?: boolean | undefined;
761
+ openapi?: string | string[] | undefined;
762
+ }, {
763
+ anchor: string;
764
+ icon?: string | {
765
+ name: string;
766
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
767
+ } | undefined;
768
+ color?: {
769
+ light?: string | undefined;
770
+ dark?: string | undefined;
771
+ } | undefined;
772
+ hidden?: boolean | undefined;
773
+ openapi?: string | string[] | undefined;
774
+ }>, z.ZodUnion<[z.ZodObject<{
775
+ href: z.ZodString;
776
+ }, "strip", z.ZodTypeAny, {
777
+ href: string;
778
+ }, {
779
+ href: string;
780
+ }>, z.ZodType<any, z.ZodTypeDef, any>, z.ZodType<any, z.ZodTypeDef, any>, ...z.ZodType<any, z.ZodTypeDef, any>[]]>>, "many">;
781
+ }, "strip", z.ZodTypeAny, {
782
+ anchors: any[];
783
+ }, {
784
+ anchors: any[];
785
+ }>, z.ZodObject<{
786
+ groups: z.ZodArray<z.ZodIntersection<z.ZodObject<{
787
+ group: z.ZodString;
788
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
789
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
790
+ name: z.ZodEffects<z.ZodString, string, string>;
791
+ }, "strip", z.ZodTypeAny, {
792
+ name: string;
793
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
794
+ }, {
795
+ name: string;
796
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
797
+ }>]>>;
798
+ hidden: z.ZodOptional<z.ZodBoolean>;
799
+ root: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>> | z.ZodOptional<z.ZodObject<{
800
+ href: z.ZodString;
801
+ title: z.ZodString;
802
+ sidebarTitle: z.ZodOptional<z.ZodString>;
803
+ description: z.ZodOptional<z.ZodString>;
804
+ api: z.ZodOptional<z.ZodString>;
805
+ openapi: z.ZodOptional<z.ZodString>;
806
+ contentType: z.ZodOptional<z.ZodString>;
807
+ authMethod: z.ZodOptional<z.ZodString>;
808
+ auth: z.ZodOptional<z.ZodString>;
809
+ version: z.ZodOptional<z.ZodString>;
810
+ mode: z.ZodOptional<z.ZodString>;
811
+ hideFooterPagination: z.ZodOptional<z.ZodBoolean>;
812
+ authors: z.ZodOptional<z.ZodUnknown>;
813
+ lastUpdatedDate: z.ZodOptional<z.ZodString>;
814
+ createdDate: z.ZodOptional<z.ZodString>;
815
+ 'openapi-schema': z.ZodOptional<z.ZodString>;
816
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
817
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
818
+ name: z.ZodEffects<z.ZodString, string, string>;
819
+ }, "strip", z.ZodTypeAny, {
820
+ name: string;
821
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
822
+ }, {
823
+ name: string;
824
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
825
+ }>]>>;
826
+ tag: z.ZodOptional<z.ZodString>;
827
+ url: z.ZodOptional<z.ZodString>;
828
+ hideApiMarker: z.ZodOptional<z.ZodBoolean>;
829
+ noindex: z.ZodOptional<z.ZodBoolean>;
830
+ isPublic: z.ZodOptional<z.ZodBoolean>;
831
+ }, "strip", z.ZodTypeAny, {
832
+ href: string;
833
+ title: string;
834
+ sidebarTitle?: string | undefined;
835
+ description?: string | undefined;
836
+ api?: string | undefined;
837
+ openapi?: string | undefined;
838
+ contentType?: string | undefined;
839
+ authMethod?: string | undefined;
840
+ auth?: string | undefined;
841
+ version?: string | undefined;
842
+ mode?: string | undefined;
843
+ hideFooterPagination?: boolean | undefined;
844
+ authors?: unknown;
845
+ lastUpdatedDate?: string | undefined;
846
+ createdDate?: string | undefined;
847
+ 'openapi-schema'?: string | undefined;
848
+ icon?: string | {
849
+ name: string;
850
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
851
+ } | undefined;
852
+ tag?: string | undefined;
853
+ url?: string | undefined;
854
+ hideApiMarker?: boolean | undefined;
855
+ noindex?: boolean | undefined;
856
+ isPublic?: boolean | undefined;
857
+ }, {
858
+ href: string;
859
+ title: string;
860
+ sidebarTitle?: string | undefined;
861
+ description?: string | undefined;
862
+ api?: string | undefined;
863
+ openapi?: string | undefined;
864
+ contentType?: string | undefined;
865
+ authMethod?: string | undefined;
866
+ auth?: string | undefined;
867
+ version?: string | undefined;
868
+ mode?: string | undefined;
869
+ hideFooterPagination?: boolean | undefined;
870
+ authors?: unknown;
871
+ lastUpdatedDate?: string | undefined;
872
+ createdDate?: string | undefined;
873
+ 'openapi-schema'?: string | undefined;
874
+ icon?: string | {
875
+ name: string;
876
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
877
+ } | undefined;
878
+ tag?: string | undefined;
879
+ url?: string | undefined;
880
+ hideApiMarker?: boolean | undefined;
881
+ noindex?: boolean | undefined;
882
+ isPublic?: boolean | undefined;
883
+ }>>;
884
+ }, "strip", z.ZodTypeAny, {
885
+ group: string;
886
+ icon?: string | {
887
+ name: string;
888
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
889
+ } | undefined;
890
+ hidden?: boolean | undefined;
891
+ root?: string | {
892
+ href: string;
893
+ title: string;
894
+ sidebarTitle?: string | undefined;
895
+ description?: string | undefined;
896
+ api?: string | undefined;
897
+ openapi?: string | undefined;
898
+ contentType?: string | undefined;
899
+ authMethod?: string | undefined;
900
+ auth?: string | undefined;
901
+ version?: string | undefined;
902
+ mode?: string | undefined;
903
+ hideFooterPagination?: boolean | undefined;
904
+ authors?: unknown;
905
+ lastUpdatedDate?: string | undefined;
906
+ createdDate?: string | undefined;
907
+ 'openapi-schema'?: string | undefined;
908
+ icon?: string | {
909
+ name: string;
910
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
911
+ } | undefined;
912
+ tag?: string | undefined;
913
+ url?: string | undefined;
914
+ hideApiMarker?: boolean | undefined;
915
+ noindex?: boolean | undefined;
916
+ isPublic?: boolean | undefined;
917
+ } | undefined;
918
+ }, {
919
+ group: string;
920
+ icon?: string | {
921
+ name: string;
922
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
923
+ } | undefined;
924
+ hidden?: boolean | undefined;
925
+ root?: string | {
926
+ href: string;
927
+ title: string;
928
+ sidebarTitle?: string | undefined;
929
+ description?: string | undefined;
930
+ api?: string | undefined;
931
+ openapi?: string | undefined;
932
+ contentType?: string | undefined;
933
+ authMethod?: string | undefined;
934
+ auth?: string | undefined;
935
+ version?: string | undefined;
936
+ mode?: string | undefined;
937
+ hideFooterPagination?: boolean | undefined;
938
+ authors?: unknown;
939
+ lastUpdatedDate?: string | undefined;
940
+ createdDate?: string | undefined;
941
+ 'openapi-schema'?: string | undefined;
942
+ icon?: string | {
943
+ name: string;
944
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
945
+ } | undefined;
946
+ tag?: string | undefined;
947
+ url?: string | undefined;
948
+ hideApiMarker?: boolean | undefined;
949
+ noindex?: boolean | undefined;
950
+ isPublic?: boolean | undefined;
951
+ } | undefined;
952
+ }>, z.ZodUnion<[z.ZodObject<{
953
+ openapi: z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">]>;
954
+ }, "strip", z.ZodTypeAny, {
955
+ openapi: (string | string[]) & (string | string[] | undefined);
956
+ }, {
957
+ openapi: (string | string[]) & (string | string[] | undefined);
958
+ }>, z.ZodLazy<z.ZodObject<{
959
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
960
+ }, "strip", z.ZodTypeAny, {
961
+ pages: any[];
962
+ }, {
963
+ pages: any[];
964
+ }>>]>>, "many">;
965
+ }, "strip", z.ZodTypeAny, {
966
+ groups: ({
967
+ group: string;
968
+ icon?: string | {
969
+ name: string;
970
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
971
+ } | undefined;
972
+ hidden?: boolean | undefined;
973
+ root?: string | {
974
+ href: string;
975
+ title: string;
976
+ sidebarTitle?: string | undefined;
977
+ description?: string | undefined;
978
+ api?: string | undefined;
979
+ openapi?: string | undefined;
980
+ contentType?: string | undefined;
981
+ authMethod?: string | undefined;
982
+ auth?: string | undefined;
983
+ version?: string | undefined;
984
+ mode?: string | undefined;
985
+ hideFooterPagination?: boolean | undefined;
986
+ authors?: unknown;
987
+ lastUpdatedDate?: string | undefined;
988
+ createdDate?: string | undefined;
989
+ 'openapi-schema'?: string | undefined;
826
990
  icon?: string | {
827
991
  name: string;
828
992
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
829
993
  } | undefined;
830
- hidden?: boolean | undefined;
831
- } & {
994
+ tag?: string | undefined;
995
+ url?: string | undefined;
996
+ hideApiMarker?: boolean | undefined;
997
+ noindex?: boolean | undefined;
998
+ isPublic?: boolean | undefined;
999
+ } | undefined;
1000
+ } & ({
1001
+ openapi: (string | string[]) & (string | string[] | undefined);
1002
+ } | {
1003
+ pages: any[];
1004
+ }))[];
1005
+ }, {
1006
+ groups: ({
1007
+ group: string;
1008
+ icon?: string | {
1009
+ name: string;
1010
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1011
+ } | undefined;
1012
+ hidden?: boolean | undefined;
1013
+ root?: string | {
832
1014
  href: string;
833
- })[] | undefined;
834
- anchors?: ({
835
- anchor: string;
1015
+ title: string;
1016
+ sidebarTitle?: string | undefined;
1017
+ description?: string | undefined;
1018
+ api?: string | undefined;
1019
+ openapi?: string | undefined;
1020
+ contentType?: string | undefined;
1021
+ authMethod?: string | undefined;
1022
+ auth?: string | undefined;
1023
+ version?: string | undefined;
1024
+ mode?: string | undefined;
1025
+ hideFooterPagination?: boolean | undefined;
1026
+ authors?: unknown;
1027
+ lastUpdatedDate?: string | undefined;
1028
+ createdDate?: string | undefined;
1029
+ 'openapi-schema'?: string | undefined;
836
1030
  icon?: string | {
837
1031
  name: string;
838
1032
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
839
1033
  } | undefined;
840
- color?: {
841
- light?: string | undefined;
842
- dark?: string | undefined;
843
- } | undefined;
844
- hidden?: boolean | undefined;
845
- } & {
846
- href: string;
847
- })[] | undefined;
848
- } | undefined;
849
- }>>;
1034
+ tag?: string | undefined;
1035
+ url?: string | undefined;
1036
+ hideApiMarker?: boolean | undefined;
1037
+ noindex?: boolean | undefined;
1038
+ isPublic?: boolean | undefined;
1039
+ } | undefined;
1040
+ } & ({
1041
+ openapi: (string | string[]) & (string | string[] | undefined);
1042
+ } | {
1043
+ pages: any[];
1044
+ }))[];
1045
+ }>, z.ZodObject<{
1046
+ pages: z.ZodArray<z.ZodType<any, z.ZodTypeDef, any>, "many">;
1047
+ }, "strip", z.ZodTypeAny, {
1048
+ pages: any[];
1049
+ }, {
1050
+ pages: any[];
1051
+ }>]>>;
850
1052
  footer: z.ZodOptional<z.ZodObject<{
851
1053
  socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
852
1054
  links: z.ZodOptional<z.ZodArray<z.ZodObject<{
@@ -902,10 +1104,10 @@ export declare const quillConfigSchema: z.ZodObject<{
902
1104
  }>>;
903
1105
  seo: z.ZodOptional<z.ZodObject<{
904
1106
  metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
905
- indexing: z.ZodDefault<z.ZodOptional<z.ZodEnum<["navigable", "all"]>>>;
1107
+ indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
906
1108
  }, "strip", z.ZodTypeAny, {
907
- indexing: "all" | "navigable";
908
1109
  metatags?: Record<string, string> | undefined;
1110
+ indexing?: "all" | "navigable" | undefined;
909
1111
  }, {
910
1112
  metatags?: Record<string, string> | undefined;
911
1113
  indexing?: "all" | "navigable" | undefined;
@@ -1016,20 +1218,20 @@ export declare const quillConfigSchema: z.ZodObject<{
1016
1218
  } | undefined;
1017
1219
  }>]>>;
1018
1220
  icons: z.ZodOptional<z.ZodObject<{
1019
- library: z.ZodDefault<z.ZodEnum<["fontawesome"]>>;
1221
+ library: z.ZodEnum<["fontawesome"]>;
1020
1222
  }, "strip", z.ZodTypeAny, {
1021
1223
  library: "fontawesome";
1022
1224
  }, {
1023
- library?: "fontawesome" | undefined;
1225
+ library: "fontawesome";
1024
1226
  }>>;
1025
1227
  styling: z.ZodOptional<z.ZodObject<{
1026
- rounded: z.ZodDefault<z.ZodOptional<z.ZodEnum<["regular", "sharp"]>>>;
1027
- eyebrows: z.ZodDefault<z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>>;
1028
- codeblocks: z.ZodDefault<z.ZodOptional<z.ZodEnum<["system", "dark"]>>>;
1228
+ rounded: z.ZodOptional<z.ZodEnum<["regular", "sharp"]>>;
1229
+ eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
1230
+ codeblocks: z.ZodOptional<z.ZodEnum<["system", "dark"]>>;
1029
1231
  }, "strip", z.ZodTypeAny, {
1030
- rounded: "regular" | "sharp";
1031
- eyebrows: "section" | "breadcrumbs";
1032
- codeblocks: "dark" | "system";
1232
+ rounded?: "regular" | "sharp" | undefined;
1233
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1234
+ codeblocks?: "dark" | "system" | undefined;
1033
1235
  }, {
1034
1236
  rounded?: "regular" | "sharp" | undefined;
1035
1237
  eyebrows?: "section" | "breadcrumbs" | undefined;
@@ -1296,84 +1498,29 @@ export declare const quillConfigSchema: z.ZodObject<{
1296
1498
  key: string;
1297
1499
  } | undefined;
1298
1500
  }>>;
1299
- theme: z.ZodLiteral<"quill">;
1501
+ theme: z.ZodLiteral<"linden">;
1300
1502
  }, "strip", z.ZodTypeAny, {
1301
1503
  name: string;
1302
1504
  $schema: string;
1303
- theme: "quill";
1505
+ theme: "linden";
1304
1506
  colors: {
1305
1507
  primary: string;
1306
1508
  light?: string | undefined;
1307
1509
  dark?: string | undefined;
1308
1510
  };
1309
- navigation: (({
1310
- languages: ({
1311
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1312
- hidden?: boolean | undefined;
1313
- } & ({
1314
- openapi: (string | string[]) & (string | string[] | undefined);
1315
- } | {
1316
- href: string;
1317
- } | {
1318
- versions: any[];
1319
- } | {
1320
- tabs: any[];
1321
- } | {
1322
- dropdowns: any[];
1323
- } | {
1324
- anchors: any[];
1325
- } | {
1326
- groups: ({
1327
- group: string;
1328
- icon?: string | {
1329
- name: string;
1330
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1331
- } | undefined;
1332
- hidden?: boolean | undefined;
1333
- root?: string | undefined;
1334
- } & ({
1335
- openapi: (string | string[]) & (string | string[] | undefined);
1336
- } | {
1337
- pages: any[];
1338
- }))[];
1339
- } | {
1340
- pages: any[];
1341
- }))[];
1342
- } | {
1343
- versions: any[];
1344
- } | {
1345
- tabs: any[];
1346
- } | {
1347
- dropdowns: any[];
1348
- } | {
1349
- anchors: any[];
1350
- } | {
1351
- groups: ({
1352
- group: string;
1353
- icon?: string | {
1354
- name: string;
1355
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1356
- } | undefined;
1357
- hidden?: boolean | undefined;
1358
- root?: string | undefined;
1359
- } & ({
1360
- openapi: (string | string[]) & (string | string[] | undefined);
1361
- } | {
1362
- pages: any[];
1363
- }))[];
1364
- } | {
1365
- pages: any[];
1366
- }) & {
1511
+ navigation: ({
1367
1512
  global?: {
1368
1513
  languages?: ({
1369
1514
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1370
1515
  hidden?: boolean | undefined;
1516
+ openapi?: string | string[] | undefined;
1371
1517
  } & {
1372
1518
  href: string;
1373
1519
  })[] | undefined;
1374
1520
  versions?: ({
1375
1521
  version: string;
1376
1522
  hidden?: boolean | undefined;
1523
+ openapi?: string | string[] | undefined;
1377
1524
  } & {
1378
1525
  href: string;
1379
1526
  })[] | undefined;
@@ -1384,6 +1531,7 @@ export declare const quillConfigSchema: z.ZodObject<{
1384
1531
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1385
1532
  } | undefined;
1386
1533
  hidden?: boolean | undefined;
1534
+ openapi?: string | string[] | undefined;
1387
1535
  } & {
1388
1536
  href: string;
1389
1537
  })[] | undefined;
@@ -1394,6 +1542,7 @@ export declare const quillConfigSchema: z.ZodObject<{
1394
1542
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1395
1543
  } | undefined;
1396
1544
  hidden?: boolean | undefined;
1545
+ openapi?: string | string[] | undefined;
1397
1546
  } & {
1398
1547
  href: string;
1399
1548
  })[] | undefined;
@@ -1408,43 +1557,13 @@ export declare const quillConfigSchema: z.ZodObject<{
1408
1557
  dark?: string | undefined;
1409
1558
  } | undefined;
1410
1559
  hidden?: boolean | undefined;
1560
+ openapi?: string | string[] | undefined;
1411
1561
  } & {
1412
1562
  href: string;
1413
1563
  })[] | undefined;
1414
1564
  } | undefined;
1415
- }) & ((({
1416
- languages: ({
1417
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1418
- hidden?: boolean | undefined;
1419
- } & ({
1420
- openapi: (string | string[]) & (string | string[] | undefined);
1421
- } | {
1422
- href: string;
1423
- } | {
1424
- versions: any[];
1425
- } | {
1426
- tabs: any[];
1427
- } | {
1428
- dropdowns: any[];
1429
- } | {
1430
- anchors: any[];
1431
- } | {
1432
- groups: ({
1433
- group: string;
1434
- icon?: string | {
1435
- name: string;
1436
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1437
- } | undefined;
1438
- hidden?: boolean | undefined;
1439
- root?: string | undefined;
1440
- } & ({
1441
- openapi: (string | string[]) & (string | string[] | undefined);
1442
- } | {
1443
- pages: any[];
1444
- }))[];
1445
- } | {
1446
- pages: any[];
1447
- }))[];
1565
+ } & ({
1566
+ languages: any[];
1448
1567
  } | {
1449
1568
  versions: any[];
1450
1569
  } | {
@@ -1461,7 +1580,33 @@ export declare const quillConfigSchema: z.ZodObject<{
1461
1580
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1462
1581
  } | undefined;
1463
1582
  hidden?: boolean | undefined;
1464
- root?: string | undefined;
1583
+ root?: string | {
1584
+ href: string;
1585
+ title: string;
1586
+ sidebarTitle?: string | undefined;
1587
+ description?: string | undefined;
1588
+ api?: string | undefined;
1589
+ openapi?: string | undefined;
1590
+ contentType?: string | undefined;
1591
+ authMethod?: string | undefined;
1592
+ auth?: string | undefined;
1593
+ version?: string | undefined;
1594
+ mode?: string | undefined;
1595
+ hideFooterPagination?: boolean | undefined;
1596
+ authors?: unknown;
1597
+ lastUpdatedDate?: string | undefined;
1598
+ createdDate?: string | undefined;
1599
+ 'openapi-schema'?: string | undefined;
1600
+ icon?: string | {
1601
+ name: string;
1602
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1603
+ } | undefined;
1604
+ tag?: string | undefined;
1605
+ url?: string | undefined;
1606
+ hideApiMarker?: boolean | undefined;
1607
+ noindex?: boolean | undefined;
1608
+ isPublic?: boolean | undefined;
1609
+ } | undefined;
1465
1610
  } & ({
1466
1611
  openapi: (string | string[]) & (string | string[] | undefined);
1467
1612
  } | {
@@ -1469,17 +1614,19 @@ export declare const quillConfigSchema: z.ZodObject<{
1469
1614
  }))[];
1470
1615
  } | {
1471
1616
  pages: any[];
1472
- }) & {
1617
+ })) & (({
1473
1618
  global?: {
1474
1619
  languages?: ({
1475
1620
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1476
1621
  hidden?: boolean | undefined;
1622
+ openapi?: string | string[] | undefined;
1477
1623
  } & {
1478
1624
  href: string;
1479
1625
  })[] | undefined;
1480
1626
  versions?: ({
1481
1627
  version: string;
1482
1628
  hidden?: boolean | undefined;
1629
+ openapi?: string | string[] | undefined;
1483
1630
  } & {
1484
1631
  href: string;
1485
1632
  })[] | undefined;
@@ -1490,6 +1637,7 @@ export declare const quillConfigSchema: z.ZodObject<{
1490
1637
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1491
1638
  } | undefined;
1492
1639
  hidden?: boolean | undefined;
1640
+ openapi?: string | string[] | undefined;
1493
1641
  } & {
1494
1642
  href: string;
1495
1643
  })[] | undefined;
@@ -1500,6 +1648,7 @@ export declare const quillConfigSchema: z.ZodObject<{
1500
1648
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1501
1649
  } | undefined;
1502
1650
  hidden?: boolean | undefined;
1651
+ openapi?: string | string[] | undefined;
1503
1652
  } & {
1504
1653
  href: string;
1505
1654
  })[] | undefined;
@@ -1514,11 +1663,64 @@ export declare const quillConfigSchema: z.ZodObject<{
1514
1663
  dark?: string | undefined;
1515
1664
  } | undefined;
1516
1665
  hidden?: boolean | undefined;
1666
+ openapi?: string | string[] | undefined;
1517
1667
  } & {
1518
1668
  href: string;
1519
1669
  })[] | undefined;
1520
1670
  } | undefined;
1521
- }) | undefined);
1671
+ } & ({
1672
+ languages: any[];
1673
+ } | {
1674
+ versions: any[];
1675
+ } | {
1676
+ tabs: any[];
1677
+ } | {
1678
+ dropdowns: any[];
1679
+ } | {
1680
+ anchors: any[];
1681
+ } | {
1682
+ groups: ({
1683
+ group: string;
1684
+ icon?: string | {
1685
+ name: string;
1686
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1687
+ } | undefined;
1688
+ hidden?: boolean | undefined;
1689
+ root?: string | {
1690
+ href: string;
1691
+ title: string;
1692
+ sidebarTitle?: string | undefined;
1693
+ description?: string | undefined;
1694
+ api?: string | undefined;
1695
+ openapi?: string | undefined;
1696
+ contentType?: string | undefined;
1697
+ authMethod?: string | undefined;
1698
+ auth?: string | undefined;
1699
+ version?: string | undefined;
1700
+ mode?: string | undefined;
1701
+ hideFooterPagination?: boolean | undefined;
1702
+ authors?: unknown;
1703
+ lastUpdatedDate?: string | undefined;
1704
+ createdDate?: string | undefined;
1705
+ 'openapi-schema'?: string | undefined;
1706
+ icon?: string | {
1707
+ name: string;
1708
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1709
+ } | undefined;
1710
+ tag?: string | undefined;
1711
+ url?: string | undefined;
1712
+ hideApiMarker?: boolean | undefined;
1713
+ noindex?: boolean | undefined;
1714
+ isPublic?: boolean | undefined;
1715
+ } | undefined;
1716
+ } & ({
1717
+ openapi: (string | string[]) & (string | string[] | undefined);
1718
+ } | {
1719
+ pages: any[];
1720
+ }))[];
1721
+ } | {
1722
+ pages: any[];
1723
+ })) | undefined);
1522
1724
  description?: string | undefined;
1523
1725
  logo?: string | {
1524
1726
  light: string;
@@ -1529,23 +1731,23 @@ export declare const quillConfigSchema: z.ZodObject<{
1529
1731
  light: string;
1530
1732
  dark: string;
1531
1733
  } | undefined;
1532
- openapi?: string | string[] | undefined;
1533
1734
  api?: {
1735
+ openapi?: string | string[] | undefined;
1534
1736
  playground?: {
1535
- display: "simple" | "none" | "interactive";
1536
- proxy: boolean;
1737
+ display?: "simple" | "none" | "interactive" | undefined;
1738
+ proxy?: boolean | undefined;
1537
1739
  } | undefined;
1538
1740
  examples?: {
1539
1741
  languages?: string[] | undefined;
1540
1742
  } | undefined;
1541
1743
  mdx?: {
1542
1744
  auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
1543
- base?: string | string[] | undefined;
1745
+ server?: string | string[] | undefined;
1544
1746
  } | undefined;
1545
1747
  } | undefined;
1546
1748
  appearance?: {
1547
- strict: boolean;
1548
- default: "light" | "dark" | "system";
1749
+ default?: "light" | "dark" | "system" | undefined;
1750
+ strict?: boolean | undefined;
1549
1751
  } | undefined;
1550
1752
  background?: {
1551
1753
  image?: string | {
@@ -1586,8 +1788,8 @@ export declare const quillConfigSchema: z.ZodObject<{
1586
1788
  prompt?: string | undefined;
1587
1789
  } | undefined;
1588
1790
  seo?: {
1589
- indexing: "all" | "navigable";
1590
1791
  metatags?: Record<string, string> | undefined;
1792
+ indexing?: "all" | "navigable" | undefined;
1591
1793
  } | undefined;
1592
1794
  fonts?: {
1593
1795
  family: string;
@@ -1612,9 +1814,9 @@ export declare const quillConfigSchema: z.ZodObject<{
1612
1814
  library: "fontawesome";
1613
1815
  } | undefined;
1614
1816
  styling?: {
1615
- rounded: "regular" | "sharp";
1616
- eyebrows: "section" | "breadcrumbs";
1617
- codeblocks: "dark" | "system";
1817
+ rounded?: "regular" | "sharp" | undefined;
1818
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1819
+ codeblocks?: "dark" | "system" | undefined;
1618
1820
  } | undefined;
1619
1821
  redirects?: {
1620
1822
  source: string;
@@ -1679,80 +1881,25 @@ export declare const quillConfigSchema: z.ZodObject<{
1679
1881
  } | undefined;
1680
1882
  }, {
1681
1883
  name: string;
1682
- theme: "quill";
1884
+ theme: "linden";
1683
1885
  colors: {
1684
1886
  primary: string;
1685
1887
  light?: string | undefined;
1686
1888
  dark?: string | undefined;
1687
1889
  };
1688
- navigation: (({
1689
- languages: ({
1690
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1691
- hidden?: boolean | undefined;
1692
- } & ({
1693
- openapi: (string | string[]) & (string | string[] | undefined);
1694
- } | {
1695
- href: string;
1696
- } | {
1697
- versions: any[];
1698
- } | {
1699
- tabs: any[];
1700
- } | {
1701
- dropdowns: any[];
1702
- } | {
1703
- anchors: any[];
1704
- } | {
1705
- groups: ({
1706
- group: string;
1707
- icon?: string | {
1708
- name: string;
1709
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1710
- } | undefined;
1711
- hidden?: boolean | undefined;
1712
- root?: string | undefined;
1713
- } & ({
1714
- openapi: (string | string[]) & (string | string[] | undefined);
1715
- } | {
1716
- pages: any[];
1717
- }))[];
1718
- } | {
1719
- pages: any[];
1720
- }))[];
1721
- } | {
1722
- versions: any[];
1723
- } | {
1724
- tabs: any[];
1725
- } | {
1726
- dropdowns: any[];
1727
- } | {
1728
- anchors: any[];
1729
- } | {
1730
- groups: ({
1731
- group: string;
1732
- icon?: string | {
1733
- name: string;
1734
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1735
- } | undefined;
1736
- hidden?: boolean | undefined;
1737
- root?: string | undefined;
1738
- } & ({
1739
- openapi: (string | string[]) & (string | string[] | undefined);
1740
- } | {
1741
- pages: any[];
1742
- }))[];
1743
- } | {
1744
- pages: any[];
1745
- }) & {
1890
+ navigation: ({
1746
1891
  global?: {
1747
1892
  languages?: ({
1748
1893
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1749
1894
  hidden?: boolean | undefined;
1895
+ openapi?: string | string[] | undefined;
1750
1896
  } & {
1751
1897
  href: string;
1752
1898
  })[] | undefined;
1753
1899
  versions?: ({
1754
1900
  version: string;
1755
1901
  hidden?: boolean | undefined;
1902
+ openapi?: string | string[] | undefined;
1756
1903
  } & {
1757
1904
  href: string;
1758
1905
  })[] | undefined;
@@ -1763,6 +1910,7 @@ export declare const quillConfigSchema: z.ZodObject<{
1763
1910
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1764
1911
  } | undefined;
1765
1912
  hidden?: boolean | undefined;
1913
+ openapi?: string | string[] | undefined;
1766
1914
  } & {
1767
1915
  href: string;
1768
1916
  })[] | undefined;
@@ -1773,6 +1921,7 @@ export declare const quillConfigSchema: z.ZodObject<{
1773
1921
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1774
1922
  } | undefined;
1775
1923
  hidden?: boolean | undefined;
1924
+ openapi?: string | string[] | undefined;
1776
1925
  } & {
1777
1926
  href: string;
1778
1927
  })[] | undefined;
@@ -1787,43 +1936,13 @@ export declare const quillConfigSchema: z.ZodObject<{
1787
1936
  dark?: string | undefined;
1788
1937
  } | undefined;
1789
1938
  hidden?: boolean | undefined;
1939
+ openapi?: string | string[] | undefined;
1790
1940
  } & {
1791
1941
  href: string;
1792
1942
  })[] | undefined;
1793
1943
  } | undefined;
1794
- }) & ((({
1795
- languages: ({
1796
- language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1797
- hidden?: boolean | undefined;
1798
- } & ({
1799
- openapi: (string | string[]) & (string | string[] | undefined);
1800
- } | {
1801
- href: string;
1802
- } | {
1803
- versions: any[];
1804
- } | {
1805
- tabs: any[];
1806
- } | {
1807
- dropdowns: any[];
1808
- } | {
1809
- anchors: any[];
1810
- } | {
1811
- groups: ({
1812
- group: string;
1813
- icon?: string | {
1814
- name: string;
1815
- style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1816
- } | undefined;
1817
- hidden?: boolean | undefined;
1818
- root?: string | undefined;
1819
- } & ({
1820
- openapi: (string | string[]) & (string | string[] | undefined);
1821
- } | {
1822
- pages: any[];
1823
- }))[];
1824
- } | {
1825
- pages: any[];
1826
- }))[];
1944
+ } & ({
1945
+ languages: any[];
1827
1946
  } | {
1828
1947
  versions: any[];
1829
1948
  } | {
@@ -1840,7 +1959,33 @@ export declare const quillConfigSchema: z.ZodObject<{
1840
1959
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1841
1960
  } | undefined;
1842
1961
  hidden?: boolean | undefined;
1843
- root?: string | undefined;
1962
+ root?: string | {
1963
+ href: string;
1964
+ title: string;
1965
+ sidebarTitle?: string | undefined;
1966
+ description?: string | undefined;
1967
+ api?: string | undefined;
1968
+ openapi?: string | undefined;
1969
+ contentType?: string | undefined;
1970
+ authMethod?: string | undefined;
1971
+ auth?: string | undefined;
1972
+ version?: string | undefined;
1973
+ mode?: string | undefined;
1974
+ hideFooterPagination?: boolean | undefined;
1975
+ authors?: unknown;
1976
+ lastUpdatedDate?: string | undefined;
1977
+ createdDate?: string | undefined;
1978
+ 'openapi-schema'?: string | undefined;
1979
+ icon?: string | {
1980
+ name: string;
1981
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1982
+ } | undefined;
1983
+ tag?: string | undefined;
1984
+ url?: string | undefined;
1985
+ hideApiMarker?: boolean | undefined;
1986
+ noindex?: boolean | undefined;
1987
+ isPublic?: boolean | undefined;
1988
+ } | undefined;
1844
1989
  } & ({
1845
1990
  openapi: (string | string[]) & (string | string[] | undefined);
1846
1991
  } | {
@@ -1848,17 +1993,19 @@ export declare const quillConfigSchema: z.ZodObject<{
1848
1993
  }))[];
1849
1994
  } | {
1850
1995
  pages: any[];
1851
- }) & {
1996
+ })) & (({
1852
1997
  global?: {
1853
1998
  languages?: ({
1854
1999
  language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1855
2000
  hidden?: boolean | undefined;
2001
+ openapi?: string | string[] | undefined;
1856
2002
  } & {
1857
2003
  href: string;
1858
2004
  })[] | undefined;
1859
2005
  versions?: ({
1860
2006
  version: string;
1861
2007
  hidden?: boolean | undefined;
2008
+ openapi?: string | string[] | undefined;
1862
2009
  } & {
1863
2010
  href: string;
1864
2011
  })[] | undefined;
@@ -1869,6 +2016,7 @@ export declare const quillConfigSchema: z.ZodObject<{
1869
2016
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1870
2017
  } | undefined;
1871
2018
  hidden?: boolean | undefined;
2019
+ openapi?: string | string[] | undefined;
1872
2020
  } & {
1873
2021
  href: string;
1874
2022
  })[] | undefined;
@@ -1879,6 +2027,7 @@ export declare const quillConfigSchema: z.ZodObject<{
1879
2027
  style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1880
2028
  } | undefined;
1881
2029
  hidden?: boolean | undefined;
2030
+ openapi?: string | string[] | undefined;
1882
2031
  } & {
1883
2032
  href: string;
1884
2033
  })[] | undefined;
@@ -1893,11 +2042,64 @@ export declare const quillConfigSchema: z.ZodObject<{
1893
2042
  dark?: string | undefined;
1894
2043
  } | undefined;
1895
2044
  hidden?: boolean | undefined;
2045
+ openapi?: string | string[] | undefined;
1896
2046
  } & {
1897
2047
  href: string;
1898
2048
  })[] | undefined;
1899
2049
  } | undefined;
1900
- }) | undefined);
2050
+ } & ({
2051
+ languages: any[];
2052
+ } | {
2053
+ versions: any[];
2054
+ } | {
2055
+ tabs: any[];
2056
+ } | {
2057
+ dropdowns: any[];
2058
+ } | {
2059
+ anchors: any[];
2060
+ } | {
2061
+ groups: ({
2062
+ group: string;
2063
+ icon?: string | {
2064
+ name: string;
2065
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2066
+ } | undefined;
2067
+ hidden?: boolean | undefined;
2068
+ root?: string | {
2069
+ href: string;
2070
+ title: string;
2071
+ sidebarTitle?: string | undefined;
2072
+ description?: string | undefined;
2073
+ api?: string | undefined;
2074
+ openapi?: string | undefined;
2075
+ contentType?: string | undefined;
2076
+ authMethod?: string | undefined;
2077
+ auth?: string | undefined;
2078
+ version?: string | undefined;
2079
+ mode?: string | undefined;
2080
+ hideFooterPagination?: boolean | undefined;
2081
+ authors?: unknown;
2082
+ lastUpdatedDate?: string | undefined;
2083
+ createdDate?: string | undefined;
2084
+ 'openapi-schema'?: string | undefined;
2085
+ icon?: string | {
2086
+ name: string;
2087
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2088
+ } | undefined;
2089
+ tag?: string | undefined;
2090
+ url?: string | undefined;
2091
+ hideApiMarker?: boolean | undefined;
2092
+ noindex?: boolean | undefined;
2093
+ isPublic?: boolean | undefined;
2094
+ } | undefined;
2095
+ } & ({
2096
+ openapi: (string | string[]) & (string | string[] | undefined);
2097
+ } | {
2098
+ pages: any[];
2099
+ }))[];
2100
+ } | {
2101
+ pages: any[];
2102
+ })) | undefined);
1901
2103
  $schema?: string | undefined;
1902
2104
  description?: string | undefined;
1903
2105
  logo?: string | {
@@ -1909,8 +2111,8 @@ export declare const quillConfigSchema: z.ZodObject<{
1909
2111
  light: string;
1910
2112
  dark: string;
1911
2113
  } | undefined;
1912
- openapi?: string | string[] | undefined;
1913
2114
  api?: {
2115
+ openapi?: string | string[] | undefined;
1914
2116
  playground?: {
1915
2117
  display?: "simple" | "none" | "interactive" | undefined;
1916
2118
  proxy?: boolean | undefined;
@@ -1920,7 +2122,7 @@ export declare const quillConfigSchema: z.ZodObject<{
1920
2122
  } | undefined;
1921
2123
  mdx?: {
1922
2124
  auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
1923
- base?: string | string[] | undefined;
2125
+ server?: string | string[] | undefined;
1924
2126
  } | undefined;
1925
2127
  } | undefined;
1926
2128
  appearance?: {
@@ -1989,7 +2191,7 @@ export declare const quillConfigSchema: z.ZodObject<{
1989
2191
  } | undefined;
1990
2192
  } | undefined;
1991
2193
  icons?: {
1992
- library?: "fontawesome" | undefined;
2194
+ library: "fontawesome";
1993
2195
  } | undefined;
1994
2196
  styling?: {
1995
2197
  rounded?: "regular" | "sharp" | undefined;