@mintlify/validation 0.1.246 → 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 (56) hide show
  1. package/dist/mint-config/schemas/v2/index.d.ts +5215 -2155
  2. package/dist/mint-config/schemas/v2/index.js +8 -6
  3. package/dist/mint-config/schemas/v2/properties/api.d.ts +11 -11
  4. package/dist/mint-config/schemas/v2/properties/api.js +3 -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} +740 -540
  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} +740 -540
  43. package/dist/mint-config/schemas/v2/themes/maple.js +3 -0
  44. package/dist/mint-config/schemas/v2/themes/mint.d.ts +736 -536
  45. package/dist/mint-config/schemas/v2/themes/{prism.d.ts → palm.d.ts} +740 -540
  46. package/dist/mint-config/schemas/v2/themes/palm.js +3 -0
  47. package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +520 -320
  48. package/dist/mint-config/schemas/v2/themes/willow.d.ts +2262 -0
  49. package/dist/mint-config/schemas/v2/themes/willow.js +3 -0
  50. package/dist/mint-config/upgrades/upgradeToDocsConfig.d.ts +2 -5
  51. package/dist/mint-config/upgrades/upgradeToDocsConfig.js +28 -11
  52. package/dist/tsconfig.build.tsbuildinfo +1 -1
  53. package/package.json +2 -2
  54. package/dist/mint-config/schemas/v2/themes/prism.js +0 -3
  55. package/dist/mint-config/schemas/v2/themes/quill.js +0 -3
  56. package/dist/mint-config/schemas/v2/themes/venus.js +0 -3
@@ -0,0 +1,2262 @@
1
+ import { z } from 'zod';
2
+ export declare const willowConfigSchema: z.ZodObject<{
3
+ $schema: z.ZodDefault<z.ZodOptional<z.ZodString>>;
4
+ name: z.ZodString;
5
+ description: z.ZodOptional<z.ZodString>;
6
+ colors: z.ZodObject<{
7
+ primary: z.ZodString;
8
+ light: z.ZodOptional<z.ZodString>;
9
+ dark: z.ZodOptional<z.ZodString>;
10
+ }, "strict", z.ZodTypeAny, {
11
+ primary: string;
12
+ light?: string | undefined;
13
+ dark?: string | undefined;
14
+ }, {
15
+ primary: string;
16
+ light?: string | undefined;
17
+ dark?: string | undefined;
18
+ }>;
19
+ logo: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
20
+ light: z.ZodString;
21
+ dark: z.ZodString;
22
+ href: z.ZodOptional<z.ZodString>;
23
+ }, "strip", z.ZodTypeAny, {
24
+ light: string;
25
+ dark: string;
26
+ href?: string | undefined;
27
+ }, {
28
+ light: string;
29
+ dark: string;
30
+ href?: string | undefined;
31
+ }>]>>;
32
+ favicon: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
33
+ light: z.ZodString;
34
+ dark: z.ZodString;
35
+ }, "strip", z.ZodTypeAny, {
36
+ light: string;
37
+ dark: string;
38
+ }, {
39
+ light: string;
40
+ dark: string;
41
+ }>]>>;
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
+ playground: z.ZodOptional<z.ZodObject<{
45
+ display: z.ZodOptional<z.ZodEnum<["interactive", "simple", "none"]>>;
46
+ proxy: z.ZodOptional<z.ZodBoolean>;
47
+ }, "strip", z.ZodTypeAny, {
48
+ display?: "simple" | "none" | "interactive" | undefined;
49
+ proxy?: boolean | undefined;
50
+ }, {
51
+ display?: "simple" | "none" | "interactive" | undefined;
52
+ proxy?: boolean | undefined;
53
+ }>>;
54
+ examples: z.ZodOptional<z.ZodObject<{
55
+ languages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
56
+ }, "strip", z.ZodTypeAny, {
57
+ languages?: string[] | undefined;
58
+ }, {
59
+ languages?: string[] | undefined;
60
+ }>>;
61
+ mdx: z.ZodOptional<z.ZodObject<{
62
+ auth: z.ZodOptional<z.ZodEnum<["bearer", "basic", "key", "cobo"]>>;
63
+ server: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>>;
64
+ }, "strip", z.ZodTypeAny, {
65
+ auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
66
+ server?: string | string[] | undefined;
67
+ }, {
68
+ auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
69
+ server?: string | string[] | undefined;
70
+ }>>;
71
+ }, "strip", z.ZodTypeAny, {
72
+ openapi?: string | string[] | undefined;
73
+ playground?: {
74
+ display?: "simple" | "none" | "interactive" | undefined;
75
+ proxy?: boolean | undefined;
76
+ } | undefined;
77
+ examples?: {
78
+ languages?: string[] | undefined;
79
+ } | undefined;
80
+ mdx?: {
81
+ auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
82
+ server?: string | string[] | undefined;
83
+ } | undefined;
84
+ }, {
85
+ openapi?: string | string[] | undefined;
86
+ playground?: {
87
+ display?: "simple" | "none" | "interactive" | undefined;
88
+ proxy?: boolean | undefined;
89
+ } | undefined;
90
+ examples?: {
91
+ languages?: string[] | undefined;
92
+ } | undefined;
93
+ mdx?: {
94
+ auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
95
+ server?: string | string[] | undefined;
96
+ } | undefined;
97
+ }>>;
98
+ appearance: z.ZodOptional<z.ZodObject<{
99
+ default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
100
+ strict: z.ZodOptional<z.ZodBoolean>;
101
+ }, "strip", z.ZodTypeAny, {
102
+ default?: "light" | "dark" | "system" | undefined;
103
+ strict?: boolean | undefined;
104
+ }, {
105
+ default?: "light" | "dark" | "system" | undefined;
106
+ strict?: boolean | undefined;
107
+ }>>;
108
+ background: z.ZodOptional<z.ZodObject<{
109
+ image: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
110
+ light: z.ZodString;
111
+ dark: z.ZodString;
112
+ }, "strip", z.ZodTypeAny, {
113
+ light: string;
114
+ dark: string;
115
+ }, {
116
+ light: string;
117
+ dark: string;
118
+ }>]>>;
119
+ decoration: z.ZodOptional<z.ZodEnum<["gradient", "grid", "windows"]>>;
120
+ color: z.ZodOptional<z.ZodObject<{
121
+ light: z.ZodOptional<z.ZodString>;
122
+ dark: z.ZodOptional<z.ZodString>;
123
+ }, "strict", z.ZodTypeAny, {
124
+ light?: string | undefined;
125
+ dark?: string | undefined;
126
+ }, {
127
+ light?: string | undefined;
128
+ dark?: string | undefined;
129
+ }>>;
130
+ }, "strip", z.ZodTypeAny, {
131
+ image?: string | {
132
+ light: string;
133
+ dark: string;
134
+ } | undefined;
135
+ decoration?: "gradient" | "grid" | "windows" | undefined;
136
+ color?: {
137
+ light?: string | undefined;
138
+ dark?: string | undefined;
139
+ } | undefined;
140
+ }, {
141
+ image?: string | {
142
+ light: string;
143
+ dark: string;
144
+ } | undefined;
145
+ decoration?: "gradient" | "grid" | "windows" | undefined;
146
+ color?: {
147
+ light?: string | undefined;
148
+ dark?: string | undefined;
149
+ } | undefined;
150
+ }>>;
151
+ topbar: z.ZodOptional<z.ZodObject<{
152
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
153
+ label: z.ZodString;
154
+ href: z.ZodString;
155
+ }, "strip", z.ZodTypeAny, {
156
+ href: string;
157
+ label: string;
158
+ }, {
159
+ href: string;
160
+ label: string;
161
+ }>, "many">>;
162
+ primary: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
163
+ type: z.ZodLiteral<"button">;
164
+ label: z.ZodString;
165
+ href: z.ZodString;
166
+ }, "strip", z.ZodTypeAny, {
167
+ type: "button";
168
+ href: string;
169
+ label: string;
170
+ }, {
171
+ type: "button";
172
+ href: string;
173
+ label: string;
174
+ }>, z.ZodObject<{
175
+ type: z.ZodLiteral<"github">;
176
+ href: z.ZodString;
177
+ }, "strip", z.ZodTypeAny, {
178
+ type: "github";
179
+ href: string;
180
+ }, {
181
+ type: "github";
182
+ href: string;
183
+ }>]>>;
184
+ }, "strip", z.ZodTypeAny, {
185
+ links?: {
186
+ href: string;
187
+ label: string;
188
+ }[] | undefined;
189
+ primary?: {
190
+ type: "button";
191
+ href: string;
192
+ label: string;
193
+ } | {
194
+ type: "github";
195
+ href: string;
196
+ } | undefined;
197
+ }, {
198
+ links?: {
199
+ href: string;
200
+ label: string;
201
+ }[] | undefined;
202
+ primary?: {
203
+ type: "button";
204
+ href: string;
205
+ label: string;
206
+ } | {
207
+ type: "github";
208
+ href: string;
209
+ } | undefined;
210
+ }>>;
211
+ navigation: z.ZodIntersection<z.ZodObject<{
212
+ global: z.ZodOptional<z.ZodObject<{
213
+ languages: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
214
+ language: z.ZodEnum<["en", "cn", "es", "fr", "jp", "pt", "pt-BR", "de"]>;
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">]>>;
217
+ }, "strip", z.ZodTypeAny, {
218
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
219
+ hidden?: boolean | undefined;
220
+ openapi?: string | string[] | undefined;
221
+ }, {
222
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
223
+ hidden?: boolean | undefined;
224
+ openapi?: string | string[] | undefined;
225
+ }>, z.ZodObject<{
226
+ href: z.ZodString;
227
+ }, "strip", z.ZodTypeAny, {
228
+ href: string;
229
+ }, {
230
+ href: string;
231
+ }>>, "many">>;
232
+ versions: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
233
+ version: z.ZodString;
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">]>>;
236
+ }, "strip", z.ZodTypeAny, {
237
+ version: string;
238
+ hidden?: boolean | undefined;
239
+ openapi?: string | string[] | undefined;
240
+ }, {
241
+ version: string;
242
+ hidden?: boolean | undefined;
243
+ openapi?: string | string[] | undefined;
244
+ }>, z.ZodObject<{
245
+ href: z.ZodString;
246
+ }, "strip", z.ZodTypeAny, {
247
+ href: string;
248
+ }, {
249
+ href: string;
250
+ }>>, "many">>;
251
+ tabs: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
252
+ tab: z.ZodString;
253
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
254
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
255
+ name: z.ZodEffects<z.ZodString, string, string>;
256
+ }, "strip", z.ZodTypeAny, {
257
+ name: string;
258
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
259
+ }, {
260
+ name: string;
261
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
262
+ }>]>>;
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">]>>;
265
+ }, "strip", z.ZodTypeAny, {
266
+ tab: string;
267
+ icon?: string | {
268
+ name: string;
269
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
270
+ } | undefined;
271
+ hidden?: boolean | undefined;
272
+ openapi?: string | string[] | undefined;
273
+ }, {
274
+ tab: string;
275
+ icon?: string | {
276
+ name: string;
277
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
278
+ } | undefined;
279
+ hidden?: boolean | undefined;
280
+ openapi?: string | string[] | undefined;
281
+ }>, z.ZodObject<{
282
+ href: z.ZodString;
283
+ }, "strip", z.ZodTypeAny, {
284
+ href: string;
285
+ }, {
286
+ href: string;
287
+ }>>, "many">>;
288
+ dropdowns: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
289
+ dropdown: z.ZodString;
290
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
291
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
292
+ name: z.ZodEffects<z.ZodString, string, string>;
293
+ }, "strip", z.ZodTypeAny, {
294
+ name: string;
295
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
296
+ }, {
297
+ name: string;
298
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
299
+ }>]>>;
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">]>>;
302
+ }, "strip", z.ZodTypeAny, {
303
+ dropdown: string;
304
+ icon?: string | {
305
+ name: string;
306
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
307
+ } | undefined;
308
+ hidden?: boolean | undefined;
309
+ openapi?: string | string[] | undefined;
310
+ }, {
311
+ dropdown: string;
312
+ icon?: string | {
313
+ name: string;
314
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
315
+ } | undefined;
316
+ hidden?: boolean | undefined;
317
+ openapi?: string | string[] | undefined;
318
+ }>, z.ZodObject<{
319
+ href: z.ZodString;
320
+ }, "strip", z.ZodTypeAny, {
321
+ href: string;
322
+ }, {
323
+ href: string;
324
+ }>>, "many">>;
325
+ anchors: z.ZodOptional<z.ZodArray<z.ZodIntersection<z.ZodObject<{
326
+ anchor: z.ZodString;
327
+ icon: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodObject<{
328
+ style: z.ZodOptional<z.ZodEnum<["brands", "duotone", "light", "regular", "sharp-duotone-solid", "sharp-light", "sharp-regular", "sharp-solid", "sharp-thin", "solid", "thin"]>>;
329
+ name: z.ZodEffects<z.ZodString, string, string>;
330
+ }, "strip", z.ZodTypeAny, {
331
+ name: string;
332
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
333
+ }, {
334
+ name: string;
335
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
336
+ }>]>>;
337
+ color: z.ZodOptional<z.ZodObject<{
338
+ light: z.ZodOptional<z.ZodString>;
339
+ dark: z.ZodOptional<z.ZodString>;
340
+ }, "strict", z.ZodTypeAny, {
341
+ light?: string | undefined;
342
+ dark?: string | undefined;
343
+ }, {
344
+ light?: string | undefined;
345
+ dark?: string | undefined;
346
+ }>>;
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">]>>;
349
+ }, "strip", z.ZodTypeAny, {
350
+ anchor: string;
351
+ icon?: string | {
352
+ name: string;
353
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
354
+ } | undefined;
355
+ color?: {
356
+ light?: string | undefined;
357
+ dark?: string | undefined;
358
+ } | undefined;
359
+ hidden?: boolean | undefined;
360
+ openapi?: string | string[] | undefined;
361
+ }, {
362
+ anchor: string;
363
+ icon?: string | {
364
+ name: string;
365
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
366
+ } | undefined;
367
+ color?: {
368
+ light?: string | undefined;
369
+ dark?: string | undefined;
370
+ } | undefined;
371
+ hidden?: boolean | undefined;
372
+ openapi?: string | string[] | undefined;
373
+ }>, z.ZodObject<{
374
+ href: z.ZodString;
375
+ }, "strip", z.ZodTypeAny, {
376
+ href: string;
377
+ }, {
378
+ href: string;
379
+ }>>, "many">>;
380
+ }, "strict", z.ZodTypeAny, {
381
+ languages?: ({
382
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
383
+ hidden?: boolean | undefined;
384
+ openapi?: string | string[] | undefined;
385
+ } & {
386
+ href: string;
387
+ })[] | undefined;
388
+ versions?: ({
389
+ version: string;
390
+ hidden?: boolean | undefined;
391
+ openapi?: string | string[] | undefined;
392
+ } & {
393
+ href: string;
394
+ })[] | undefined;
395
+ tabs?: ({
396
+ tab: string;
397
+ icon?: string | {
398
+ name: string;
399
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
400
+ } | undefined;
401
+ hidden?: boolean | undefined;
402
+ openapi?: string | string[] | undefined;
403
+ } & {
404
+ href: string;
405
+ })[] | undefined;
406
+ dropdowns?: ({
407
+ dropdown: string;
408
+ icon?: string | {
409
+ name: string;
410
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
411
+ } | undefined;
412
+ hidden?: boolean | undefined;
413
+ openapi?: string | string[] | undefined;
414
+ } & {
415
+ href: string;
416
+ })[] | undefined;
417
+ anchors?: ({
418
+ anchor: string;
419
+ icon?: string | {
420
+ name: string;
421
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
422
+ } | undefined;
423
+ color?: {
424
+ light?: string | undefined;
425
+ dark?: string | undefined;
426
+ } | undefined;
427
+ hidden?: boolean | undefined;
428
+ openapi?: string | string[] | undefined;
429
+ } & {
430
+ href: string;
431
+ })[] | undefined;
432
+ }, {
433
+ languages?: ({
434
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
435
+ hidden?: boolean | undefined;
436
+ openapi?: string | string[] | undefined;
437
+ } & {
438
+ href: string;
439
+ })[] | undefined;
440
+ versions?: ({
441
+ version: string;
442
+ hidden?: boolean | undefined;
443
+ openapi?: string | string[] | undefined;
444
+ } & {
445
+ href: string;
446
+ })[] | undefined;
447
+ tabs?: ({
448
+ tab: 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
+ openapi?: string | string[] | undefined;
455
+ } & {
456
+ href: string;
457
+ })[] | undefined;
458
+ dropdowns?: ({
459
+ dropdown: string;
460
+ icon?: string | {
461
+ name: string;
462
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
463
+ } | undefined;
464
+ hidden?: boolean | undefined;
465
+ openapi?: string | string[] | undefined;
466
+ } & {
467
+ href: string;
468
+ })[] | undefined;
469
+ anchors?: ({
470
+ anchor: 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
+ color?: {
476
+ light?: string | undefined;
477
+ dark?: string | undefined;
478
+ } | undefined;
479
+ hidden?: boolean | undefined;
480
+ openapi?: string | string[] | undefined;
481
+ } & {
482
+ href: string;
483
+ })[] | undefined;
484
+ }>>;
485
+ }, "strip", z.ZodTypeAny, {
486
+ global?: {
487
+ languages?: ({
488
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
489
+ hidden?: boolean | undefined;
490
+ openapi?: string | string[] | undefined;
491
+ } & {
492
+ href: string;
493
+ })[] | undefined;
494
+ versions?: ({
495
+ version: string;
496
+ hidden?: boolean | undefined;
497
+ openapi?: string | string[] | undefined;
498
+ } & {
499
+ href: string;
500
+ })[] | undefined;
501
+ tabs?: ({
502
+ tab: string;
503
+ icon?: string | {
504
+ name: string;
505
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
506
+ } | undefined;
507
+ hidden?: boolean | undefined;
508
+ openapi?: string | string[] | undefined;
509
+ } & {
510
+ href: string;
511
+ })[] | undefined;
512
+ dropdowns?: ({
513
+ dropdown: string;
514
+ icon?: string | {
515
+ name: string;
516
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
517
+ } | undefined;
518
+ hidden?: boolean | undefined;
519
+ openapi?: string | string[] | undefined;
520
+ } & {
521
+ href: string;
522
+ })[] | undefined;
523
+ anchors?: ({
524
+ anchor: string;
525
+ icon?: string | {
526
+ name: string;
527
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
528
+ } | undefined;
529
+ color?: {
530
+ light?: string | undefined;
531
+ dark?: string | undefined;
532
+ } | undefined;
533
+ hidden?: boolean | undefined;
534
+ openapi?: string | string[] | undefined;
535
+ } & {
536
+ href: string;
537
+ })[] | undefined;
538
+ } | undefined;
539
+ }, {
540
+ global?: {
541
+ languages?: ({
542
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
543
+ hidden?: boolean | undefined;
544
+ openapi?: string | string[] | undefined;
545
+ } & {
546
+ href: string;
547
+ })[] | undefined;
548
+ versions?: ({
549
+ version: string;
550
+ hidden?: boolean | undefined;
551
+ openapi?: string | string[] | undefined;
552
+ } & {
553
+ href: string;
554
+ })[] | undefined;
555
+ tabs?: ({
556
+ tab: string;
557
+ icon?: string | {
558
+ name: string;
559
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
560
+ } | undefined;
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;
589
+ } & {
590
+ href: 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;
990
+ icon?: string | {
991
+ name: string;
992
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
993
+ } | undefined;
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 | {
1014
+ href: 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;
1030
+ icon?: string | {
1031
+ name: string;
1032
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1033
+ } | undefined;
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
+ }>]>>;
1052
+ footer: z.ZodOptional<z.ZodObject<{
1053
+ socials: z.ZodOptional<z.ZodRecord<z.ZodEnum<["x", "website", "facebook", "youtube", "discord", "slack", "github", "linkedin", "instagram", "hacker-news", "medium", "telegram", "twitter"]>, z.ZodString>>;
1054
+ links: z.ZodOptional<z.ZodArray<z.ZodObject<{
1055
+ header: z.ZodOptional<z.ZodString>;
1056
+ items: z.ZodArray<z.ZodObject<{
1057
+ label: z.ZodString;
1058
+ href: z.ZodString;
1059
+ }, "strip", z.ZodTypeAny, {
1060
+ href: string;
1061
+ label: string;
1062
+ }, {
1063
+ href: string;
1064
+ label: string;
1065
+ }>, "many">;
1066
+ }, "strip", z.ZodTypeAny, {
1067
+ items: {
1068
+ href: string;
1069
+ label: string;
1070
+ }[];
1071
+ header?: string | undefined;
1072
+ }, {
1073
+ items: {
1074
+ href: string;
1075
+ label: string;
1076
+ }[];
1077
+ header?: string | undefined;
1078
+ }>, "many">>;
1079
+ }, "strip", z.ZodTypeAny, {
1080
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter", string>> | undefined;
1081
+ links?: {
1082
+ items: {
1083
+ href: string;
1084
+ label: string;
1085
+ }[];
1086
+ header?: string | undefined;
1087
+ }[] | undefined;
1088
+ }, {
1089
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter", string>> | undefined;
1090
+ links?: {
1091
+ items: {
1092
+ href: string;
1093
+ label: string;
1094
+ }[];
1095
+ header?: string | undefined;
1096
+ }[] | undefined;
1097
+ }>>;
1098
+ search: z.ZodOptional<z.ZodObject<{
1099
+ prompt: z.ZodOptional<z.ZodString>;
1100
+ }, "strip", z.ZodTypeAny, {
1101
+ prompt?: string | undefined;
1102
+ }, {
1103
+ prompt?: string | undefined;
1104
+ }>>;
1105
+ seo: z.ZodOptional<z.ZodObject<{
1106
+ metatags: z.ZodOptional<z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>>;
1107
+ indexing: z.ZodOptional<z.ZodEnum<["navigable", "all"]>>;
1108
+ }, "strip", z.ZodTypeAny, {
1109
+ metatags?: Record<string, string> | undefined;
1110
+ indexing?: "all" | "navigable" | undefined;
1111
+ }, {
1112
+ metatags?: Record<string, string> | undefined;
1113
+ indexing?: "all" | "navigable" | undefined;
1114
+ }>>;
1115
+ fonts: z.ZodOptional<z.ZodUnion<[z.ZodEffects<z.ZodObject<{
1116
+ family: z.ZodString;
1117
+ weight: z.ZodOptional<z.ZodNumber>;
1118
+ source: z.ZodOptional<z.ZodString>;
1119
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
1120
+ }, "strip", z.ZodTypeAny, {
1121
+ family: string;
1122
+ weight?: number | undefined;
1123
+ source?: string | undefined;
1124
+ format?: "woff" | "woff2" | undefined;
1125
+ }, {
1126
+ family: string;
1127
+ weight?: number | undefined;
1128
+ source?: string | undefined;
1129
+ format?: "woff" | "woff2" | undefined;
1130
+ }>, {
1131
+ family: string;
1132
+ weight?: number | undefined;
1133
+ source?: string | undefined;
1134
+ format?: "woff" | "woff2" | undefined;
1135
+ }, {
1136
+ family: string;
1137
+ weight?: number | undefined;
1138
+ source?: string | undefined;
1139
+ format?: "woff" | "woff2" | undefined;
1140
+ }>, z.ZodObject<{
1141
+ heading: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1142
+ family: z.ZodString;
1143
+ weight: z.ZodOptional<z.ZodNumber>;
1144
+ source: z.ZodOptional<z.ZodString>;
1145
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
1146
+ }, "strip", z.ZodTypeAny, {
1147
+ family: string;
1148
+ weight?: number | undefined;
1149
+ source?: string | undefined;
1150
+ format?: "woff" | "woff2" | undefined;
1151
+ }, {
1152
+ family: string;
1153
+ weight?: number | undefined;
1154
+ source?: string | undefined;
1155
+ format?: "woff" | "woff2" | undefined;
1156
+ }>, {
1157
+ family: string;
1158
+ weight?: number | undefined;
1159
+ source?: string | undefined;
1160
+ format?: "woff" | "woff2" | undefined;
1161
+ }, {
1162
+ family: string;
1163
+ weight?: number | undefined;
1164
+ source?: string | undefined;
1165
+ format?: "woff" | "woff2" | undefined;
1166
+ }>>;
1167
+ body: z.ZodOptional<z.ZodEffects<z.ZodObject<{
1168
+ family: z.ZodString;
1169
+ weight: z.ZodOptional<z.ZodNumber>;
1170
+ source: z.ZodOptional<z.ZodString>;
1171
+ format: z.ZodOptional<z.ZodEnum<["woff", "woff2"]>>;
1172
+ }, "strip", z.ZodTypeAny, {
1173
+ family: string;
1174
+ weight?: number | undefined;
1175
+ source?: string | undefined;
1176
+ format?: "woff" | "woff2" | undefined;
1177
+ }, {
1178
+ family: string;
1179
+ weight?: number | undefined;
1180
+ source?: string | undefined;
1181
+ format?: "woff" | "woff2" | undefined;
1182
+ }>, {
1183
+ family: string;
1184
+ weight?: number | undefined;
1185
+ source?: string | undefined;
1186
+ format?: "woff" | "woff2" | undefined;
1187
+ }, {
1188
+ family: string;
1189
+ weight?: number | undefined;
1190
+ source?: string | undefined;
1191
+ format?: "woff" | "woff2" | undefined;
1192
+ }>>;
1193
+ }, "strict", z.ZodTypeAny, {
1194
+ heading?: {
1195
+ family: string;
1196
+ weight?: number | undefined;
1197
+ source?: string | undefined;
1198
+ format?: "woff" | "woff2" | undefined;
1199
+ } | undefined;
1200
+ body?: {
1201
+ family: string;
1202
+ weight?: number | undefined;
1203
+ source?: string | undefined;
1204
+ format?: "woff" | "woff2" | undefined;
1205
+ } | undefined;
1206
+ }, {
1207
+ heading?: {
1208
+ family: string;
1209
+ weight?: number | undefined;
1210
+ source?: string | undefined;
1211
+ format?: "woff" | "woff2" | undefined;
1212
+ } | undefined;
1213
+ body?: {
1214
+ family: string;
1215
+ weight?: number | undefined;
1216
+ source?: string | undefined;
1217
+ format?: "woff" | "woff2" | undefined;
1218
+ } | undefined;
1219
+ }>]>>;
1220
+ icons: z.ZodOptional<z.ZodObject<{
1221
+ library: z.ZodEnum<["fontawesome"]>;
1222
+ }, "strip", z.ZodTypeAny, {
1223
+ library: "fontawesome";
1224
+ }, {
1225
+ library: "fontawesome";
1226
+ }>>;
1227
+ styling: z.ZodOptional<z.ZodObject<{
1228
+ rounded: z.ZodOptional<z.ZodEnum<["regular", "sharp"]>>;
1229
+ eyebrows: z.ZodOptional<z.ZodEnum<["section", "breadcrumbs"]>>;
1230
+ codeblocks: z.ZodOptional<z.ZodEnum<["system", "dark"]>>;
1231
+ }, "strip", z.ZodTypeAny, {
1232
+ rounded?: "regular" | "sharp" | undefined;
1233
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1234
+ codeblocks?: "dark" | "system" | undefined;
1235
+ }, {
1236
+ rounded?: "regular" | "sharp" | undefined;
1237
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1238
+ codeblocks?: "dark" | "system" | undefined;
1239
+ }>>;
1240
+ redirects: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodObject<{
1241
+ source: z.ZodString;
1242
+ destination: z.ZodString;
1243
+ permanent: z.ZodOptional<z.ZodBoolean>;
1244
+ }, "strip", z.ZodTypeAny, {
1245
+ source: string;
1246
+ destination: string;
1247
+ permanent?: boolean | undefined;
1248
+ }, {
1249
+ source: string;
1250
+ destination: string;
1251
+ permanent?: boolean | undefined;
1252
+ }>, "many">, {
1253
+ source: string;
1254
+ destination: string;
1255
+ permanent?: boolean | undefined;
1256
+ }[], {
1257
+ source: string;
1258
+ destination: string;
1259
+ permanent?: boolean | undefined;
1260
+ }[]>>;
1261
+ integrations: z.ZodOptional<z.ZodObject<{
1262
+ amplitude: z.ZodOptional<z.ZodObject<{
1263
+ apiKey: z.ZodString;
1264
+ }, "strip", z.ZodTypeAny, {
1265
+ apiKey: string;
1266
+ }, {
1267
+ apiKey: string;
1268
+ }>>;
1269
+ clearbit: z.ZodOptional<z.ZodObject<{
1270
+ publicApiKey: z.ZodString;
1271
+ }, "strip", z.ZodTypeAny, {
1272
+ publicApiKey: string;
1273
+ }, {
1274
+ publicApiKey: string;
1275
+ }>>;
1276
+ fathom: z.ZodOptional<z.ZodObject<{
1277
+ siteId: z.ZodString;
1278
+ }, "strip", z.ZodTypeAny, {
1279
+ siteId: string;
1280
+ }, {
1281
+ siteId: string;
1282
+ }>>;
1283
+ frontchat: z.ZodOptional<z.ZodObject<{
1284
+ snippetId: z.ZodString;
1285
+ }, "strip", z.ZodTypeAny, {
1286
+ snippetId: string;
1287
+ }, {
1288
+ snippetId: string;
1289
+ }>>;
1290
+ ga4: z.ZodOptional<z.ZodObject<{
1291
+ measurementId: z.ZodString;
1292
+ }, "strip", z.ZodTypeAny, {
1293
+ measurementId: string;
1294
+ }, {
1295
+ measurementId: string;
1296
+ }>>;
1297
+ gtm: z.ZodOptional<z.ZodObject<{
1298
+ tagId: z.ZodString;
1299
+ }, "strip", z.ZodTypeAny, {
1300
+ tagId: string;
1301
+ }, {
1302
+ tagId: string;
1303
+ }>>;
1304
+ heap: z.ZodOptional<z.ZodObject<{
1305
+ appId: z.ZodString;
1306
+ }, "strip", z.ZodTypeAny, {
1307
+ appId: string;
1308
+ }, {
1309
+ appId: string;
1310
+ }>>;
1311
+ hotjar: z.ZodOptional<z.ZodObject<{
1312
+ hjid: z.ZodString;
1313
+ hjsv: z.ZodString;
1314
+ }, "strip", z.ZodTypeAny, {
1315
+ hjid: string;
1316
+ hjsv: string;
1317
+ }, {
1318
+ hjid: string;
1319
+ hjsv: string;
1320
+ }>>;
1321
+ intercom: z.ZodOptional<z.ZodObject<{
1322
+ appId: z.ZodString;
1323
+ }, "strip", z.ZodTypeAny, {
1324
+ appId: string;
1325
+ }, {
1326
+ appId: string;
1327
+ }>>;
1328
+ koala: z.ZodOptional<z.ZodObject<{
1329
+ publicApiKey: z.ZodString;
1330
+ }, "strip", z.ZodTypeAny, {
1331
+ publicApiKey: string;
1332
+ }, {
1333
+ publicApiKey: string;
1334
+ }>>;
1335
+ logrocket: z.ZodOptional<z.ZodObject<{
1336
+ appId: z.ZodString;
1337
+ }, "strip", z.ZodTypeAny, {
1338
+ appId: string;
1339
+ }, {
1340
+ appId: string;
1341
+ }>>;
1342
+ mixpanel: z.ZodOptional<z.ZodObject<{
1343
+ projectToken: z.ZodString;
1344
+ }, "strip", z.ZodTypeAny, {
1345
+ projectToken: string;
1346
+ }, {
1347
+ projectToken: string;
1348
+ }>>;
1349
+ osano: z.ZodOptional<z.ZodObject<{
1350
+ scriptSource: z.ZodString;
1351
+ }, "strip", z.ZodTypeAny, {
1352
+ scriptSource: string;
1353
+ }, {
1354
+ scriptSource: string;
1355
+ }>>;
1356
+ pirsch: z.ZodOptional<z.ZodObject<{
1357
+ id: z.ZodString;
1358
+ }, "strip", z.ZodTypeAny, {
1359
+ id: string;
1360
+ }, {
1361
+ id: string;
1362
+ }>>;
1363
+ posthog: z.ZodOptional<z.ZodObject<{
1364
+ apiKey: z.ZodString;
1365
+ apiHost: z.ZodOptional<z.ZodString>;
1366
+ }, "strip", z.ZodTypeAny, {
1367
+ apiKey: string;
1368
+ apiHost?: string | undefined;
1369
+ }, {
1370
+ apiKey: string;
1371
+ apiHost?: string | undefined;
1372
+ }>>;
1373
+ plausible: z.ZodOptional<z.ZodObject<{
1374
+ domain: z.ZodEffects<z.ZodString, string, string>;
1375
+ server: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
1376
+ }, "strip", z.ZodTypeAny, {
1377
+ domain: string;
1378
+ server?: string | undefined;
1379
+ }, {
1380
+ domain: string;
1381
+ server?: string | undefined;
1382
+ }>>;
1383
+ segment: z.ZodOptional<z.ZodObject<{
1384
+ key: z.ZodString;
1385
+ }, "strip", z.ZodTypeAny, {
1386
+ key: string;
1387
+ }, {
1388
+ key: string;
1389
+ }>>;
1390
+ }, "strict", z.ZodTypeAny, {
1391
+ amplitude?: {
1392
+ apiKey: string;
1393
+ } | undefined;
1394
+ clearbit?: {
1395
+ publicApiKey: string;
1396
+ } | undefined;
1397
+ fathom?: {
1398
+ siteId: string;
1399
+ } | undefined;
1400
+ frontchat?: {
1401
+ snippetId: string;
1402
+ } | undefined;
1403
+ ga4?: {
1404
+ measurementId: string;
1405
+ } | undefined;
1406
+ gtm?: {
1407
+ tagId: string;
1408
+ } | undefined;
1409
+ heap?: {
1410
+ appId: string;
1411
+ } | undefined;
1412
+ hotjar?: {
1413
+ hjid: string;
1414
+ hjsv: string;
1415
+ } | undefined;
1416
+ intercom?: {
1417
+ appId: string;
1418
+ } | undefined;
1419
+ koala?: {
1420
+ publicApiKey: string;
1421
+ } | undefined;
1422
+ logrocket?: {
1423
+ appId: string;
1424
+ } | undefined;
1425
+ mixpanel?: {
1426
+ projectToken: string;
1427
+ } | undefined;
1428
+ osano?: {
1429
+ scriptSource: string;
1430
+ } | undefined;
1431
+ pirsch?: {
1432
+ id: string;
1433
+ } | undefined;
1434
+ posthog?: {
1435
+ apiKey: string;
1436
+ apiHost?: string | undefined;
1437
+ } | undefined;
1438
+ plausible?: {
1439
+ domain: string;
1440
+ server?: string | undefined;
1441
+ } | undefined;
1442
+ segment?: {
1443
+ key: string;
1444
+ } | undefined;
1445
+ }, {
1446
+ amplitude?: {
1447
+ apiKey: string;
1448
+ } | undefined;
1449
+ clearbit?: {
1450
+ publicApiKey: string;
1451
+ } | undefined;
1452
+ fathom?: {
1453
+ siteId: string;
1454
+ } | undefined;
1455
+ frontchat?: {
1456
+ snippetId: string;
1457
+ } | undefined;
1458
+ ga4?: {
1459
+ measurementId: string;
1460
+ } | undefined;
1461
+ gtm?: {
1462
+ tagId: string;
1463
+ } | undefined;
1464
+ heap?: {
1465
+ appId: string;
1466
+ } | undefined;
1467
+ hotjar?: {
1468
+ hjid: string;
1469
+ hjsv: string;
1470
+ } | undefined;
1471
+ intercom?: {
1472
+ appId: string;
1473
+ } | undefined;
1474
+ koala?: {
1475
+ publicApiKey: string;
1476
+ } | undefined;
1477
+ logrocket?: {
1478
+ appId: string;
1479
+ } | undefined;
1480
+ mixpanel?: {
1481
+ projectToken: string;
1482
+ } | undefined;
1483
+ osano?: {
1484
+ scriptSource: string;
1485
+ } | undefined;
1486
+ pirsch?: {
1487
+ id: string;
1488
+ } | undefined;
1489
+ posthog?: {
1490
+ apiKey: string;
1491
+ apiHost?: string | undefined;
1492
+ } | undefined;
1493
+ plausible?: {
1494
+ domain: string;
1495
+ server?: string | undefined;
1496
+ } | undefined;
1497
+ segment?: {
1498
+ key: string;
1499
+ } | undefined;
1500
+ }>>;
1501
+ theme: z.ZodLiteral<"willow">;
1502
+ }, "strip", z.ZodTypeAny, {
1503
+ name: string;
1504
+ $schema: string;
1505
+ theme: "willow";
1506
+ colors: {
1507
+ primary: string;
1508
+ light?: string | undefined;
1509
+ dark?: string | undefined;
1510
+ };
1511
+ navigation: ({
1512
+ global?: {
1513
+ languages?: ({
1514
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1515
+ hidden?: boolean | undefined;
1516
+ openapi?: string | string[] | undefined;
1517
+ } & {
1518
+ href: string;
1519
+ })[] | undefined;
1520
+ versions?: ({
1521
+ version: string;
1522
+ hidden?: boolean | undefined;
1523
+ openapi?: string | string[] | undefined;
1524
+ } & {
1525
+ href: string;
1526
+ })[] | undefined;
1527
+ tabs?: ({
1528
+ tab: string;
1529
+ icon?: string | {
1530
+ name: string;
1531
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1532
+ } | undefined;
1533
+ hidden?: boolean | undefined;
1534
+ openapi?: string | string[] | undefined;
1535
+ } & {
1536
+ href: string;
1537
+ })[] | undefined;
1538
+ dropdowns?: ({
1539
+ dropdown: string;
1540
+ icon?: string | {
1541
+ name: string;
1542
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1543
+ } | undefined;
1544
+ hidden?: boolean | undefined;
1545
+ openapi?: string | string[] | undefined;
1546
+ } & {
1547
+ href: string;
1548
+ })[] | undefined;
1549
+ anchors?: ({
1550
+ anchor: string;
1551
+ icon?: string | {
1552
+ name: string;
1553
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1554
+ } | undefined;
1555
+ color?: {
1556
+ light?: string | undefined;
1557
+ dark?: string | undefined;
1558
+ } | undefined;
1559
+ hidden?: boolean | undefined;
1560
+ openapi?: string | string[] | undefined;
1561
+ } & {
1562
+ href: string;
1563
+ })[] | undefined;
1564
+ } | undefined;
1565
+ } & ({
1566
+ languages: any[];
1567
+ } | {
1568
+ versions: any[];
1569
+ } | {
1570
+ tabs: any[];
1571
+ } | {
1572
+ dropdowns: any[];
1573
+ } | {
1574
+ anchors: any[];
1575
+ } | {
1576
+ groups: ({
1577
+ group: string;
1578
+ icon?: string | {
1579
+ name: string;
1580
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1581
+ } | undefined;
1582
+ hidden?: boolean | 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;
1610
+ } & ({
1611
+ openapi: (string | string[]) & (string | string[] | undefined);
1612
+ } | {
1613
+ pages: any[];
1614
+ }))[];
1615
+ } | {
1616
+ pages: any[];
1617
+ })) & (({
1618
+ global?: {
1619
+ languages?: ({
1620
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1621
+ hidden?: boolean | undefined;
1622
+ openapi?: string | string[] | undefined;
1623
+ } & {
1624
+ href: string;
1625
+ })[] | undefined;
1626
+ versions?: ({
1627
+ version: string;
1628
+ hidden?: boolean | undefined;
1629
+ openapi?: string | string[] | undefined;
1630
+ } & {
1631
+ href: string;
1632
+ })[] | undefined;
1633
+ tabs?: ({
1634
+ tab: string;
1635
+ icon?: string | {
1636
+ name: string;
1637
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1638
+ } | undefined;
1639
+ hidden?: boolean | undefined;
1640
+ openapi?: string | string[] | undefined;
1641
+ } & {
1642
+ href: string;
1643
+ })[] | undefined;
1644
+ dropdowns?: ({
1645
+ dropdown: string;
1646
+ icon?: string | {
1647
+ name: string;
1648
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1649
+ } | undefined;
1650
+ hidden?: boolean | undefined;
1651
+ openapi?: string | string[] | undefined;
1652
+ } & {
1653
+ href: string;
1654
+ })[] | undefined;
1655
+ anchors?: ({
1656
+ anchor: string;
1657
+ icon?: string | {
1658
+ name: string;
1659
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1660
+ } | undefined;
1661
+ color?: {
1662
+ light?: string | undefined;
1663
+ dark?: string | undefined;
1664
+ } | undefined;
1665
+ hidden?: boolean | undefined;
1666
+ openapi?: string | string[] | undefined;
1667
+ } & {
1668
+ href: string;
1669
+ })[] | undefined;
1670
+ } | 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);
1724
+ description?: string | undefined;
1725
+ logo?: string | {
1726
+ light: string;
1727
+ dark: string;
1728
+ href?: string | undefined;
1729
+ } | undefined;
1730
+ favicon?: string | {
1731
+ light: string;
1732
+ dark: string;
1733
+ } | undefined;
1734
+ api?: {
1735
+ openapi?: string | string[] | undefined;
1736
+ playground?: {
1737
+ display?: "simple" | "none" | "interactive" | undefined;
1738
+ proxy?: boolean | undefined;
1739
+ } | undefined;
1740
+ examples?: {
1741
+ languages?: string[] | undefined;
1742
+ } | undefined;
1743
+ mdx?: {
1744
+ auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
1745
+ server?: string | string[] | undefined;
1746
+ } | undefined;
1747
+ } | undefined;
1748
+ appearance?: {
1749
+ default?: "light" | "dark" | "system" | undefined;
1750
+ strict?: boolean | undefined;
1751
+ } | undefined;
1752
+ background?: {
1753
+ image?: string | {
1754
+ light: string;
1755
+ dark: string;
1756
+ } | undefined;
1757
+ decoration?: "gradient" | "grid" | "windows" | undefined;
1758
+ color?: {
1759
+ light?: string | undefined;
1760
+ dark?: string | undefined;
1761
+ } | undefined;
1762
+ } | undefined;
1763
+ topbar?: {
1764
+ links?: {
1765
+ href: string;
1766
+ label: string;
1767
+ }[] | undefined;
1768
+ primary?: {
1769
+ type: "button";
1770
+ href: string;
1771
+ label: string;
1772
+ } | {
1773
+ type: "github";
1774
+ href: string;
1775
+ } | undefined;
1776
+ } | undefined;
1777
+ footer?: {
1778
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter", string>> | undefined;
1779
+ links?: {
1780
+ items: {
1781
+ href: string;
1782
+ label: string;
1783
+ }[];
1784
+ header?: string | undefined;
1785
+ }[] | undefined;
1786
+ } | undefined;
1787
+ search?: {
1788
+ prompt?: string | undefined;
1789
+ } | undefined;
1790
+ seo?: {
1791
+ metatags?: Record<string, string> | undefined;
1792
+ indexing?: "all" | "navigable" | undefined;
1793
+ } | undefined;
1794
+ fonts?: {
1795
+ family: string;
1796
+ weight?: number | undefined;
1797
+ source?: string | undefined;
1798
+ format?: "woff" | "woff2" | undefined;
1799
+ } | {
1800
+ heading?: {
1801
+ family: string;
1802
+ weight?: number | undefined;
1803
+ source?: string | undefined;
1804
+ format?: "woff" | "woff2" | undefined;
1805
+ } | undefined;
1806
+ body?: {
1807
+ family: string;
1808
+ weight?: number | undefined;
1809
+ source?: string | undefined;
1810
+ format?: "woff" | "woff2" | undefined;
1811
+ } | undefined;
1812
+ } | undefined;
1813
+ icons?: {
1814
+ library: "fontawesome";
1815
+ } | undefined;
1816
+ styling?: {
1817
+ rounded?: "regular" | "sharp" | undefined;
1818
+ eyebrows?: "section" | "breadcrumbs" | undefined;
1819
+ codeblocks?: "dark" | "system" | undefined;
1820
+ } | undefined;
1821
+ redirects?: {
1822
+ source: string;
1823
+ destination: string;
1824
+ permanent?: boolean | undefined;
1825
+ }[] | undefined;
1826
+ integrations?: {
1827
+ amplitude?: {
1828
+ apiKey: string;
1829
+ } | undefined;
1830
+ clearbit?: {
1831
+ publicApiKey: string;
1832
+ } | undefined;
1833
+ fathom?: {
1834
+ siteId: string;
1835
+ } | undefined;
1836
+ frontchat?: {
1837
+ snippetId: string;
1838
+ } | undefined;
1839
+ ga4?: {
1840
+ measurementId: string;
1841
+ } | undefined;
1842
+ gtm?: {
1843
+ tagId: string;
1844
+ } | undefined;
1845
+ heap?: {
1846
+ appId: string;
1847
+ } | undefined;
1848
+ hotjar?: {
1849
+ hjid: string;
1850
+ hjsv: string;
1851
+ } | undefined;
1852
+ intercom?: {
1853
+ appId: string;
1854
+ } | undefined;
1855
+ koala?: {
1856
+ publicApiKey: string;
1857
+ } | undefined;
1858
+ logrocket?: {
1859
+ appId: string;
1860
+ } | undefined;
1861
+ mixpanel?: {
1862
+ projectToken: string;
1863
+ } | undefined;
1864
+ osano?: {
1865
+ scriptSource: string;
1866
+ } | undefined;
1867
+ pirsch?: {
1868
+ id: string;
1869
+ } | undefined;
1870
+ posthog?: {
1871
+ apiKey: string;
1872
+ apiHost?: string | undefined;
1873
+ } | undefined;
1874
+ plausible?: {
1875
+ domain: string;
1876
+ server?: string | undefined;
1877
+ } | undefined;
1878
+ segment?: {
1879
+ key: string;
1880
+ } | undefined;
1881
+ } | undefined;
1882
+ }, {
1883
+ name: string;
1884
+ theme: "willow";
1885
+ colors: {
1886
+ primary: string;
1887
+ light?: string | undefined;
1888
+ dark?: string | undefined;
1889
+ };
1890
+ navigation: ({
1891
+ global?: {
1892
+ languages?: ({
1893
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
1894
+ hidden?: boolean | undefined;
1895
+ openapi?: string | string[] | undefined;
1896
+ } & {
1897
+ href: string;
1898
+ })[] | undefined;
1899
+ versions?: ({
1900
+ version: string;
1901
+ hidden?: boolean | undefined;
1902
+ openapi?: string | string[] | undefined;
1903
+ } & {
1904
+ href: string;
1905
+ })[] | undefined;
1906
+ tabs?: ({
1907
+ tab: string;
1908
+ icon?: string | {
1909
+ name: string;
1910
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1911
+ } | undefined;
1912
+ hidden?: boolean | undefined;
1913
+ openapi?: string | string[] | undefined;
1914
+ } & {
1915
+ href: string;
1916
+ })[] | undefined;
1917
+ dropdowns?: ({
1918
+ dropdown: string;
1919
+ icon?: string | {
1920
+ name: string;
1921
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1922
+ } | undefined;
1923
+ hidden?: boolean | undefined;
1924
+ openapi?: string | string[] | undefined;
1925
+ } & {
1926
+ href: string;
1927
+ })[] | undefined;
1928
+ anchors?: ({
1929
+ anchor: string;
1930
+ icon?: string | {
1931
+ name: string;
1932
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1933
+ } | undefined;
1934
+ color?: {
1935
+ light?: string | undefined;
1936
+ dark?: string | undefined;
1937
+ } | undefined;
1938
+ hidden?: boolean | undefined;
1939
+ openapi?: string | string[] | undefined;
1940
+ } & {
1941
+ href: string;
1942
+ })[] | undefined;
1943
+ } | undefined;
1944
+ } & ({
1945
+ languages: any[];
1946
+ } | {
1947
+ versions: any[];
1948
+ } | {
1949
+ tabs: any[];
1950
+ } | {
1951
+ dropdowns: any[];
1952
+ } | {
1953
+ anchors: any[];
1954
+ } | {
1955
+ groups: ({
1956
+ group: string;
1957
+ icon?: string | {
1958
+ name: string;
1959
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
1960
+ } | undefined;
1961
+ hidden?: boolean | 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;
1989
+ } & ({
1990
+ openapi: (string | string[]) & (string | string[] | undefined);
1991
+ } | {
1992
+ pages: any[];
1993
+ }))[];
1994
+ } | {
1995
+ pages: any[];
1996
+ })) & (({
1997
+ global?: {
1998
+ languages?: ({
1999
+ language: "en" | "cn" | "es" | "fr" | "jp" | "pt" | "pt-BR" | "de";
2000
+ hidden?: boolean | undefined;
2001
+ openapi?: string | string[] | undefined;
2002
+ } & {
2003
+ href: string;
2004
+ })[] | undefined;
2005
+ versions?: ({
2006
+ version: string;
2007
+ hidden?: boolean | undefined;
2008
+ openapi?: string | string[] | undefined;
2009
+ } & {
2010
+ href: string;
2011
+ })[] | undefined;
2012
+ tabs?: ({
2013
+ tab: string;
2014
+ icon?: string | {
2015
+ name: string;
2016
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2017
+ } | undefined;
2018
+ hidden?: boolean | undefined;
2019
+ openapi?: string | string[] | undefined;
2020
+ } & {
2021
+ href: string;
2022
+ })[] | undefined;
2023
+ dropdowns?: ({
2024
+ dropdown: string;
2025
+ icon?: string | {
2026
+ name: string;
2027
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2028
+ } | undefined;
2029
+ hidden?: boolean | undefined;
2030
+ openapi?: string | string[] | undefined;
2031
+ } & {
2032
+ href: string;
2033
+ })[] | undefined;
2034
+ anchors?: ({
2035
+ anchor: string;
2036
+ icon?: string | {
2037
+ name: string;
2038
+ style?: "brands" | "duotone" | "light" | "regular" | "sharp-duotone-solid" | "sharp-light" | "sharp-regular" | "sharp-solid" | "sharp-thin" | "solid" | "thin" | undefined;
2039
+ } | undefined;
2040
+ color?: {
2041
+ light?: string | undefined;
2042
+ dark?: string | undefined;
2043
+ } | undefined;
2044
+ hidden?: boolean | undefined;
2045
+ openapi?: string | string[] | undefined;
2046
+ } & {
2047
+ href: string;
2048
+ })[] | undefined;
2049
+ } | 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);
2103
+ $schema?: string | undefined;
2104
+ description?: string | undefined;
2105
+ logo?: string | {
2106
+ light: string;
2107
+ dark: string;
2108
+ href?: string | undefined;
2109
+ } | undefined;
2110
+ favicon?: string | {
2111
+ light: string;
2112
+ dark: string;
2113
+ } | undefined;
2114
+ api?: {
2115
+ openapi?: string | string[] | undefined;
2116
+ playground?: {
2117
+ display?: "simple" | "none" | "interactive" | undefined;
2118
+ proxy?: boolean | undefined;
2119
+ } | undefined;
2120
+ examples?: {
2121
+ languages?: string[] | undefined;
2122
+ } | undefined;
2123
+ mdx?: {
2124
+ auth?: "key" | "bearer" | "basic" | "cobo" | undefined;
2125
+ server?: string | string[] | undefined;
2126
+ } | undefined;
2127
+ } | undefined;
2128
+ appearance?: {
2129
+ default?: "light" | "dark" | "system" | undefined;
2130
+ strict?: boolean | undefined;
2131
+ } | undefined;
2132
+ background?: {
2133
+ image?: string | {
2134
+ light: string;
2135
+ dark: string;
2136
+ } | undefined;
2137
+ decoration?: "gradient" | "grid" | "windows" | undefined;
2138
+ color?: {
2139
+ light?: string | undefined;
2140
+ dark?: string | undefined;
2141
+ } | undefined;
2142
+ } | undefined;
2143
+ topbar?: {
2144
+ links?: {
2145
+ href: string;
2146
+ label: string;
2147
+ }[] | undefined;
2148
+ primary?: {
2149
+ type: "button";
2150
+ href: string;
2151
+ label: string;
2152
+ } | {
2153
+ type: "github";
2154
+ href: string;
2155
+ } | undefined;
2156
+ } | undefined;
2157
+ footer?: {
2158
+ socials?: Partial<Record<"github" | "x" | "website" | "facebook" | "youtube" | "discord" | "slack" | "linkedin" | "instagram" | "hacker-news" | "medium" | "telegram" | "twitter", string>> | undefined;
2159
+ links?: {
2160
+ items: {
2161
+ href: string;
2162
+ label: string;
2163
+ }[];
2164
+ header?: string | undefined;
2165
+ }[] | undefined;
2166
+ } | undefined;
2167
+ search?: {
2168
+ prompt?: string | undefined;
2169
+ } | undefined;
2170
+ seo?: {
2171
+ metatags?: Record<string, string> | undefined;
2172
+ indexing?: "all" | "navigable" | undefined;
2173
+ } | undefined;
2174
+ fonts?: {
2175
+ family: string;
2176
+ weight?: number | undefined;
2177
+ source?: string | undefined;
2178
+ format?: "woff" | "woff2" | undefined;
2179
+ } | {
2180
+ heading?: {
2181
+ family: string;
2182
+ weight?: number | undefined;
2183
+ source?: string | undefined;
2184
+ format?: "woff" | "woff2" | undefined;
2185
+ } | undefined;
2186
+ body?: {
2187
+ family: string;
2188
+ weight?: number | undefined;
2189
+ source?: string | undefined;
2190
+ format?: "woff" | "woff2" | undefined;
2191
+ } | undefined;
2192
+ } | undefined;
2193
+ icons?: {
2194
+ library: "fontawesome";
2195
+ } | undefined;
2196
+ styling?: {
2197
+ rounded?: "regular" | "sharp" | undefined;
2198
+ eyebrows?: "section" | "breadcrumbs" | undefined;
2199
+ codeblocks?: "dark" | "system" | undefined;
2200
+ } | undefined;
2201
+ redirects?: {
2202
+ source: string;
2203
+ destination: string;
2204
+ permanent?: boolean | undefined;
2205
+ }[] | undefined;
2206
+ integrations?: {
2207
+ amplitude?: {
2208
+ apiKey: string;
2209
+ } | undefined;
2210
+ clearbit?: {
2211
+ publicApiKey: string;
2212
+ } | undefined;
2213
+ fathom?: {
2214
+ siteId: string;
2215
+ } | undefined;
2216
+ frontchat?: {
2217
+ snippetId: string;
2218
+ } | undefined;
2219
+ ga4?: {
2220
+ measurementId: string;
2221
+ } | undefined;
2222
+ gtm?: {
2223
+ tagId: string;
2224
+ } | undefined;
2225
+ heap?: {
2226
+ appId: string;
2227
+ } | undefined;
2228
+ hotjar?: {
2229
+ hjid: string;
2230
+ hjsv: string;
2231
+ } | undefined;
2232
+ intercom?: {
2233
+ appId: string;
2234
+ } | undefined;
2235
+ koala?: {
2236
+ publicApiKey: string;
2237
+ } | undefined;
2238
+ logrocket?: {
2239
+ appId: string;
2240
+ } | undefined;
2241
+ mixpanel?: {
2242
+ projectToken: string;
2243
+ } | undefined;
2244
+ osano?: {
2245
+ scriptSource: string;
2246
+ } | undefined;
2247
+ pirsch?: {
2248
+ id: string;
2249
+ } | undefined;
2250
+ posthog?: {
2251
+ apiKey: string;
2252
+ apiHost?: string | undefined;
2253
+ } | undefined;
2254
+ plausible?: {
2255
+ domain: string;
2256
+ server?: string | undefined;
2257
+ } | undefined;
2258
+ segment?: {
2259
+ key: string;
2260
+ } | undefined;
2261
+ } | undefined;
2262
+ }>;