@mintlify/validation 0.1.677 → 0.1.678

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.
@@ -7,11 +7,32 @@ export declare const baseLanguageSchema: z.ZodObject<{
7
7
  banner: z.ZodOptional<z.ZodObject<{
8
8
  content: z.ZodString;
9
9
  dismissible: z.ZodOptional<z.ZodBoolean>;
10
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
11
+ color: z.ZodOptional<z.ZodObject<{
12
+ light: z.ZodOptional<z.ZodString>;
13
+ dark: z.ZodOptional<z.ZodString>;
14
+ }, "strict", z.ZodTypeAny, {
15
+ light?: string | undefined;
16
+ dark?: string | undefined;
17
+ }, {
18
+ light?: string | undefined;
19
+ dark?: string | undefined;
20
+ }>>;
10
21
  }, "strip", z.ZodTypeAny, {
11
22
  content: string;
23
+ type?: "info" | "warning" | "critical" | undefined;
24
+ color?: {
25
+ light?: string | undefined;
26
+ dark?: string | undefined;
27
+ } | undefined;
12
28
  dismissible?: boolean | undefined;
13
29
  }, {
14
30
  content: string;
31
+ type?: "info" | "warning" | "critical" | undefined;
32
+ color?: {
33
+ light?: string | undefined;
34
+ dark?: string | undefined;
35
+ } | undefined;
15
36
  dismissible?: boolean | undefined;
16
37
  }>>;
17
38
  footer: z.ZodOptional<z.ZodObject<{
@@ -310,6 +331,11 @@ export declare const baseLanguageSchema: z.ZodObject<{
310
331
  hidden?: boolean | undefined;
311
332
  banner?: {
312
333
  content: string;
334
+ type?: "info" | "warning" | "critical" | undefined;
335
+ color?: {
336
+ light?: string | undefined;
337
+ dark?: string | undefined;
338
+ } | undefined;
313
339
  dismissible?: boolean | undefined;
314
340
  } | undefined;
315
341
  navbar?: {
@@ -372,6 +398,11 @@ export declare const baseLanguageSchema: z.ZodObject<{
372
398
  hidden?: boolean | undefined;
373
399
  banner?: {
374
400
  content: string;
401
+ type?: "info" | "warning" | "critical" | undefined;
402
+ color?: {
403
+ light?: string | undefined;
404
+ dark?: string | undefined;
405
+ } | undefined;
375
406
  dismissible?: boolean | undefined;
376
407
  } | undefined;
377
408
  navbar?: {
@@ -426,11 +457,32 @@ export declare const nonRecursiveLanguageSchema: z.ZodObject<{
426
457
  banner: z.ZodOptional<z.ZodObject<{
427
458
  content: z.ZodString;
428
459
  dismissible: z.ZodOptional<z.ZodBoolean>;
460
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
461
+ color: z.ZodOptional<z.ZodObject<{
462
+ light: z.ZodOptional<z.ZodString>;
463
+ dark: z.ZodOptional<z.ZodString>;
464
+ }, "strict", z.ZodTypeAny, {
465
+ light?: string | undefined;
466
+ dark?: string | undefined;
467
+ }, {
468
+ light?: string | undefined;
469
+ dark?: string | undefined;
470
+ }>>;
429
471
  }, "strip", z.ZodTypeAny, {
430
472
  content: string;
473
+ type?: "info" | "warning" | "critical" | undefined;
474
+ color?: {
475
+ light?: string | undefined;
476
+ dark?: string | undefined;
477
+ } | undefined;
431
478
  dismissible?: boolean | undefined;
432
479
  }, {
433
480
  content: string;
481
+ type?: "info" | "warning" | "critical" | undefined;
482
+ color?: {
483
+ light?: string | undefined;
484
+ dark?: string | undefined;
485
+ } | undefined;
434
486
  dismissible?: boolean | undefined;
435
487
  }>>;
436
488
  footer: z.ZodOptional<z.ZodObject<{
@@ -732,6 +784,11 @@ export declare const nonRecursiveLanguageSchema: z.ZodObject<{
732
784
  hidden?: boolean | undefined;
733
785
  banner?: {
734
786
  content: string;
787
+ type?: "info" | "warning" | "critical" | undefined;
788
+ color?: {
789
+ light?: string | undefined;
790
+ dark?: string | undefined;
791
+ } | undefined;
735
792
  dismissible?: boolean | undefined;
736
793
  } | undefined;
737
794
  navbar?: {
@@ -795,6 +852,11 @@ export declare const nonRecursiveLanguageSchema: z.ZodObject<{
795
852
  hidden?: boolean | undefined;
796
853
  banner?: {
797
854
  content: string;
855
+ type?: "info" | "warning" | "critical" | undefined;
856
+ color?: {
857
+ light?: string | undefined;
858
+ dark?: string | undefined;
859
+ } | undefined;
798
860
  dismissible?: boolean | undefined;
799
861
  } | undefined;
800
862
  navbar?: {
@@ -1342,11 +1342,32 @@ export declare const almondConfigSchema: z.ZodObject<{
1342
1342
  banner: z.ZodOptional<z.ZodObject<{
1343
1343
  content: z.ZodString;
1344
1344
  dismissible: z.ZodOptional<z.ZodBoolean>;
1345
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
1346
+ color: z.ZodOptional<z.ZodObject<{
1347
+ light: z.ZodOptional<z.ZodString>;
1348
+ dark: z.ZodOptional<z.ZodString>;
1349
+ }, "strict", z.ZodTypeAny, {
1350
+ light?: string | undefined;
1351
+ dark?: string | undefined;
1352
+ }, {
1353
+ light?: string | undefined;
1354
+ dark?: string | undefined;
1355
+ }>>;
1345
1356
  }, "strip", z.ZodTypeAny, {
1346
1357
  content: string;
1358
+ type?: "info" | "warning" | "critical" | undefined;
1359
+ color?: {
1360
+ light?: string | undefined;
1361
+ dark?: string | undefined;
1362
+ } | undefined;
1347
1363
  dismissible?: boolean | undefined;
1348
1364
  }, {
1349
1365
  content: string;
1366
+ type?: "info" | "warning" | "critical" | undefined;
1367
+ color?: {
1368
+ light?: string | undefined;
1369
+ dark?: string | undefined;
1370
+ } | undefined;
1350
1371
  dismissible?: boolean | undefined;
1351
1372
  }>>;
1352
1373
  errors: z.ZodOptional<z.ZodObject<{
@@ -1799,6 +1820,11 @@ export declare const almondConfigSchema: z.ZodObject<{
1799
1820
  description?: string | undefined;
1800
1821
  banner?: {
1801
1822
  content: string;
1823
+ type?: "info" | "warning" | "critical" | undefined;
1824
+ color?: {
1825
+ light?: string | undefined;
1826
+ dark?: string | undefined;
1827
+ } | undefined;
1802
1828
  dismissible?: boolean | undefined;
1803
1829
  } | undefined;
1804
1830
  navbar?: {
@@ -2163,6 +2189,11 @@ export declare const almondConfigSchema: z.ZodObject<{
2163
2189
  description?: string | undefined;
2164
2190
  banner?: {
2165
2191
  content: string;
2192
+ type?: "info" | "warning" | "critical" | undefined;
2193
+ color?: {
2194
+ light?: string | undefined;
2195
+ dark?: string | undefined;
2196
+ } | undefined;
2166
2197
  dismissible?: boolean | undefined;
2167
2198
  } | undefined;
2168
2199
  navbar?: {
@@ -1342,11 +1342,32 @@ export declare const aspenConfigSchema: z.ZodObject<{
1342
1342
  banner: z.ZodOptional<z.ZodObject<{
1343
1343
  content: z.ZodString;
1344
1344
  dismissible: z.ZodOptional<z.ZodBoolean>;
1345
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
1346
+ color: z.ZodOptional<z.ZodObject<{
1347
+ light: z.ZodOptional<z.ZodString>;
1348
+ dark: z.ZodOptional<z.ZodString>;
1349
+ }, "strict", z.ZodTypeAny, {
1350
+ light?: string | undefined;
1351
+ dark?: string | undefined;
1352
+ }, {
1353
+ light?: string | undefined;
1354
+ dark?: string | undefined;
1355
+ }>>;
1345
1356
  }, "strip", z.ZodTypeAny, {
1346
1357
  content: string;
1358
+ type?: "info" | "warning" | "critical" | undefined;
1359
+ color?: {
1360
+ light?: string | undefined;
1361
+ dark?: string | undefined;
1362
+ } | undefined;
1347
1363
  dismissible?: boolean | undefined;
1348
1364
  }, {
1349
1365
  content: string;
1366
+ type?: "info" | "warning" | "critical" | undefined;
1367
+ color?: {
1368
+ light?: string | undefined;
1369
+ dark?: string | undefined;
1370
+ } | undefined;
1350
1371
  dismissible?: boolean | undefined;
1351
1372
  }>>;
1352
1373
  errors: z.ZodOptional<z.ZodObject<{
@@ -1799,6 +1820,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
1799
1820
  description?: string | undefined;
1800
1821
  banner?: {
1801
1822
  content: string;
1823
+ type?: "info" | "warning" | "critical" | undefined;
1824
+ color?: {
1825
+ light?: string | undefined;
1826
+ dark?: string | undefined;
1827
+ } | undefined;
1802
1828
  dismissible?: boolean | undefined;
1803
1829
  } | undefined;
1804
1830
  navbar?: {
@@ -2163,6 +2189,11 @@ export declare const aspenConfigSchema: z.ZodObject<{
2163
2189
  description?: string | undefined;
2164
2190
  banner?: {
2165
2191
  content: string;
2192
+ type?: "info" | "warning" | "critical" | undefined;
2193
+ color?: {
2194
+ light?: string | undefined;
2195
+ dark?: string | undefined;
2196
+ } | undefined;
2166
2197
  dismissible?: boolean | undefined;
2167
2198
  } | undefined;
2168
2199
  navbar?: {
@@ -1342,11 +1342,32 @@ export declare const lindenConfigSchema: z.ZodObject<{
1342
1342
  banner: z.ZodOptional<z.ZodObject<{
1343
1343
  content: z.ZodString;
1344
1344
  dismissible: z.ZodOptional<z.ZodBoolean>;
1345
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
1346
+ color: z.ZodOptional<z.ZodObject<{
1347
+ light: z.ZodOptional<z.ZodString>;
1348
+ dark: z.ZodOptional<z.ZodString>;
1349
+ }, "strict", z.ZodTypeAny, {
1350
+ light?: string | undefined;
1351
+ dark?: string | undefined;
1352
+ }, {
1353
+ light?: string | undefined;
1354
+ dark?: string | undefined;
1355
+ }>>;
1345
1356
  }, "strip", z.ZodTypeAny, {
1346
1357
  content: string;
1358
+ type?: "info" | "warning" | "critical" | undefined;
1359
+ color?: {
1360
+ light?: string | undefined;
1361
+ dark?: string | undefined;
1362
+ } | undefined;
1347
1363
  dismissible?: boolean | undefined;
1348
1364
  }, {
1349
1365
  content: string;
1366
+ type?: "info" | "warning" | "critical" | undefined;
1367
+ color?: {
1368
+ light?: string | undefined;
1369
+ dark?: string | undefined;
1370
+ } | undefined;
1350
1371
  dismissible?: boolean | undefined;
1351
1372
  }>>;
1352
1373
  errors: z.ZodOptional<z.ZodObject<{
@@ -1799,6 +1820,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
1799
1820
  description?: string | undefined;
1800
1821
  banner?: {
1801
1822
  content: string;
1823
+ type?: "info" | "warning" | "critical" | undefined;
1824
+ color?: {
1825
+ light?: string | undefined;
1826
+ dark?: string | undefined;
1827
+ } | undefined;
1802
1828
  dismissible?: boolean | undefined;
1803
1829
  } | undefined;
1804
1830
  navbar?: {
@@ -2163,6 +2189,11 @@ export declare const lindenConfigSchema: z.ZodObject<{
2163
2189
  description?: string | undefined;
2164
2190
  banner?: {
2165
2191
  content: string;
2192
+ type?: "info" | "warning" | "critical" | undefined;
2193
+ color?: {
2194
+ light?: string | undefined;
2195
+ dark?: string | undefined;
2196
+ } | undefined;
2166
2197
  dismissible?: boolean | undefined;
2167
2198
  } | undefined;
2168
2199
  navbar?: {
@@ -1342,11 +1342,32 @@ export declare const lumaConfigSchema: z.ZodObject<{
1342
1342
  banner: z.ZodOptional<z.ZodObject<{
1343
1343
  content: z.ZodString;
1344
1344
  dismissible: z.ZodOptional<z.ZodBoolean>;
1345
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
1346
+ color: z.ZodOptional<z.ZodObject<{
1347
+ light: z.ZodOptional<z.ZodString>;
1348
+ dark: z.ZodOptional<z.ZodString>;
1349
+ }, "strict", z.ZodTypeAny, {
1350
+ light?: string | undefined;
1351
+ dark?: string | undefined;
1352
+ }, {
1353
+ light?: string | undefined;
1354
+ dark?: string | undefined;
1355
+ }>>;
1345
1356
  }, "strip", z.ZodTypeAny, {
1346
1357
  content: string;
1358
+ type?: "info" | "warning" | "critical" | undefined;
1359
+ color?: {
1360
+ light?: string | undefined;
1361
+ dark?: string | undefined;
1362
+ } | undefined;
1347
1363
  dismissible?: boolean | undefined;
1348
1364
  }, {
1349
1365
  content: string;
1366
+ type?: "info" | "warning" | "critical" | undefined;
1367
+ color?: {
1368
+ light?: string | undefined;
1369
+ dark?: string | undefined;
1370
+ } | undefined;
1350
1371
  dismissible?: boolean | undefined;
1351
1372
  }>>;
1352
1373
  errors: z.ZodOptional<z.ZodObject<{
@@ -1799,6 +1820,11 @@ export declare const lumaConfigSchema: z.ZodObject<{
1799
1820
  description?: string | undefined;
1800
1821
  banner?: {
1801
1822
  content: string;
1823
+ type?: "info" | "warning" | "critical" | undefined;
1824
+ color?: {
1825
+ light?: string | undefined;
1826
+ dark?: string | undefined;
1827
+ } | undefined;
1802
1828
  dismissible?: boolean | undefined;
1803
1829
  } | undefined;
1804
1830
  navbar?: {
@@ -2163,6 +2189,11 @@ export declare const lumaConfigSchema: z.ZodObject<{
2163
2189
  description?: string | undefined;
2164
2190
  banner?: {
2165
2191
  content: string;
2192
+ type?: "info" | "warning" | "critical" | undefined;
2193
+ color?: {
2194
+ light?: string | undefined;
2195
+ dark?: string | undefined;
2196
+ } | undefined;
2166
2197
  dismissible?: boolean | undefined;
2167
2198
  } | undefined;
2168
2199
  navbar?: {
@@ -1342,11 +1342,32 @@ export declare const mapleConfigSchema: z.ZodObject<{
1342
1342
  banner: z.ZodOptional<z.ZodObject<{
1343
1343
  content: z.ZodString;
1344
1344
  dismissible: z.ZodOptional<z.ZodBoolean>;
1345
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
1346
+ color: z.ZodOptional<z.ZodObject<{
1347
+ light: z.ZodOptional<z.ZodString>;
1348
+ dark: z.ZodOptional<z.ZodString>;
1349
+ }, "strict", z.ZodTypeAny, {
1350
+ light?: string | undefined;
1351
+ dark?: string | undefined;
1352
+ }, {
1353
+ light?: string | undefined;
1354
+ dark?: string | undefined;
1355
+ }>>;
1345
1356
  }, "strip", z.ZodTypeAny, {
1346
1357
  content: string;
1358
+ type?: "info" | "warning" | "critical" | undefined;
1359
+ color?: {
1360
+ light?: string | undefined;
1361
+ dark?: string | undefined;
1362
+ } | undefined;
1347
1363
  dismissible?: boolean | undefined;
1348
1364
  }, {
1349
1365
  content: string;
1366
+ type?: "info" | "warning" | "critical" | undefined;
1367
+ color?: {
1368
+ light?: string | undefined;
1369
+ dark?: string | undefined;
1370
+ } | undefined;
1350
1371
  dismissible?: boolean | undefined;
1351
1372
  }>>;
1352
1373
  errors: z.ZodOptional<z.ZodObject<{
@@ -1799,6 +1820,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
1799
1820
  description?: string | undefined;
1800
1821
  banner?: {
1801
1822
  content: string;
1823
+ type?: "info" | "warning" | "critical" | undefined;
1824
+ color?: {
1825
+ light?: string | undefined;
1826
+ dark?: string | undefined;
1827
+ } | undefined;
1802
1828
  dismissible?: boolean | undefined;
1803
1829
  } | undefined;
1804
1830
  navbar?: {
@@ -2163,6 +2189,11 @@ export declare const mapleConfigSchema: z.ZodObject<{
2163
2189
  description?: string | undefined;
2164
2190
  banner?: {
2165
2191
  content: string;
2192
+ type?: "info" | "warning" | "critical" | undefined;
2193
+ color?: {
2194
+ light?: string | undefined;
2195
+ dark?: string | undefined;
2196
+ } | undefined;
2166
2197
  dismissible?: boolean | undefined;
2167
2198
  } | undefined;
2168
2199
  navbar?: {
@@ -1342,11 +1342,32 @@ export declare const mintConfigSchema: z.ZodObject<{
1342
1342
  banner: z.ZodOptional<z.ZodObject<{
1343
1343
  content: z.ZodString;
1344
1344
  dismissible: z.ZodOptional<z.ZodBoolean>;
1345
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
1346
+ color: z.ZodOptional<z.ZodObject<{
1347
+ light: z.ZodOptional<z.ZodString>;
1348
+ dark: z.ZodOptional<z.ZodString>;
1349
+ }, "strict", z.ZodTypeAny, {
1350
+ light?: string | undefined;
1351
+ dark?: string | undefined;
1352
+ }, {
1353
+ light?: string | undefined;
1354
+ dark?: string | undefined;
1355
+ }>>;
1345
1356
  }, "strip", z.ZodTypeAny, {
1346
1357
  content: string;
1358
+ type?: "info" | "warning" | "critical" | undefined;
1359
+ color?: {
1360
+ light?: string | undefined;
1361
+ dark?: string | undefined;
1362
+ } | undefined;
1347
1363
  dismissible?: boolean | undefined;
1348
1364
  }, {
1349
1365
  content: string;
1366
+ type?: "info" | "warning" | "critical" | undefined;
1367
+ color?: {
1368
+ light?: string | undefined;
1369
+ dark?: string | undefined;
1370
+ } | undefined;
1350
1371
  dismissible?: boolean | undefined;
1351
1372
  }>>;
1352
1373
  errors: z.ZodOptional<z.ZodObject<{
@@ -1799,6 +1820,11 @@ export declare const mintConfigSchema: z.ZodObject<{
1799
1820
  description?: string | undefined;
1800
1821
  banner?: {
1801
1822
  content: string;
1823
+ type?: "info" | "warning" | "critical" | undefined;
1824
+ color?: {
1825
+ light?: string | undefined;
1826
+ dark?: string | undefined;
1827
+ } | undefined;
1802
1828
  dismissible?: boolean | undefined;
1803
1829
  } | undefined;
1804
1830
  navbar?: {
@@ -2163,6 +2189,11 @@ export declare const mintConfigSchema: z.ZodObject<{
2163
2189
  description?: string | undefined;
2164
2190
  banner?: {
2165
2191
  content: string;
2192
+ type?: "info" | "warning" | "critical" | undefined;
2193
+ color?: {
2194
+ light?: string | undefined;
2195
+ dark?: string | undefined;
2196
+ } | undefined;
2166
2197
  dismissible?: boolean | undefined;
2167
2198
  } | undefined;
2168
2199
  navbar?: {
@@ -1342,11 +1342,32 @@ export declare const palmConfigSchema: z.ZodObject<{
1342
1342
  banner: z.ZodOptional<z.ZodObject<{
1343
1343
  content: z.ZodString;
1344
1344
  dismissible: z.ZodOptional<z.ZodBoolean>;
1345
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
1346
+ color: z.ZodOptional<z.ZodObject<{
1347
+ light: z.ZodOptional<z.ZodString>;
1348
+ dark: z.ZodOptional<z.ZodString>;
1349
+ }, "strict", z.ZodTypeAny, {
1350
+ light?: string | undefined;
1351
+ dark?: string | undefined;
1352
+ }, {
1353
+ light?: string | undefined;
1354
+ dark?: string | undefined;
1355
+ }>>;
1345
1356
  }, "strip", z.ZodTypeAny, {
1346
1357
  content: string;
1358
+ type?: "info" | "warning" | "critical" | undefined;
1359
+ color?: {
1360
+ light?: string | undefined;
1361
+ dark?: string | undefined;
1362
+ } | undefined;
1347
1363
  dismissible?: boolean | undefined;
1348
1364
  }, {
1349
1365
  content: string;
1366
+ type?: "info" | "warning" | "critical" | undefined;
1367
+ color?: {
1368
+ light?: string | undefined;
1369
+ dark?: string | undefined;
1370
+ } | undefined;
1350
1371
  dismissible?: boolean | undefined;
1351
1372
  }>>;
1352
1373
  errors: z.ZodOptional<z.ZodObject<{
@@ -1799,6 +1820,11 @@ export declare const palmConfigSchema: z.ZodObject<{
1799
1820
  description?: string | undefined;
1800
1821
  banner?: {
1801
1822
  content: string;
1823
+ type?: "info" | "warning" | "critical" | undefined;
1824
+ color?: {
1825
+ light?: string | undefined;
1826
+ dark?: string | undefined;
1827
+ } | undefined;
1802
1828
  dismissible?: boolean | undefined;
1803
1829
  } | undefined;
1804
1830
  navbar?: {
@@ -2163,6 +2189,11 @@ export declare const palmConfigSchema: z.ZodObject<{
2163
2189
  description?: string | undefined;
2164
2190
  banner?: {
2165
2191
  content: string;
2192
+ type?: "info" | "warning" | "critical" | undefined;
2193
+ color?: {
2194
+ light?: string | undefined;
2195
+ dark?: string | undefined;
2196
+ } | undefined;
2166
2197
  dismissible?: boolean | undefined;
2167
2198
  } | undefined;
2168
2199
  navbar?: {
@@ -1341,11 +1341,32 @@ export declare const standardConfigSchema: {
1341
1341
  banner: import("zod").ZodOptional<import("zod").ZodObject<{
1342
1342
  content: import("zod").ZodString;
1343
1343
  dismissible: import("zod").ZodOptional<import("zod").ZodBoolean>;
1344
+ type: import("zod").ZodOptional<import("zod").ZodEnum<["info", "warning", "critical"]>>;
1345
+ color: import("zod").ZodOptional<import("zod").ZodObject<{
1346
+ light: import("zod").ZodOptional<import("zod").ZodString>;
1347
+ dark: import("zod").ZodOptional<import("zod").ZodString>;
1348
+ }, "strict", import("zod").ZodTypeAny, {
1349
+ light?: string | undefined;
1350
+ dark?: string | undefined;
1351
+ }, {
1352
+ light?: string | undefined;
1353
+ dark?: string | undefined;
1354
+ }>>;
1344
1355
  }, "strip", import("zod").ZodTypeAny, {
1345
1356
  content: string;
1357
+ type?: "info" | "warning" | "critical" | undefined;
1358
+ color?: {
1359
+ light?: string | undefined;
1360
+ dark?: string | undefined;
1361
+ } | undefined;
1346
1362
  dismissible?: boolean | undefined;
1347
1363
  }, {
1348
1364
  content: string;
1365
+ type?: "info" | "warning" | "critical" | undefined;
1366
+ color?: {
1367
+ light?: string | undefined;
1368
+ dark?: string | undefined;
1369
+ } | undefined;
1349
1370
  dismissible?: boolean | undefined;
1350
1371
  }>>;
1351
1372
  errors: import("zod").ZodOptional<import("zod").ZodObject<{
@@ -1342,11 +1342,32 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
1342
1342
  banner: z.ZodOptional<z.ZodObject<{
1343
1343
  content: z.ZodString;
1344
1344
  dismissible: z.ZodOptional<z.ZodBoolean>;
1345
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
1346
+ color: z.ZodOptional<z.ZodObject<{
1347
+ light: z.ZodOptional<z.ZodString>;
1348
+ dark: z.ZodOptional<z.ZodString>;
1349
+ }, "strict", z.ZodTypeAny, {
1350
+ light?: string | undefined;
1351
+ dark?: string | undefined;
1352
+ }, {
1353
+ light?: string | undefined;
1354
+ dark?: string | undefined;
1355
+ }>>;
1345
1356
  }, "strip", z.ZodTypeAny, {
1346
1357
  content: string;
1358
+ type?: "info" | "warning" | "critical" | undefined;
1359
+ color?: {
1360
+ light?: string | undefined;
1361
+ dark?: string | undefined;
1362
+ } | undefined;
1347
1363
  dismissible?: boolean | undefined;
1348
1364
  }, {
1349
1365
  content: string;
1366
+ type?: "info" | "warning" | "critical" | undefined;
1367
+ color?: {
1368
+ light?: string | undefined;
1369
+ dark?: string | undefined;
1370
+ } | undefined;
1350
1371
  dismissible?: boolean | undefined;
1351
1372
  }>>;
1352
1373
  errors: z.ZodOptional<z.ZodObject<{
@@ -1799,6 +1820,11 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
1799
1820
  description?: string | undefined;
1800
1821
  banner?: {
1801
1822
  content: string;
1823
+ type?: "info" | "warning" | "critical" | undefined;
1824
+ color?: {
1825
+ light?: string | undefined;
1826
+ dark?: string | undefined;
1827
+ } | undefined;
1802
1828
  dismissible?: boolean | undefined;
1803
1829
  } | undefined;
1804
1830
  navbar?: {
@@ -2163,6 +2189,11 @@ export declare const sequoiaConfigSchema: z.ZodObject<{
2163
2189
  description?: string | undefined;
2164
2190
  banner?: {
2165
2191
  content: string;
2192
+ type?: "info" | "warning" | "critical" | undefined;
2193
+ color?: {
2194
+ light?: string | undefined;
2195
+ dark?: string | undefined;
2196
+ } | undefined;
2166
2197
  dismissible?: boolean | undefined;
2167
2198
  } | undefined;
2168
2199
  navbar?: {
@@ -1342,11 +1342,32 @@ export declare const willowConfigSchema: z.ZodObject<{
1342
1342
  banner: z.ZodOptional<z.ZodObject<{
1343
1343
  content: z.ZodString;
1344
1344
  dismissible: z.ZodOptional<z.ZodBoolean>;
1345
+ type: z.ZodOptional<z.ZodEnum<["info", "warning", "critical"]>>;
1346
+ color: z.ZodOptional<z.ZodObject<{
1347
+ light: z.ZodOptional<z.ZodString>;
1348
+ dark: z.ZodOptional<z.ZodString>;
1349
+ }, "strict", z.ZodTypeAny, {
1350
+ light?: string | undefined;
1351
+ dark?: string | undefined;
1352
+ }, {
1353
+ light?: string | undefined;
1354
+ dark?: string | undefined;
1355
+ }>>;
1345
1356
  }, "strip", z.ZodTypeAny, {
1346
1357
  content: string;
1358
+ type?: "info" | "warning" | "critical" | undefined;
1359
+ color?: {
1360
+ light?: string | undefined;
1361
+ dark?: string | undefined;
1362
+ } | undefined;
1347
1363
  dismissible?: boolean | undefined;
1348
1364
  }, {
1349
1365
  content: string;
1366
+ type?: "info" | "warning" | "critical" | undefined;
1367
+ color?: {
1368
+ light?: string | undefined;
1369
+ dark?: string | undefined;
1370
+ } | undefined;
1350
1371
  dismissible?: boolean | undefined;
1351
1372
  }>>;
1352
1373
  errors: z.ZodOptional<z.ZodObject<{
@@ -1799,6 +1820,11 @@ export declare const willowConfigSchema: z.ZodObject<{
1799
1820
  description?: string | undefined;
1800
1821
  banner?: {
1801
1822
  content: string;
1823
+ type?: "info" | "warning" | "critical" | undefined;
1824
+ color?: {
1825
+ light?: string | undefined;
1826
+ dark?: string | undefined;
1827
+ } | undefined;
1802
1828
  dismissible?: boolean | undefined;
1803
1829
  } | undefined;
1804
1830
  navbar?: {
@@ -2163,6 +2189,11 @@ export declare const willowConfigSchema: z.ZodObject<{
2163
2189
  description?: string | undefined;
2164
2190
  banner?: {
2165
2191
  content: string;
2192
+ type?: "info" | "warning" | "critical" | undefined;
2193
+ color?: {
2194
+ light?: string | undefined;
2195
+ dark?: string | undefined;
2196
+ } | undefined;
2166
2197
  dismissible?: boolean | undefined;
2167
2198
  } | undefined;
2168
2199
  navbar?: {