@eventcatalog/linter 1.0.23 → 1.0.25
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.
- package/dist/cli/index.js +2 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/index.mjs +2 -1
- package/dist/cli/index.mjs.map +1 -1
- package/dist/index.d.mts +193 -95
- package/dist/index.d.ts +193 -95
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ interface Badge {
|
|
|
6
6
|
backgroundColor: string;
|
|
7
7
|
textColor: string;
|
|
8
8
|
icon?: string;
|
|
9
|
-
|
|
9
|
+
url?: string;
|
|
10
10
|
}
|
|
11
11
|
interface Specification {
|
|
12
12
|
type: 'asyncapi' | 'openapi';
|
|
@@ -88,16 +88,19 @@ declare const badgeSchema: z.ZodObject<{
|
|
|
88
88
|
backgroundColor: z.ZodString;
|
|
89
89
|
textColor: z.ZodString;
|
|
90
90
|
icon: z.ZodOptional<z.ZodString>;
|
|
91
|
+
url: z.ZodOptional<z.ZodString>;
|
|
91
92
|
}, "strip", z.ZodTypeAny, {
|
|
92
93
|
content: string;
|
|
93
94
|
backgroundColor: string;
|
|
94
95
|
textColor: string;
|
|
95
96
|
icon?: string | undefined;
|
|
97
|
+
url?: string | undefined;
|
|
96
98
|
}, {
|
|
97
99
|
content: string;
|
|
98
100
|
backgroundColor: string;
|
|
99
101
|
textColor: string;
|
|
100
102
|
icon?: string | undefined;
|
|
103
|
+
url?: string | undefined;
|
|
101
104
|
}>;
|
|
102
105
|
declare const ownerReferenceSchema: z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
103
106
|
id: z.ZodString;
|
|
@@ -140,11 +143,11 @@ declare const repositorySchema: z.ZodObject<{
|
|
|
140
143
|
language: z.ZodOptional<z.ZodString>;
|
|
141
144
|
url: z.ZodOptional<z.ZodString>;
|
|
142
145
|
}, "strip", z.ZodTypeAny, {
|
|
143
|
-
language?: string | undefined;
|
|
144
146
|
url?: string | undefined;
|
|
145
|
-
}, {
|
|
146
147
|
language?: string | undefined;
|
|
148
|
+
}, {
|
|
147
149
|
url?: string | undefined;
|
|
150
|
+
language?: string | undefined;
|
|
148
151
|
}>;
|
|
149
152
|
declare const draftSchema: z.ZodUnion<[z.ZodBoolean, z.ZodObject<{
|
|
150
153
|
title: z.ZodOptional<z.ZodString>;
|
|
@@ -327,16 +330,19 @@ declare const baseSchema: z.ZodObject<{
|
|
|
327
330
|
backgroundColor: z.ZodString;
|
|
328
331
|
textColor: z.ZodString;
|
|
329
332
|
icon: z.ZodOptional<z.ZodString>;
|
|
333
|
+
url: z.ZodOptional<z.ZodString>;
|
|
330
334
|
}, "strip", z.ZodTypeAny, {
|
|
331
335
|
content: string;
|
|
332
336
|
backgroundColor: string;
|
|
333
337
|
textColor: string;
|
|
334
338
|
icon?: string | undefined;
|
|
339
|
+
url?: string | undefined;
|
|
335
340
|
}, {
|
|
336
341
|
content: string;
|
|
337
342
|
backgroundColor: string;
|
|
338
343
|
textColor: string;
|
|
339
344
|
icon?: string | undefined;
|
|
345
|
+
url?: string | undefined;
|
|
340
346
|
}>, "many">>;
|
|
341
347
|
owners: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
342
348
|
id: z.ZodString;
|
|
@@ -368,11 +374,11 @@ declare const baseSchema: z.ZodObject<{
|
|
|
368
374
|
language: z.ZodOptional<z.ZodString>;
|
|
369
375
|
url: z.ZodOptional<z.ZodString>;
|
|
370
376
|
}, "strip", z.ZodTypeAny, {
|
|
371
|
-
language?: string | undefined;
|
|
372
377
|
url?: string | undefined;
|
|
373
|
-
}, {
|
|
374
378
|
language?: string | undefined;
|
|
379
|
+
}, {
|
|
375
380
|
url?: string | undefined;
|
|
381
|
+
language?: string | undefined;
|
|
376
382
|
}>>;
|
|
377
383
|
specifications: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
378
384
|
openapiPath: z.ZodOptional<z.ZodString>;
|
|
@@ -511,14 +517,15 @@ declare const baseSchema: z.ZodObject<{
|
|
|
511
517
|
backgroundColor: string;
|
|
512
518
|
textColor: string;
|
|
513
519
|
icon?: string | undefined;
|
|
520
|
+
url?: string | undefined;
|
|
514
521
|
}[] | undefined;
|
|
515
522
|
owners?: {
|
|
516
523
|
id: string;
|
|
517
524
|
}[] | undefined;
|
|
518
525
|
schemaPath?: string | undefined;
|
|
519
526
|
repository?: {
|
|
520
|
-
language?: string | undefined;
|
|
521
527
|
url?: string | undefined;
|
|
528
|
+
language?: string | undefined;
|
|
522
529
|
} | undefined;
|
|
523
530
|
specifications?: {
|
|
524
531
|
openapiPath?: string | undefined;
|
|
@@ -579,6 +586,7 @@ declare const baseSchema: z.ZodObject<{
|
|
|
579
586
|
backgroundColor: string;
|
|
580
587
|
textColor: string;
|
|
581
588
|
icon?: string | undefined;
|
|
589
|
+
url?: string | undefined;
|
|
582
590
|
}[] | undefined;
|
|
583
591
|
owners?: (string | {
|
|
584
592
|
id: string;
|
|
@@ -586,8 +594,8 @@ declare const baseSchema: z.ZodObject<{
|
|
|
586
594
|
})[] | undefined;
|
|
587
595
|
schemaPath?: string | undefined;
|
|
588
596
|
repository?: {
|
|
589
|
-
language?: string | undefined;
|
|
590
597
|
url?: string | undefined;
|
|
598
|
+
language?: string | undefined;
|
|
591
599
|
} | undefined;
|
|
592
600
|
specifications?: {
|
|
593
601
|
openapiPath?: string | undefined;
|
|
@@ -683,16 +691,19 @@ declare const domainSchema: z.ZodObject<{
|
|
|
683
691
|
backgroundColor: z.ZodString;
|
|
684
692
|
textColor: z.ZodString;
|
|
685
693
|
icon: z.ZodOptional<z.ZodString>;
|
|
694
|
+
url: z.ZodOptional<z.ZodString>;
|
|
686
695
|
}, "strip", z.ZodTypeAny, {
|
|
687
696
|
content: string;
|
|
688
697
|
backgroundColor: string;
|
|
689
698
|
textColor: string;
|
|
690
699
|
icon?: string | undefined;
|
|
700
|
+
url?: string | undefined;
|
|
691
701
|
}, {
|
|
692
702
|
content: string;
|
|
693
703
|
backgroundColor: string;
|
|
694
704
|
textColor: string;
|
|
695
705
|
icon?: string | undefined;
|
|
706
|
+
url?: string | undefined;
|
|
696
707
|
}>, "many">>;
|
|
697
708
|
owners: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
698
709
|
id: z.ZodString;
|
|
@@ -724,11 +735,11 @@ declare const domainSchema: z.ZodObject<{
|
|
|
724
735
|
language: z.ZodOptional<z.ZodString>;
|
|
725
736
|
url: z.ZodOptional<z.ZodString>;
|
|
726
737
|
}, "strip", z.ZodTypeAny, {
|
|
727
|
-
language?: string | undefined;
|
|
728
738
|
url?: string | undefined;
|
|
729
|
-
}, {
|
|
730
739
|
language?: string | undefined;
|
|
740
|
+
}, {
|
|
731
741
|
url?: string | undefined;
|
|
742
|
+
language?: string | undefined;
|
|
732
743
|
}>>;
|
|
733
744
|
specifications: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
734
745
|
openapiPath: z.ZodOptional<z.ZodString>;
|
|
@@ -867,14 +878,15 @@ declare const domainSchema: z.ZodObject<{
|
|
|
867
878
|
backgroundColor: string;
|
|
868
879
|
textColor: string;
|
|
869
880
|
icon?: string | undefined;
|
|
881
|
+
url?: string | undefined;
|
|
870
882
|
}[] | undefined;
|
|
871
883
|
owners?: {
|
|
872
884
|
id: string;
|
|
873
885
|
}[] | undefined;
|
|
874
886
|
schemaPath?: string | undefined;
|
|
875
887
|
repository?: {
|
|
876
|
-
language?: string | undefined;
|
|
877
888
|
url?: string | undefined;
|
|
889
|
+
language?: string | undefined;
|
|
878
890
|
} | undefined;
|
|
879
891
|
specifications?: {
|
|
880
892
|
openapiPath?: string | undefined;
|
|
@@ -947,6 +959,7 @@ declare const domainSchema: z.ZodObject<{
|
|
|
947
959
|
backgroundColor: string;
|
|
948
960
|
textColor: string;
|
|
949
961
|
icon?: string | undefined;
|
|
962
|
+
url?: string | undefined;
|
|
950
963
|
}[] | undefined;
|
|
951
964
|
owners?: (string | {
|
|
952
965
|
id: string;
|
|
@@ -954,8 +967,8 @@ declare const domainSchema: z.ZodObject<{
|
|
|
954
967
|
})[] | undefined;
|
|
955
968
|
schemaPath?: string | undefined;
|
|
956
969
|
repository?: {
|
|
957
|
-
language?: string | undefined;
|
|
958
970
|
url?: string | undefined;
|
|
971
|
+
language?: string | undefined;
|
|
959
972
|
} | undefined;
|
|
960
973
|
specifications?: {
|
|
961
974
|
openapiPath?: string | undefined;
|
|
@@ -1083,16 +1096,19 @@ declare const serviceSchema: z.ZodObject<{
|
|
|
1083
1096
|
backgroundColor: z.ZodString;
|
|
1084
1097
|
textColor: z.ZodString;
|
|
1085
1098
|
icon: z.ZodOptional<z.ZodString>;
|
|
1099
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1086
1100
|
}, "strip", z.ZodTypeAny, {
|
|
1087
1101
|
content: string;
|
|
1088
1102
|
backgroundColor: string;
|
|
1089
1103
|
textColor: string;
|
|
1090
1104
|
icon?: string | undefined;
|
|
1105
|
+
url?: string | undefined;
|
|
1091
1106
|
}, {
|
|
1092
1107
|
content: string;
|
|
1093
1108
|
backgroundColor: string;
|
|
1094
1109
|
textColor: string;
|
|
1095
1110
|
icon?: string | undefined;
|
|
1111
|
+
url?: string | undefined;
|
|
1096
1112
|
}>, "many">>;
|
|
1097
1113
|
owners: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1098
1114
|
id: z.ZodString;
|
|
@@ -1124,11 +1140,11 @@ declare const serviceSchema: z.ZodObject<{
|
|
|
1124
1140
|
language: z.ZodOptional<z.ZodString>;
|
|
1125
1141
|
url: z.ZodOptional<z.ZodString>;
|
|
1126
1142
|
}, "strip", z.ZodTypeAny, {
|
|
1127
|
-
language?: string | undefined;
|
|
1128
1143
|
url?: string | undefined;
|
|
1129
|
-
}, {
|
|
1130
1144
|
language?: string | undefined;
|
|
1145
|
+
}, {
|
|
1131
1146
|
url?: string | undefined;
|
|
1147
|
+
language?: string | undefined;
|
|
1132
1148
|
}>>;
|
|
1133
1149
|
specifications: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1134
1150
|
openapiPath: z.ZodOptional<z.ZodString>;
|
|
@@ -1267,14 +1283,15 @@ declare const serviceSchema: z.ZodObject<{
|
|
|
1267
1283
|
backgroundColor: string;
|
|
1268
1284
|
textColor: string;
|
|
1269
1285
|
icon?: string | undefined;
|
|
1286
|
+
url?: string | undefined;
|
|
1270
1287
|
}[] | undefined;
|
|
1271
1288
|
owners?: {
|
|
1272
1289
|
id: string;
|
|
1273
1290
|
}[] | undefined;
|
|
1274
1291
|
schemaPath?: string | undefined;
|
|
1275
1292
|
repository?: {
|
|
1276
|
-
language?: string | undefined;
|
|
1277
1293
|
url?: string | undefined;
|
|
1294
|
+
language?: string | undefined;
|
|
1278
1295
|
} | undefined;
|
|
1279
1296
|
specifications?: {
|
|
1280
1297
|
openapiPath?: string | undefined;
|
|
@@ -1355,6 +1372,7 @@ declare const serviceSchema: z.ZodObject<{
|
|
|
1355
1372
|
backgroundColor: string;
|
|
1356
1373
|
textColor: string;
|
|
1357
1374
|
icon?: string | undefined;
|
|
1375
|
+
url?: string | undefined;
|
|
1358
1376
|
}[] | undefined;
|
|
1359
1377
|
owners?: (string | {
|
|
1360
1378
|
id: string;
|
|
@@ -1362,8 +1380,8 @@ declare const serviceSchema: z.ZodObject<{
|
|
|
1362
1380
|
})[] | undefined;
|
|
1363
1381
|
schemaPath?: string | undefined;
|
|
1364
1382
|
repository?: {
|
|
1365
|
-
language?: string | undefined;
|
|
1366
1383
|
url?: string | undefined;
|
|
1384
|
+
language?: string | undefined;
|
|
1367
1385
|
} | undefined;
|
|
1368
1386
|
specifications?: {
|
|
1369
1387
|
openapiPath?: string | undefined;
|
|
@@ -1466,16 +1484,19 @@ declare const eventSchema: z.ZodObject<{
|
|
|
1466
1484
|
backgroundColor: z.ZodString;
|
|
1467
1485
|
textColor: z.ZodString;
|
|
1468
1486
|
icon: z.ZodOptional<z.ZodString>;
|
|
1487
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1469
1488
|
}, "strip", z.ZodTypeAny, {
|
|
1470
1489
|
content: string;
|
|
1471
1490
|
backgroundColor: string;
|
|
1472
1491
|
textColor: string;
|
|
1473
1492
|
icon?: string | undefined;
|
|
1493
|
+
url?: string | undefined;
|
|
1474
1494
|
}, {
|
|
1475
1495
|
content: string;
|
|
1476
1496
|
backgroundColor: string;
|
|
1477
1497
|
textColor: string;
|
|
1478
1498
|
icon?: string | undefined;
|
|
1499
|
+
url?: string | undefined;
|
|
1479
1500
|
}>, "many">>;
|
|
1480
1501
|
owners: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1481
1502
|
id: z.ZodString;
|
|
@@ -1507,11 +1528,11 @@ declare const eventSchema: z.ZodObject<{
|
|
|
1507
1528
|
language: z.ZodOptional<z.ZodString>;
|
|
1508
1529
|
url: z.ZodOptional<z.ZodString>;
|
|
1509
1530
|
}, "strip", z.ZodTypeAny, {
|
|
1510
|
-
language?: string | undefined;
|
|
1511
1531
|
url?: string | undefined;
|
|
1512
|
-
}, {
|
|
1513
1532
|
language?: string | undefined;
|
|
1533
|
+
}, {
|
|
1514
1534
|
url?: string | undefined;
|
|
1535
|
+
language?: string | undefined;
|
|
1515
1536
|
}>>;
|
|
1516
1537
|
specifications: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1517
1538
|
openapiPath: z.ZodOptional<z.ZodString>;
|
|
@@ -1650,14 +1671,15 @@ declare const eventSchema: z.ZodObject<{
|
|
|
1650
1671
|
backgroundColor: string;
|
|
1651
1672
|
textColor: string;
|
|
1652
1673
|
icon?: string | undefined;
|
|
1674
|
+
url?: string | undefined;
|
|
1653
1675
|
}[] | undefined;
|
|
1654
1676
|
owners?: {
|
|
1655
1677
|
id: string;
|
|
1656
1678
|
}[] | undefined;
|
|
1657
1679
|
schemaPath?: string | undefined;
|
|
1658
1680
|
repository?: {
|
|
1659
|
-
language?: string | undefined;
|
|
1660
1681
|
url?: string | undefined;
|
|
1682
|
+
language?: string | undefined;
|
|
1661
1683
|
} | undefined;
|
|
1662
1684
|
specifications?: {
|
|
1663
1685
|
openapiPath?: string | undefined;
|
|
@@ -1726,6 +1748,7 @@ declare const eventSchema: z.ZodObject<{
|
|
|
1726
1748
|
backgroundColor: string;
|
|
1727
1749
|
textColor: string;
|
|
1728
1750
|
icon?: string | undefined;
|
|
1751
|
+
url?: string | undefined;
|
|
1729
1752
|
}[] | undefined;
|
|
1730
1753
|
owners?: (string | {
|
|
1731
1754
|
id: string;
|
|
@@ -1733,8 +1756,8 @@ declare const eventSchema: z.ZodObject<{
|
|
|
1733
1756
|
})[] | undefined;
|
|
1734
1757
|
schemaPath?: string | undefined;
|
|
1735
1758
|
repository?: {
|
|
1736
|
-
language?: string | undefined;
|
|
1737
1759
|
url?: string | undefined;
|
|
1760
|
+
language?: string | undefined;
|
|
1738
1761
|
} | undefined;
|
|
1739
1762
|
specifications?: {
|
|
1740
1763
|
openapiPath?: string | undefined;
|
|
@@ -1824,16 +1847,19 @@ declare const commandSchema: z.ZodObject<{
|
|
|
1824
1847
|
backgroundColor: z.ZodString;
|
|
1825
1848
|
textColor: z.ZodString;
|
|
1826
1849
|
icon: z.ZodOptional<z.ZodString>;
|
|
1850
|
+
url: z.ZodOptional<z.ZodString>;
|
|
1827
1851
|
}, "strip", z.ZodTypeAny, {
|
|
1828
1852
|
content: string;
|
|
1829
1853
|
backgroundColor: string;
|
|
1830
1854
|
textColor: string;
|
|
1831
1855
|
icon?: string | undefined;
|
|
1856
|
+
url?: string | undefined;
|
|
1832
1857
|
}, {
|
|
1833
1858
|
content: string;
|
|
1834
1859
|
backgroundColor: string;
|
|
1835
1860
|
textColor: string;
|
|
1836
1861
|
icon?: string | undefined;
|
|
1862
|
+
url?: string | undefined;
|
|
1837
1863
|
}>, "many">>;
|
|
1838
1864
|
owners: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
1839
1865
|
id: z.ZodString;
|
|
@@ -1865,11 +1891,11 @@ declare const commandSchema: z.ZodObject<{
|
|
|
1865
1891
|
language: z.ZodOptional<z.ZodString>;
|
|
1866
1892
|
url: z.ZodOptional<z.ZodString>;
|
|
1867
1893
|
}, "strip", z.ZodTypeAny, {
|
|
1868
|
-
language?: string | undefined;
|
|
1869
1894
|
url?: string | undefined;
|
|
1870
|
-
}, {
|
|
1871
1895
|
language?: string | undefined;
|
|
1896
|
+
}, {
|
|
1872
1897
|
url?: string | undefined;
|
|
1898
|
+
language?: string | undefined;
|
|
1873
1899
|
}>>;
|
|
1874
1900
|
specifications: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
1875
1901
|
openapiPath: z.ZodOptional<z.ZodString>;
|
|
@@ -2008,14 +2034,15 @@ declare const commandSchema: z.ZodObject<{
|
|
|
2008
2034
|
backgroundColor: string;
|
|
2009
2035
|
textColor: string;
|
|
2010
2036
|
icon?: string | undefined;
|
|
2037
|
+
url?: string | undefined;
|
|
2011
2038
|
}[] | undefined;
|
|
2012
2039
|
owners?: {
|
|
2013
2040
|
id: string;
|
|
2014
2041
|
}[] | undefined;
|
|
2015
2042
|
schemaPath?: string | undefined;
|
|
2016
2043
|
repository?: {
|
|
2017
|
-
language?: string | undefined;
|
|
2018
2044
|
url?: string | undefined;
|
|
2045
|
+
language?: string | undefined;
|
|
2019
2046
|
} | undefined;
|
|
2020
2047
|
specifications?: {
|
|
2021
2048
|
openapiPath?: string | undefined;
|
|
@@ -2084,6 +2111,7 @@ declare const commandSchema: z.ZodObject<{
|
|
|
2084
2111
|
backgroundColor: string;
|
|
2085
2112
|
textColor: string;
|
|
2086
2113
|
icon?: string | undefined;
|
|
2114
|
+
url?: string | undefined;
|
|
2087
2115
|
}[] | undefined;
|
|
2088
2116
|
owners?: (string | {
|
|
2089
2117
|
id: string;
|
|
@@ -2091,8 +2119,8 @@ declare const commandSchema: z.ZodObject<{
|
|
|
2091
2119
|
})[] | undefined;
|
|
2092
2120
|
schemaPath?: string | undefined;
|
|
2093
2121
|
repository?: {
|
|
2094
|
-
language?: string | undefined;
|
|
2095
2122
|
url?: string | undefined;
|
|
2123
|
+
language?: string | undefined;
|
|
2096
2124
|
} | undefined;
|
|
2097
2125
|
specifications?: {
|
|
2098
2126
|
openapiPath?: string | undefined;
|
|
@@ -2182,16 +2210,19 @@ declare const querySchema: z.ZodObject<{
|
|
|
2182
2210
|
backgroundColor: z.ZodString;
|
|
2183
2211
|
textColor: z.ZodString;
|
|
2184
2212
|
icon: z.ZodOptional<z.ZodString>;
|
|
2213
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2185
2214
|
}, "strip", z.ZodTypeAny, {
|
|
2186
2215
|
content: string;
|
|
2187
2216
|
backgroundColor: string;
|
|
2188
2217
|
textColor: string;
|
|
2189
2218
|
icon?: string | undefined;
|
|
2219
|
+
url?: string | undefined;
|
|
2190
2220
|
}, {
|
|
2191
2221
|
content: string;
|
|
2192
2222
|
backgroundColor: string;
|
|
2193
2223
|
textColor: string;
|
|
2194
2224
|
icon?: string | undefined;
|
|
2225
|
+
url?: string | undefined;
|
|
2195
2226
|
}>, "many">>;
|
|
2196
2227
|
owners: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
2197
2228
|
id: z.ZodString;
|
|
@@ -2223,11 +2254,11 @@ declare const querySchema: z.ZodObject<{
|
|
|
2223
2254
|
language: z.ZodOptional<z.ZodString>;
|
|
2224
2255
|
url: z.ZodOptional<z.ZodString>;
|
|
2225
2256
|
}, "strip", z.ZodTypeAny, {
|
|
2226
|
-
language?: string | undefined;
|
|
2227
2257
|
url?: string | undefined;
|
|
2228
|
-
}, {
|
|
2229
2258
|
language?: string | undefined;
|
|
2259
|
+
}, {
|
|
2230
2260
|
url?: string | undefined;
|
|
2261
|
+
language?: string | undefined;
|
|
2231
2262
|
}>>;
|
|
2232
2263
|
specifications: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2233
2264
|
openapiPath: z.ZodOptional<z.ZodString>;
|
|
@@ -2366,14 +2397,15 @@ declare const querySchema: z.ZodObject<{
|
|
|
2366
2397
|
backgroundColor: string;
|
|
2367
2398
|
textColor: string;
|
|
2368
2399
|
icon?: string | undefined;
|
|
2400
|
+
url?: string | undefined;
|
|
2369
2401
|
}[] | undefined;
|
|
2370
2402
|
owners?: {
|
|
2371
2403
|
id: string;
|
|
2372
2404
|
}[] | undefined;
|
|
2373
2405
|
schemaPath?: string | undefined;
|
|
2374
2406
|
repository?: {
|
|
2375
|
-
language?: string | undefined;
|
|
2376
2407
|
url?: string | undefined;
|
|
2408
|
+
language?: string | undefined;
|
|
2377
2409
|
} | undefined;
|
|
2378
2410
|
specifications?: {
|
|
2379
2411
|
openapiPath?: string | undefined;
|
|
@@ -2442,6 +2474,7 @@ declare const querySchema: z.ZodObject<{
|
|
|
2442
2474
|
backgroundColor: string;
|
|
2443
2475
|
textColor: string;
|
|
2444
2476
|
icon?: string | undefined;
|
|
2477
|
+
url?: string | undefined;
|
|
2445
2478
|
}[] | undefined;
|
|
2446
2479
|
owners?: (string | {
|
|
2447
2480
|
id: string;
|
|
@@ -2449,8 +2482,8 @@ declare const querySchema: z.ZodObject<{
|
|
|
2449
2482
|
})[] | undefined;
|
|
2450
2483
|
schemaPath?: string | undefined;
|
|
2451
2484
|
repository?: {
|
|
2452
|
-
language?: string | undefined;
|
|
2453
2485
|
url?: string | undefined;
|
|
2486
|
+
language?: string | undefined;
|
|
2454
2487
|
} | undefined;
|
|
2455
2488
|
specifications?: {
|
|
2456
2489
|
openapiPath?: string | undefined;
|
|
@@ -2558,16 +2591,19 @@ declare const channelSchema: z.ZodObject<{
|
|
|
2558
2591
|
backgroundColor: z.ZodString;
|
|
2559
2592
|
textColor: z.ZodString;
|
|
2560
2593
|
icon: z.ZodOptional<z.ZodString>;
|
|
2594
|
+
url: z.ZodOptional<z.ZodString>;
|
|
2561
2595
|
}, "strip", z.ZodTypeAny, {
|
|
2562
2596
|
content: string;
|
|
2563
2597
|
backgroundColor: string;
|
|
2564
2598
|
textColor: string;
|
|
2565
2599
|
icon?: string | undefined;
|
|
2600
|
+
url?: string | undefined;
|
|
2566
2601
|
}, {
|
|
2567
2602
|
content: string;
|
|
2568
2603
|
backgroundColor: string;
|
|
2569
2604
|
textColor: string;
|
|
2570
2605
|
icon?: string | undefined;
|
|
2606
|
+
url?: string | undefined;
|
|
2571
2607
|
}>, "many">>;
|
|
2572
2608
|
owners: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
2573
2609
|
id: z.ZodString;
|
|
@@ -2599,11 +2635,11 @@ declare const channelSchema: z.ZodObject<{
|
|
|
2599
2635
|
language: z.ZodOptional<z.ZodString>;
|
|
2600
2636
|
url: z.ZodOptional<z.ZodString>;
|
|
2601
2637
|
}, "strip", z.ZodTypeAny, {
|
|
2602
|
-
language?: string | undefined;
|
|
2603
2638
|
url?: string | undefined;
|
|
2604
|
-
}, {
|
|
2605
2639
|
language?: string | undefined;
|
|
2640
|
+
}, {
|
|
2606
2641
|
url?: string | undefined;
|
|
2642
|
+
language?: string | undefined;
|
|
2607
2643
|
}>>;
|
|
2608
2644
|
specifications: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
2609
2645
|
openapiPath: z.ZodOptional<z.ZodString>;
|
|
@@ -2748,14 +2784,15 @@ declare const channelSchema: z.ZodObject<{
|
|
|
2748
2784
|
backgroundColor: string;
|
|
2749
2785
|
textColor: string;
|
|
2750
2786
|
icon?: string | undefined;
|
|
2787
|
+
url?: string | undefined;
|
|
2751
2788
|
}[] | undefined;
|
|
2752
2789
|
owners?: {
|
|
2753
2790
|
id: string;
|
|
2754
2791
|
}[] | undefined;
|
|
2755
2792
|
schemaPath?: string | undefined;
|
|
2756
2793
|
repository?: {
|
|
2757
|
-
language?: string | undefined;
|
|
2758
2794
|
url?: string | undefined;
|
|
2795
|
+
language?: string | undefined;
|
|
2759
2796
|
} | undefined;
|
|
2760
2797
|
specifications?: {
|
|
2761
2798
|
openapiPath?: string | undefined;
|
|
@@ -2830,6 +2867,7 @@ declare const channelSchema: z.ZodObject<{
|
|
|
2830
2867
|
backgroundColor: string;
|
|
2831
2868
|
textColor: string;
|
|
2832
2869
|
icon?: string | undefined;
|
|
2870
|
+
url?: string | undefined;
|
|
2833
2871
|
}[] | undefined;
|
|
2834
2872
|
owners?: (string | {
|
|
2835
2873
|
id: string;
|
|
@@ -2837,8 +2875,8 @@ declare const channelSchema: z.ZodObject<{
|
|
|
2837
2875
|
})[] | undefined;
|
|
2838
2876
|
schemaPath?: string | undefined;
|
|
2839
2877
|
repository?: {
|
|
2840
|
-
language?: string | undefined;
|
|
2841
2878
|
url?: string | undefined;
|
|
2879
|
+
language?: string | undefined;
|
|
2842
2880
|
} | undefined;
|
|
2843
2881
|
specifications?: {
|
|
2844
2882
|
openapiPath?: string | undefined;
|
|
@@ -2956,8 +2994,8 @@ declare const flowSchema: z.ZodObject<{
|
|
|
2956
2994
|
}, "strip", z.ZodTypeAny, {
|
|
2957
2995
|
title: string;
|
|
2958
2996
|
icon?: string | undefined;
|
|
2959
|
-
type?: string | undefined;
|
|
2960
2997
|
url?: string | undefined;
|
|
2998
|
+
type?: string | undefined;
|
|
2961
2999
|
color?: string | undefined;
|
|
2962
3000
|
summary?: string | undefined;
|
|
2963
3001
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -2969,8 +3007,8 @@ declare const flowSchema: z.ZodObject<{
|
|
|
2969
3007
|
}, {
|
|
2970
3008
|
title: string;
|
|
2971
3009
|
icon?: string | undefined;
|
|
2972
|
-
type?: string | undefined;
|
|
2973
3010
|
url?: string | undefined;
|
|
3011
|
+
type?: string | undefined;
|
|
2974
3012
|
color?: string | undefined;
|
|
2975
3013
|
summary?: string | undefined;
|
|
2976
3014
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -3024,8 +3062,8 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3024
3062
|
custom?: {
|
|
3025
3063
|
title: string;
|
|
3026
3064
|
icon?: string | undefined;
|
|
3027
|
-
type?: string | undefined;
|
|
3028
3065
|
url?: string | undefined;
|
|
3066
|
+
type?: string | undefined;
|
|
3029
3067
|
color?: string | undefined;
|
|
3030
3068
|
summary?: string | undefined;
|
|
3031
3069
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -3071,8 +3109,8 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3071
3109
|
custom?: {
|
|
3072
3110
|
title: string;
|
|
3073
3111
|
icon?: string | undefined;
|
|
3074
|
-
type?: string | undefined;
|
|
3075
3112
|
url?: string | undefined;
|
|
3113
|
+
type?: string | undefined;
|
|
3076
3114
|
color?: string | undefined;
|
|
3077
3115
|
summary?: string | undefined;
|
|
3078
3116
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -3118,8 +3156,8 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3118
3156
|
custom?: {
|
|
3119
3157
|
title: string;
|
|
3120
3158
|
icon?: string | undefined;
|
|
3121
|
-
type?: string | undefined;
|
|
3122
3159
|
url?: string | undefined;
|
|
3160
|
+
type?: string | undefined;
|
|
3123
3161
|
color?: string | undefined;
|
|
3124
3162
|
summary?: string | undefined;
|
|
3125
3163
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -3165,8 +3203,8 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3165
3203
|
custom?: {
|
|
3166
3204
|
title: string;
|
|
3167
3205
|
icon?: string | undefined;
|
|
3168
|
-
type?: string | undefined;
|
|
3169
3206
|
url?: string | undefined;
|
|
3207
|
+
type?: string | undefined;
|
|
3170
3208
|
color?: string | undefined;
|
|
3171
3209
|
summary?: string | undefined;
|
|
3172
3210
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -3222,16 +3260,19 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3222
3260
|
backgroundColor: z.ZodString;
|
|
3223
3261
|
textColor: z.ZodString;
|
|
3224
3262
|
icon: z.ZodOptional<z.ZodString>;
|
|
3263
|
+
url: z.ZodOptional<z.ZodString>;
|
|
3225
3264
|
}, "strip", z.ZodTypeAny, {
|
|
3226
3265
|
content: string;
|
|
3227
3266
|
backgroundColor: string;
|
|
3228
3267
|
textColor: string;
|
|
3229
3268
|
icon?: string | undefined;
|
|
3269
|
+
url?: string | undefined;
|
|
3230
3270
|
}, {
|
|
3231
3271
|
content: string;
|
|
3232
3272
|
backgroundColor: string;
|
|
3233
3273
|
textColor: string;
|
|
3234
3274
|
icon?: string | undefined;
|
|
3275
|
+
url?: string | undefined;
|
|
3235
3276
|
}>, "many">>;
|
|
3236
3277
|
owners: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
3237
3278
|
id: z.ZodString;
|
|
@@ -3263,11 +3304,11 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3263
3304
|
language: z.ZodOptional<z.ZodString>;
|
|
3264
3305
|
url: z.ZodOptional<z.ZodString>;
|
|
3265
3306
|
}, "strip", z.ZodTypeAny, {
|
|
3266
|
-
language?: string | undefined;
|
|
3267
3307
|
url?: string | undefined;
|
|
3268
|
-
}, {
|
|
3269
3308
|
language?: string | undefined;
|
|
3309
|
+
}, {
|
|
3270
3310
|
url?: string | undefined;
|
|
3311
|
+
language?: string | undefined;
|
|
3271
3312
|
}>>;
|
|
3272
3313
|
specifications: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3273
3314
|
openapiPath: z.ZodOptional<z.ZodString>;
|
|
@@ -3403,8 +3444,8 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3403
3444
|
custom?: {
|
|
3404
3445
|
title: string;
|
|
3405
3446
|
icon?: string | undefined;
|
|
3406
|
-
type?: string | undefined;
|
|
3407
3447
|
url?: string | undefined;
|
|
3448
|
+
type?: string | undefined;
|
|
3408
3449
|
color?: string | undefined;
|
|
3409
3450
|
summary?: string | undefined;
|
|
3410
3451
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -3454,14 +3495,15 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3454
3495
|
backgroundColor: string;
|
|
3455
3496
|
textColor: string;
|
|
3456
3497
|
icon?: string | undefined;
|
|
3498
|
+
url?: string | undefined;
|
|
3457
3499
|
}[] | undefined;
|
|
3458
3500
|
owners?: {
|
|
3459
3501
|
id: string;
|
|
3460
3502
|
}[] | undefined;
|
|
3461
3503
|
schemaPath?: string | undefined;
|
|
3462
3504
|
repository?: {
|
|
3463
|
-
language?: string | undefined;
|
|
3464
3505
|
url?: string | undefined;
|
|
3506
|
+
language?: string | undefined;
|
|
3465
3507
|
} | undefined;
|
|
3466
3508
|
specifications?: {
|
|
3467
3509
|
openapiPath?: string | undefined;
|
|
@@ -3519,8 +3561,8 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3519
3561
|
custom?: {
|
|
3520
3562
|
title: string;
|
|
3521
3563
|
icon?: string | undefined;
|
|
3522
|
-
type?: string | undefined;
|
|
3523
3564
|
url?: string | undefined;
|
|
3565
|
+
type?: string | undefined;
|
|
3524
3566
|
color?: string | undefined;
|
|
3525
3567
|
summary?: string | undefined;
|
|
3526
3568
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -3570,6 +3612,7 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3570
3612
|
backgroundColor: string;
|
|
3571
3613
|
textColor: string;
|
|
3572
3614
|
icon?: string | undefined;
|
|
3615
|
+
url?: string | undefined;
|
|
3573
3616
|
}[] | undefined;
|
|
3574
3617
|
owners?: (string | {
|
|
3575
3618
|
id: string;
|
|
@@ -3577,8 +3620,8 @@ declare const flowSchema: z.ZodObject<{
|
|
|
3577
3620
|
})[] | undefined;
|
|
3578
3621
|
schemaPath?: string | undefined;
|
|
3579
3622
|
repository?: {
|
|
3580
|
-
language?: string | undefined;
|
|
3581
3623
|
url?: string | undefined;
|
|
3624
|
+
language?: string | undefined;
|
|
3582
3625
|
} | undefined;
|
|
3583
3626
|
specifications?: {
|
|
3584
3627
|
openapiPath?: string | undefined;
|
|
@@ -3673,16 +3716,19 @@ declare const entitySchema: z.ZodObject<{
|
|
|
3673
3716
|
backgroundColor: z.ZodString;
|
|
3674
3717
|
textColor: z.ZodString;
|
|
3675
3718
|
icon: z.ZodOptional<z.ZodString>;
|
|
3719
|
+
url: z.ZodOptional<z.ZodString>;
|
|
3676
3720
|
}, "strip", z.ZodTypeAny, {
|
|
3677
3721
|
content: string;
|
|
3678
3722
|
backgroundColor: string;
|
|
3679
3723
|
textColor: string;
|
|
3680
3724
|
icon?: string | undefined;
|
|
3725
|
+
url?: string | undefined;
|
|
3681
3726
|
}, {
|
|
3682
3727
|
content: string;
|
|
3683
3728
|
backgroundColor: string;
|
|
3684
3729
|
textColor: string;
|
|
3685
3730
|
icon?: string | undefined;
|
|
3731
|
+
url?: string | undefined;
|
|
3686
3732
|
}>, "many">>;
|
|
3687
3733
|
owners: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
3688
3734
|
id: z.ZodString;
|
|
@@ -3714,11 +3760,11 @@ declare const entitySchema: z.ZodObject<{
|
|
|
3714
3760
|
language: z.ZodOptional<z.ZodString>;
|
|
3715
3761
|
url: z.ZodOptional<z.ZodString>;
|
|
3716
3762
|
}, "strip", z.ZodTypeAny, {
|
|
3717
|
-
language?: string | undefined;
|
|
3718
3763
|
url?: string | undefined;
|
|
3719
|
-
}, {
|
|
3720
3764
|
language?: string | undefined;
|
|
3765
|
+
}, {
|
|
3721
3766
|
url?: string | undefined;
|
|
3767
|
+
language?: string | undefined;
|
|
3722
3768
|
}>>;
|
|
3723
3769
|
specifications: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
3724
3770
|
openapiPath: z.ZodOptional<z.ZodString>;
|
|
@@ -3857,14 +3903,15 @@ declare const entitySchema: z.ZodObject<{
|
|
|
3857
3903
|
backgroundColor: string;
|
|
3858
3904
|
textColor: string;
|
|
3859
3905
|
icon?: string | undefined;
|
|
3906
|
+
url?: string | undefined;
|
|
3860
3907
|
}[] | undefined;
|
|
3861
3908
|
owners?: {
|
|
3862
3909
|
id: string;
|
|
3863
3910
|
}[] | undefined;
|
|
3864
3911
|
schemaPath?: string | undefined;
|
|
3865
3912
|
repository?: {
|
|
3866
|
-
language?: string | undefined;
|
|
3867
3913
|
url?: string | undefined;
|
|
3914
|
+
language?: string | undefined;
|
|
3868
3915
|
} | undefined;
|
|
3869
3916
|
specifications?: {
|
|
3870
3917
|
openapiPath?: string | undefined;
|
|
@@ -3938,6 +3985,7 @@ declare const entitySchema: z.ZodObject<{
|
|
|
3938
3985
|
backgroundColor: string;
|
|
3939
3986
|
textColor: string;
|
|
3940
3987
|
icon?: string | undefined;
|
|
3988
|
+
url?: string | undefined;
|
|
3941
3989
|
}[] | undefined;
|
|
3942
3990
|
owners?: (string | {
|
|
3943
3991
|
id: string;
|
|
@@ -3945,8 +3993,8 @@ declare const entitySchema: z.ZodObject<{
|
|
|
3945
3993
|
})[] | undefined;
|
|
3946
3994
|
schemaPath?: string | undefined;
|
|
3947
3995
|
repository?: {
|
|
3948
|
-
language?: string | undefined;
|
|
3949
3996
|
url?: string | undefined;
|
|
3997
|
+
language?: string | undefined;
|
|
3950
3998
|
} | undefined;
|
|
3951
3999
|
specifications?: {
|
|
3952
4000
|
openapiPath?: string | undefined;
|
|
@@ -4123,16 +4171,19 @@ declare const dataStoreSchema: z.ZodObject<{
|
|
|
4123
4171
|
backgroundColor: z.ZodString;
|
|
4124
4172
|
textColor: z.ZodString;
|
|
4125
4173
|
icon: z.ZodOptional<z.ZodString>;
|
|
4174
|
+
url: z.ZodOptional<z.ZodString>;
|
|
4126
4175
|
}, "strip", z.ZodTypeAny, {
|
|
4127
4176
|
content: string;
|
|
4128
4177
|
backgroundColor: string;
|
|
4129
4178
|
textColor: string;
|
|
4130
4179
|
icon?: string | undefined;
|
|
4180
|
+
url?: string | undefined;
|
|
4131
4181
|
}, {
|
|
4132
4182
|
content: string;
|
|
4133
4183
|
backgroundColor: string;
|
|
4134
4184
|
textColor: string;
|
|
4135
4185
|
icon?: string | undefined;
|
|
4186
|
+
url?: string | undefined;
|
|
4136
4187
|
}>, "many">>;
|
|
4137
4188
|
owners: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
4138
4189
|
id: z.ZodString;
|
|
@@ -4164,11 +4215,11 @@ declare const dataStoreSchema: z.ZodObject<{
|
|
|
4164
4215
|
language: z.ZodOptional<z.ZodString>;
|
|
4165
4216
|
url: z.ZodOptional<z.ZodString>;
|
|
4166
4217
|
}, "strip", z.ZodTypeAny, {
|
|
4167
|
-
language?: string | undefined;
|
|
4168
4218
|
url?: string | undefined;
|
|
4169
|
-
}, {
|
|
4170
4219
|
language?: string | undefined;
|
|
4220
|
+
}, {
|
|
4171
4221
|
url?: string | undefined;
|
|
4222
|
+
language?: string | undefined;
|
|
4172
4223
|
}>>;
|
|
4173
4224
|
specifications: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
4174
4225
|
openapiPath: z.ZodOptional<z.ZodString>;
|
|
@@ -4310,14 +4361,15 @@ declare const dataStoreSchema: z.ZodObject<{
|
|
|
4310
4361
|
backgroundColor: string;
|
|
4311
4362
|
textColor: string;
|
|
4312
4363
|
icon?: string | undefined;
|
|
4364
|
+
url?: string | undefined;
|
|
4313
4365
|
}[] | undefined;
|
|
4314
4366
|
owners?: {
|
|
4315
4367
|
id: string;
|
|
4316
4368
|
}[] | undefined;
|
|
4317
4369
|
schemaPath?: string | undefined;
|
|
4318
4370
|
repository?: {
|
|
4319
|
-
language?: string | undefined;
|
|
4320
4371
|
url?: string | undefined;
|
|
4372
|
+
language?: string | undefined;
|
|
4321
4373
|
} | undefined;
|
|
4322
4374
|
specifications?: {
|
|
4323
4375
|
openapiPath?: string | undefined;
|
|
@@ -4385,6 +4437,7 @@ declare const dataStoreSchema: z.ZodObject<{
|
|
|
4385
4437
|
backgroundColor: string;
|
|
4386
4438
|
textColor: string;
|
|
4387
4439
|
icon?: string | undefined;
|
|
4440
|
+
url?: string | undefined;
|
|
4388
4441
|
}[] | undefined;
|
|
4389
4442
|
owners?: (string | {
|
|
4390
4443
|
id: string;
|
|
@@ -4392,8 +4445,8 @@ declare const dataStoreSchema: z.ZodObject<{
|
|
|
4392
4445
|
})[] | undefined;
|
|
4393
4446
|
schemaPath?: string | undefined;
|
|
4394
4447
|
repository?: {
|
|
4395
|
-
language?: string | undefined;
|
|
4396
4448
|
url?: string | undefined;
|
|
4449
|
+
language?: string | undefined;
|
|
4397
4450
|
} | undefined;
|
|
4398
4451
|
specifications?: {
|
|
4399
4452
|
openapiPath?: string | undefined;
|
|
@@ -4494,16 +4547,19 @@ declare const schemas: {
|
|
|
4494
4547
|
backgroundColor: zod.ZodString;
|
|
4495
4548
|
textColor: zod.ZodString;
|
|
4496
4549
|
icon: zod.ZodOptional<zod.ZodString>;
|
|
4550
|
+
url: zod.ZodOptional<zod.ZodString>;
|
|
4497
4551
|
}, "strip", zod.ZodTypeAny, {
|
|
4498
4552
|
content: string;
|
|
4499
4553
|
backgroundColor: string;
|
|
4500
4554
|
textColor: string;
|
|
4501
4555
|
icon?: string | undefined;
|
|
4556
|
+
url?: string | undefined;
|
|
4502
4557
|
}, {
|
|
4503
4558
|
content: string;
|
|
4504
4559
|
backgroundColor: string;
|
|
4505
4560
|
textColor: string;
|
|
4506
4561
|
icon?: string | undefined;
|
|
4562
|
+
url?: string | undefined;
|
|
4507
4563
|
}>, "many">>;
|
|
4508
4564
|
owners: zod.ZodOptional<zod.ZodArray<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
4509
4565
|
id: zod.ZodString;
|
|
@@ -4535,11 +4591,11 @@ declare const schemas: {
|
|
|
4535
4591
|
language: zod.ZodOptional<zod.ZodString>;
|
|
4536
4592
|
url: zod.ZodOptional<zod.ZodString>;
|
|
4537
4593
|
}, "strip", zod.ZodTypeAny, {
|
|
4538
|
-
language?: string | undefined;
|
|
4539
4594
|
url?: string | undefined;
|
|
4540
|
-
}, {
|
|
4541
4595
|
language?: string | undefined;
|
|
4596
|
+
}, {
|
|
4542
4597
|
url?: string | undefined;
|
|
4598
|
+
language?: string | undefined;
|
|
4543
4599
|
}>>;
|
|
4544
4600
|
specifications: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
4545
4601
|
openapiPath: zod.ZodOptional<zod.ZodString>;
|
|
@@ -4678,14 +4734,15 @@ declare const schemas: {
|
|
|
4678
4734
|
backgroundColor: string;
|
|
4679
4735
|
textColor: string;
|
|
4680
4736
|
icon?: string | undefined;
|
|
4737
|
+
url?: string | undefined;
|
|
4681
4738
|
}[] | undefined;
|
|
4682
4739
|
owners?: {
|
|
4683
4740
|
id: string;
|
|
4684
4741
|
}[] | undefined;
|
|
4685
4742
|
schemaPath?: string | undefined;
|
|
4686
4743
|
repository?: {
|
|
4687
|
-
language?: string | undefined;
|
|
4688
4744
|
url?: string | undefined;
|
|
4745
|
+
language?: string | undefined;
|
|
4689
4746
|
} | undefined;
|
|
4690
4747
|
specifications?: {
|
|
4691
4748
|
openapiPath?: string | undefined;
|
|
@@ -4758,6 +4815,7 @@ declare const schemas: {
|
|
|
4758
4815
|
backgroundColor: string;
|
|
4759
4816
|
textColor: string;
|
|
4760
4817
|
icon?: string | undefined;
|
|
4818
|
+
url?: string | undefined;
|
|
4761
4819
|
}[] | undefined;
|
|
4762
4820
|
owners?: (string | {
|
|
4763
4821
|
id: string;
|
|
@@ -4765,8 +4823,8 @@ declare const schemas: {
|
|
|
4765
4823
|
})[] | undefined;
|
|
4766
4824
|
schemaPath?: string | undefined;
|
|
4767
4825
|
repository?: {
|
|
4768
|
-
language?: string | undefined;
|
|
4769
4826
|
url?: string | undefined;
|
|
4827
|
+
language?: string | undefined;
|
|
4770
4828
|
} | undefined;
|
|
4771
4829
|
specifications?: {
|
|
4772
4830
|
openapiPath?: string | undefined;
|
|
@@ -4893,16 +4951,19 @@ declare const schemas: {
|
|
|
4893
4951
|
backgroundColor: zod.ZodString;
|
|
4894
4952
|
textColor: zod.ZodString;
|
|
4895
4953
|
icon: zod.ZodOptional<zod.ZodString>;
|
|
4954
|
+
url: zod.ZodOptional<zod.ZodString>;
|
|
4896
4955
|
}, "strip", zod.ZodTypeAny, {
|
|
4897
4956
|
content: string;
|
|
4898
4957
|
backgroundColor: string;
|
|
4899
4958
|
textColor: string;
|
|
4900
4959
|
icon?: string | undefined;
|
|
4960
|
+
url?: string | undefined;
|
|
4901
4961
|
}, {
|
|
4902
4962
|
content: string;
|
|
4903
4963
|
backgroundColor: string;
|
|
4904
4964
|
textColor: string;
|
|
4905
4965
|
icon?: string | undefined;
|
|
4966
|
+
url?: string | undefined;
|
|
4906
4967
|
}>, "many">>;
|
|
4907
4968
|
owners: zod.ZodOptional<zod.ZodArray<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
4908
4969
|
id: zod.ZodString;
|
|
@@ -4934,11 +4995,11 @@ declare const schemas: {
|
|
|
4934
4995
|
language: zod.ZodOptional<zod.ZodString>;
|
|
4935
4996
|
url: zod.ZodOptional<zod.ZodString>;
|
|
4936
4997
|
}, "strip", zod.ZodTypeAny, {
|
|
4937
|
-
language?: string | undefined;
|
|
4938
4998
|
url?: string | undefined;
|
|
4939
|
-
}, {
|
|
4940
4999
|
language?: string | undefined;
|
|
5000
|
+
}, {
|
|
4941
5001
|
url?: string | undefined;
|
|
5002
|
+
language?: string | undefined;
|
|
4942
5003
|
}>>;
|
|
4943
5004
|
specifications: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
4944
5005
|
openapiPath: zod.ZodOptional<zod.ZodString>;
|
|
@@ -5077,14 +5138,15 @@ declare const schemas: {
|
|
|
5077
5138
|
backgroundColor: string;
|
|
5078
5139
|
textColor: string;
|
|
5079
5140
|
icon?: string | undefined;
|
|
5141
|
+
url?: string | undefined;
|
|
5080
5142
|
}[] | undefined;
|
|
5081
5143
|
owners?: {
|
|
5082
5144
|
id: string;
|
|
5083
5145
|
}[] | undefined;
|
|
5084
5146
|
schemaPath?: string | undefined;
|
|
5085
5147
|
repository?: {
|
|
5086
|
-
language?: string | undefined;
|
|
5087
5148
|
url?: string | undefined;
|
|
5149
|
+
language?: string | undefined;
|
|
5088
5150
|
} | undefined;
|
|
5089
5151
|
specifications?: {
|
|
5090
5152
|
openapiPath?: string | undefined;
|
|
@@ -5165,6 +5227,7 @@ declare const schemas: {
|
|
|
5165
5227
|
backgroundColor: string;
|
|
5166
5228
|
textColor: string;
|
|
5167
5229
|
icon?: string | undefined;
|
|
5230
|
+
url?: string | undefined;
|
|
5168
5231
|
}[] | undefined;
|
|
5169
5232
|
owners?: (string | {
|
|
5170
5233
|
id: string;
|
|
@@ -5172,8 +5235,8 @@ declare const schemas: {
|
|
|
5172
5235
|
})[] | undefined;
|
|
5173
5236
|
schemaPath?: string | undefined;
|
|
5174
5237
|
repository?: {
|
|
5175
|
-
language?: string | undefined;
|
|
5176
5238
|
url?: string | undefined;
|
|
5239
|
+
language?: string | undefined;
|
|
5177
5240
|
} | undefined;
|
|
5178
5241
|
specifications?: {
|
|
5179
5242
|
openapiPath?: string | undefined;
|
|
@@ -5275,16 +5338,19 @@ declare const schemas: {
|
|
|
5275
5338
|
backgroundColor: zod.ZodString;
|
|
5276
5339
|
textColor: zod.ZodString;
|
|
5277
5340
|
icon: zod.ZodOptional<zod.ZodString>;
|
|
5341
|
+
url: zod.ZodOptional<zod.ZodString>;
|
|
5278
5342
|
}, "strip", zod.ZodTypeAny, {
|
|
5279
5343
|
content: string;
|
|
5280
5344
|
backgroundColor: string;
|
|
5281
5345
|
textColor: string;
|
|
5282
5346
|
icon?: string | undefined;
|
|
5347
|
+
url?: string | undefined;
|
|
5283
5348
|
}, {
|
|
5284
5349
|
content: string;
|
|
5285
5350
|
backgroundColor: string;
|
|
5286
5351
|
textColor: string;
|
|
5287
5352
|
icon?: string | undefined;
|
|
5353
|
+
url?: string | undefined;
|
|
5288
5354
|
}>, "many">>;
|
|
5289
5355
|
owners: zod.ZodOptional<zod.ZodArray<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
5290
5356
|
id: zod.ZodString;
|
|
@@ -5316,11 +5382,11 @@ declare const schemas: {
|
|
|
5316
5382
|
language: zod.ZodOptional<zod.ZodString>;
|
|
5317
5383
|
url: zod.ZodOptional<zod.ZodString>;
|
|
5318
5384
|
}, "strip", zod.ZodTypeAny, {
|
|
5319
|
-
language?: string | undefined;
|
|
5320
5385
|
url?: string | undefined;
|
|
5321
|
-
}, {
|
|
5322
5386
|
language?: string | undefined;
|
|
5387
|
+
}, {
|
|
5323
5388
|
url?: string | undefined;
|
|
5389
|
+
language?: string | undefined;
|
|
5324
5390
|
}>>;
|
|
5325
5391
|
specifications: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
5326
5392
|
openapiPath: zod.ZodOptional<zod.ZodString>;
|
|
@@ -5459,14 +5525,15 @@ declare const schemas: {
|
|
|
5459
5525
|
backgroundColor: string;
|
|
5460
5526
|
textColor: string;
|
|
5461
5527
|
icon?: string | undefined;
|
|
5528
|
+
url?: string | undefined;
|
|
5462
5529
|
}[] | undefined;
|
|
5463
5530
|
owners?: {
|
|
5464
5531
|
id: string;
|
|
5465
5532
|
}[] | undefined;
|
|
5466
5533
|
schemaPath?: string | undefined;
|
|
5467
5534
|
repository?: {
|
|
5468
|
-
language?: string | undefined;
|
|
5469
5535
|
url?: string | undefined;
|
|
5536
|
+
language?: string | undefined;
|
|
5470
5537
|
} | undefined;
|
|
5471
5538
|
specifications?: {
|
|
5472
5539
|
openapiPath?: string | undefined;
|
|
@@ -5535,6 +5602,7 @@ declare const schemas: {
|
|
|
5535
5602
|
backgroundColor: string;
|
|
5536
5603
|
textColor: string;
|
|
5537
5604
|
icon?: string | undefined;
|
|
5605
|
+
url?: string | undefined;
|
|
5538
5606
|
}[] | undefined;
|
|
5539
5607
|
owners?: (string | {
|
|
5540
5608
|
id: string;
|
|
@@ -5542,8 +5610,8 @@ declare const schemas: {
|
|
|
5542
5610
|
})[] | undefined;
|
|
5543
5611
|
schemaPath?: string | undefined;
|
|
5544
5612
|
repository?: {
|
|
5545
|
-
language?: string | undefined;
|
|
5546
5613
|
url?: string | undefined;
|
|
5614
|
+
language?: string | undefined;
|
|
5547
5615
|
} | undefined;
|
|
5548
5616
|
specifications?: {
|
|
5549
5617
|
openapiPath?: string | undefined;
|
|
@@ -5633,16 +5701,19 @@ declare const schemas: {
|
|
|
5633
5701
|
backgroundColor: zod.ZodString;
|
|
5634
5702
|
textColor: zod.ZodString;
|
|
5635
5703
|
icon: zod.ZodOptional<zod.ZodString>;
|
|
5704
|
+
url: zod.ZodOptional<zod.ZodString>;
|
|
5636
5705
|
}, "strip", zod.ZodTypeAny, {
|
|
5637
5706
|
content: string;
|
|
5638
5707
|
backgroundColor: string;
|
|
5639
5708
|
textColor: string;
|
|
5640
5709
|
icon?: string | undefined;
|
|
5710
|
+
url?: string | undefined;
|
|
5641
5711
|
}, {
|
|
5642
5712
|
content: string;
|
|
5643
5713
|
backgroundColor: string;
|
|
5644
5714
|
textColor: string;
|
|
5645
5715
|
icon?: string | undefined;
|
|
5716
|
+
url?: string | undefined;
|
|
5646
5717
|
}>, "many">>;
|
|
5647
5718
|
owners: zod.ZodOptional<zod.ZodArray<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
5648
5719
|
id: zod.ZodString;
|
|
@@ -5674,11 +5745,11 @@ declare const schemas: {
|
|
|
5674
5745
|
language: zod.ZodOptional<zod.ZodString>;
|
|
5675
5746
|
url: zod.ZodOptional<zod.ZodString>;
|
|
5676
5747
|
}, "strip", zod.ZodTypeAny, {
|
|
5677
|
-
language?: string | undefined;
|
|
5678
5748
|
url?: string | undefined;
|
|
5679
|
-
}, {
|
|
5680
5749
|
language?: string | undefined;
|
|
5750
|
+
}, {
|
|
5681
5751
|
url?: string | undefined;
|
|
5752
|
+
language?: string | undefined;
|
|
5682
5753
|
}>>;
|
|
5683
5754
|
specifications: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
5684
5755
|
openapiPath: zod.ZodOptional<zod.ZodString>;
|
|
@@ -5817,14 +5888,15 @@ declare const schemas: {
|
|
|
5817
5888
|
backgroundColor: string;
|
|
5818
5889
|
textColor: string;
|
|
5819
5890
|
icon?: string | undefined;
|
|
5891
|
+
url?: string | undefined;
|
|
5820
5892
|
}[] | undefined;
|
|
5821
5893
|
owners?: {
|
|
5822
5894
|
id: string;
|
|
5823
5895
|
}[] | undefined;
|
|
5824
5896
|
schemaPath?: string | undefined;
|
|
5825
5897
|
repository?: {
|
|
5826
|
-
language?: string | undefined;
|
|
5827
5898
|
url?: string | undefined;
|
|
5899
|
+
language?: string | undefined;
|
|
5828
5900
|
} | undefined;
|
|
5829
5901
|
specifications?: {
|
|
5830
5902
|
openapiPath?: string | undefined;
|
|
@@ -5893,6 +5965,7 @@ declare const schemas: {
|
|
|
5893
5965
|
backgroundColor: string;
|
|
5894
5966
|
textColor: string;
|
|
5895
5967
|
icon?: string | undefined;
|
|
5968
|
+
url?: string | undefined;
|
|
5896
5969
|
}[] | undefined;
|
|
5897
5970
|
owners?: (string | {
|
|
5898
5971
|
id: string;
|
|
@@ -5900,8 +5973,8 @@ declare const schemas: {
|
|
|
5900
5973
|
})[] | undefined;
|
|
5901
5974
|
schemaPath?: string | undefined;
|
|
5902
5975
|
repository?: {
|
|
5903
|
-
language?: string | undefined;
|
|
5904
5976
|
url?: string | undefined;
|
|
5977
|
+
language?: string | undefined;
|
|
5905
5978
|
} | undefined;
|
|
5906
5979
|
specifications?: {
|
|
5907
5980
|
openapiPath?: string | undefined;
|
|
@@ -5991,16 +6064,19 @@ declare const schemas: {
|
|
|
5991
6064
|
backgroundColor: zod.ZodString;
|
|
5992
6065
|
textColor: zod.ZodString;
|
|
5993
6066
|
icon: zod.ZodOptional<zod.ZodString>;
|
|
6067
|
+
url: zod.ZodOptional<zod.ZodString>;
|
|
5994
6068
|
}, "strip", zod.ZodTypeAny, {
|
|
5995
6069
|
content: string;
|
|
5996
6070
|
backgroundColor: string;
|
|
5997
6071
|
textColor: string;
|
|
5998
6072
|
icon?: string | undefined;
|
|
6073
|
+
url?: string | undefined;
|
|
5999
6074
|
}, {
|
|
6000
6075
|
content: string;
|
|
6001
6076
|
backgroundColor: string;
|
|
6002
6077
|
textColor: string;
|
|
6003
6078
|
icon?: string | undefined;
|
|
6079
|
+
url?: string | undefined;
|
|
6004
6080
|
}>, "many">>;
|
|
6005
6081
|
owners: zod.ZodOptional<zod.ZodArray<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
6006
6082
|
id: zod.ZodString;
|
|
@@ -6032,11 +6108,11 @@ declare const schemas: {
|
|
|
6032
6108
|
language: zod.ZodOptional<zod.ZodString>;
|
|
6033
6109
|
url: zod.ZodOptional<zod.ZodString>;
|
|
6034
6110
|
}, "strip", zod.ZodTypeAny, {
|
|
6035
|
-
language?: string | undefined;
|
|
6036
6111
|
url?: string | undefined;
|
|
6037
|
-
}, {
|
|
6038
6112
|
language?: string | undefined;
|
|
6113
|
+
}, {
|
|
6039
6114
|
url?: string | undefined;
|
|
6115
|
+
language?: string | undefined;
|
|
6040
6116
|
}>>;
|
|
6041
6117
|
specifications: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
6042
6118
|
openapiPath: zod.ZodOptional<zod.ZodString>;
|
|
@@ -6175,14 +6251,15 @@ declare const schemas: {
|
|
|
6175
6251
|
backgroundColor: string;
|
|
6176
6252
|
textColor: string;
|
|
6177
6253
|
icon?: string | undefined;
|
|
6254
|
+
url?: string | undefined;
|
|
6178
6255
|
}[] | undefined;
|
|
6179
6256
|
owners?: {
|
|
6180
6257
|
id: string;
|
|
6181
6258
|
}[] | undefined;
|
|
6182
6259
|
schemaPath?: string | undefined;
|
|
6183
6260
|
repository?: {
|
|
6184
|
-
language?: string | undefined;
|
|
6185
6261
|
url?: string | undefined;
|
|
6262
|
+
language?: string | undefined;
|
|
6186
6263
|
} | undefined;
|
|
6187
6264
|
specifications?: {
|
|
6188
6265
|
openapiPath?: string | undefined;
|
|
@@ -6251,6 +6328,7 @@ declare const schemas: {
|
|
|
6251
6328
|
backgroundColor: string;
|
|
6252
6329
|
textColor: string;
|
|
6253
6330
|
icon?: string | undefined;
|
|
6331
|
+
url?: string | undefined;
|
|
6254
6332
|
}[] | undefined;
|
|
6255
6333
|
owners?: (string | {
|
|
6256
6334
|
id: string;
|
|
@@ -6258,8 +6336,8 @@ declare const schemas: {
|
|
|
6258
6336
|
})[] | undefined;
|
|
6259
6337
|
schemaPath?: string | undefined;
|
|
6260
6338
|
repository?: {
|
|
6261
|
-
language?: string | undefined;
|
|
6262
6339
|
url?: string | undefined;
|
|
6340
|
+
language?: string | undefined;
|
|
6263
6341
|
} | undefined;
|
|
6264
6342
|
specifications?: {
|
|
6265
6343
|
openapiPath?: string | undefined;
|
|
@@ -6366,16 +6444,19 @@ declare const schemas: {
|
|
|
6366
6444
|
backgroundColor: zod.ZodString;
|
|
6367
6445
|
textColor: zod.ZodString;
|
|
6368
6446
|
icon: zod.ZodOptional<zod.ZodString>;
|
|
6447
|
+
url: zod.ZodOptional<zod.ZodString>;
|
|
6369
6448
|
}, "strip", zod.ZodTypeAny, {
|
|
6370
6449
|
content: string;
|
|
6371
6450
|
backgroundColor: string;
|
|
6372
6451
|
textColor: string;
|
|
6373
6452
|
icon?: string | undefined;
|
|
6453
|
+
url?: string | undefined;
|
|
6374
6454
|
}, {
|
|
6375
6455
|
content: string;
|
|
6376
6456
|
backgroundColor: string;
|
|
6377
6457
|
textColor: string;
|
|
6378
6458
|
icon?: string | undefined;
|
|
6459
|
+
url?: string | undefined;
|
|
6379
6460
|
}>, "many">>;
|
|
6380
6461
|
owners: zod.ZodOptional<zod.ZodArray<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
6381
6462
|
id: zod.ZodString;
|
|
@@ -6407,11 +6488,11 @@ declare const schemas: {
|
|
|
6407
6488
|
language: zod.ZodOptional<zod.ZodString>;
|
|
6408
6489
|
url: zod.ZodOptional<zod.ZodString>;
|
|
6409
6490
|
}, "strip", zod.ZodTypeAny, {
|
|
6410
|
-
language?: string | undefined;
|
|
6411
6491
|
url?: string | undefined;
|
|
6412
|
-
}, {
|
|
6413
6492
|
language?: string | undefined;
|
|
6493
|
+
}, {
|
|
6414
6494
|
url?: string | undefined;
|
|
6495
|
+
language?: string | undefined;
|
|
6415
6496
|
}>>;
|
|
6416
6497
|
specifications: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
6417
6498
|
openapiPath: zod.ZodOptional<zod.ZodString>;
|
|
@@ -6556,14 +6637,15 @@ declare const schemas: {
|
|
|
6556
6637
|
backgroundColor: string;
|
|
6557
6638
|
textColor: string;
|
|
6558
6639
|
icon?: string | undefined;
|
|
6640
|
+
url?: string | undefined;
|
|
6559
6641
|
}[] | undefined;
|
|
6560
6642
|
owners?: {
|
|
6561
6643
|
id: string;
|
|
6562
6644
|
}[] | undefined;
|
|
6563
6645
|
schemaPath?: string | undefined;
|
|
6564
6646
|
repository?: {
|
|
6565
|
-
language?: string | undefined;
|
|
6566
6647
|
url?: string | undefined;
|
|
6648
|
+
language?: string | undefined;
|
|
6567
6649
|
} | undefined;
|
|
6568
6650
|
specifications?: {
|
|
6569
6651
|
openapiPath?: string | undefined;
|
|
@@ -6638,6 +6720,7 @@ declare const schemas: {
|
|
|
6638
6720
|
backgroundColor: string;
|
|
6639
6721
|
textColor: string;
|
|
6640
6722
|
icon?: string | undefined;
|
|
6723
|
+
url?: string | undefined;
|
|
6641
6724
|
}[] | undefined;
|
|
6642
6725
|
owners?: (string | {
|
|
6643
6726
|
id: string;
|
|
@@ -6645,8 +6728,8 @@ declare const schemas: {
|
|
|
6645
6728
|
})[] | undefined;
|
|
6646
6729
|
schemaPath?: string | undefined;
|
|
6647
6730
|
repository?: {
|
|
6648
|
-
language?: string | undefined;
|
|
6649
6731
|
url?: string | undefined;
|
|
6732
|
+
language?: string | undefined;
|
|
6650
6733
|
} | undefined;
|
|
6651
6734
|
specifications?: {
|
|
6652
6735
|
openapiPath?: string | undefined;
|
|
@@ -6763,8 +6846,8 @@ declare const schemas: {
|
|
|
6763
6846
|
}, "strip", zod.ZodTypeAny, {
|
|
6764
6847
|
title: string;
|
|
6765
6848
|
icon?: string | undefined;
|
|
6766
|
-
type?: string | undefined;
|
|
6767
6849
|
url?: string | undefined;
|
|
6850
|
+
type?: string | undefined;
|
|
6768
6851
|
color?: string | undefined;
|
|
6769
6852
|
summary?: string | undefined;
|
|
6770
6853
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -6776,8 +6859,8 @@ declare const schemas: {
|
|
|
6776
6859
|
}, {
|
|
6777
6860
|
title: string;
|
|
6778
6861
|
icon?: string | undefined;
|
|
6779
|
-
type?: string | undefined;
|
|
6780
6862
|
url?: string | undefined;
|
|
6863
|
+
type?: string | undefined;
|
|
6781
6864
|
color?: string | undefined;
|
|
6782
6865
|
summary?: string | undefined;
|
|
6783
6866
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -6831,8 +6914,8 @@ declare const schemas: {
|
|
|
6831
6914
|
custom?: {
|
|
6832
6915
|
title: string;
|
|
6833
6916
|
icon?: string | undefined;
|
|
6834
|
-
type?: string | undefined;
|
|
6835
6917
|
url?: string | undefined;
|
|
6918
|
+
type?: string | undefined;
|
|
6836
6919
|
color?: string | undefined;
|
|
6837
6920
|
summary?: string | undefined;
|
|
6838
6921
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -6878,8 +6961,8 @@ declare const schemas: {
|
|
|
6878
6961
|
custom?: {
|
|
6879
6962
|
title: string;
|
|
6880
6963
|
icon?: string | undefined;
|
|
6881
|
-
type?: string | undefined;
|
|
6882
6964
|
url?: string | undefined;
|
|
6965
|
+
type?: string | undefined;
|
|
6883
6966
|
color?: string | undefined;
|
|
6884
6967
|
summary?: string | undefined;
|
|
6885
6968
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -6925,8 +7008,8 @@ declare const schemas: {
|
|
|
6925
7008
|
custom?: {
|
|
6926
7009
|
title: string;
|
|
6927
7010
|
icon?: string | undefined;
|
|
6928
|
-
type?: string | undefined;
|
|
6929
7011
|
url?: string | undefined;
|
|
7012
|
+
type?: string | undefined;
|
|
6930
7013
|
color?: string | undefined;
|
|
6931
7014
|
summary?: string | undefined;
|
|
6932
7015
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -6972,8 +7055,8 @@ declare const schemas: {
|
|
|
6972
7055
|
custom?: {
|
|
6973
7056
|
title: string;
|
|
6974
7057
|
icon?: string | undefined;
|
|
6975
|
-
type?: string | undefined;
|
|
6976
7058
|
url?: string | undefined;
|
|
7059
|
+
type?: string | undefined;
|
|
6977
7060
|
color?: string | undefined;
|
|
6978
7061
|
summary?: string | undefined;
|
|
6979
7062
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -7029,16 +7112,19 @@ declare const schemas: {
|
|
|
7029
7112
|
backgroundColor: zod.ZodString;
|
|
7030
7113
|
textColor: zod.ZodString;
|
|
7031
7114
|
icon: zod.ZodOptional<zod.ZodString>;
|
|
7115
|
+
url: zod.ZodOptional<zod.ZodString>;
|
|
7032
7116
|
}, "strip", zod.ZodTypeAny, {
|
|
7033
7117
|
content: string;
|
|
7034
7118
|
backgroundColor: string;
|
|
7035
7119
|
textColor: string;
|
|
7036
7120
|
icon?: string | undefined;
|
|
7121
|
+
url?: string | undefined;
|
|
7037
7122
|
}, {
|
|
7038
7123
|
content: string;
|
|
7039
7124
|
backgroundColor: string;
|
|
7040
7125
|
textColor: string;
|
|
7041
7126
|
icon?: string | undefined;
|
|
7127
|
+
url?: string | undefined;
|
|
7042
7128
|
}>, "many">>;
|
|
7043
7129
|
owners: zod.ZodOptional<zod.ZodArray<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
7044
7130
|
id: zod.ZodString;
|
|
@@ -7070,11 +7156,11 @@ declare const schemas: {
|
|
|
7070
7156
|
language: zod.ZodOptional<zod.ZodString>;
|
|
7071
7157
|
url: zod.ZodOptional<zod.ZodString>;
|
|
7072
7158
|
}, "strip", zod.ZodTypeAny, {
|
|
7073
|
-
language?: string | undefined;
|
|
7074
7159
|
url?: string | undefined;
|
|
7075
|
-
}, {
|
|
7076
7160
|
language?: string | undefined;
|
|
7161
|
+
}, {
|
|
7077
7162
|
url?: string | undefined;
|
|
7163
|
+
language?: string | undefined;
|
|
7078
7164
|
}>>;
|
|
7079
7165
|
specifications: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
7080
7166
|
openapiPath: zod.ZodOptional<zod.ZodString>;
|
|
@@ -7210,8 +7296,8 @@ declare const schemas: {
|
|
|
7210
7296
|
custom?: {
|
|
7211
7297
|
title: string;
|
|
7212
7298
|
icon?: string | undefined;
|
|
7213
|
-
type?: string | undefined;
|
|
7214
7299
|
url?: string | undefined;
|
|
7300
|
+
type?: string | undefined;
|
|
7215
7301
|
color?: string | undefined;
|
|
7216
7302
|
summary?: string | undefined;
|
|
7217
7303
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -7261,14 +7347,15 @@ declare const schemas: {
|
|
|
7261
7347
|
backgroundColor: string;
|
|
7262
7348
|
textColor: string;
|
|
7263
7349
|
icon?: string | undefined;
|
|
7350
|
+
url?: string | undefined;
|
|
7264
7351
|
}[] | undefined;
|
|
7265
7352
|
owners?: {
|
|
7266
7353
|
id: string;
|
|
7267
7354
|
}[] | undefined;
|
|
7268
7355
|
schemaPath?: string | undefined;
|
|
7269
7356
|
repository?: {
|
|
7270
|
-
language?: string | undefined;
|
|
7271
7357
|
url?: string | undefined;
|
|
7358
|
+
language?: string | undefined;
|
|
7272
7359
|
} | undefined;
|
|
7273
7360
|
specifications?: {
|
|
7274
7361
|
openapiPath?: string | undefined;
|
|
@@ -7326,8 +7413,8 @@ declare const schemas: {
|
|
|
7326
7413
|
custom?: {
|
|
7327
7414
|
title: string;
|
|
7328
7415
|
icon?: string | undefined;
|
|
7329
|
-
type?: string | undefined;
|
|
7330
7416
|
url?: string | undefined;
|
|
7417
|
+
type?: string | undefined;
|
|
7331
7418
|
color?: string | undefined;
|
|
7332
7419
|
summary?: string | undefined;
|
|
7333
7420
|
properties?: Record<string, string | number> | undefined;
|
|
@@ -7377,6 +7464,7 @@ declare const schemas: {
|
|
|
7377
7464
|
backgroundColor: string;
|
|
7378
7465
|
textColor: string;
|
|
7379
7466
|
icon?: string | undefined;
|
|
7467
|
+
url?: string | undefined;
|
|
7380
7468
|
}[] | undefined;
|
|
7381
7469
|
owners?: (string | {
|
|
7382
7470
|
id: string;
|
|
@@ -7384,8 +7472,8 @@ declare const schemas: {
|
|
|
7384
7472
|
})[] | undefined;
|
|
7385
7473
|
schemaPath?: string | undefined;
|
|
7386
7474
|
repository?: {
|
|
7387
|
-
language?: string | undefined;
|
|
7388
7475
|
url?: string | undefined;
|
|
7476
|
+
language?: string | undefined;
|
|
7389
7477
|
} | undefined;
|
|
7390
7478
|
specifications?: {
|
|
7391
7479
|
openapiPath?: string | undefined;
|
|
@@ -7479,16 +7567,19 @@ declare const schemas: {
|
|
|
7479
7567
|
backgroundColor: zod.ZodString;
|
|
7480
7568
|
textColor: zod.ZodString;
|
|
7481
7569
|
icon: zod.ZodOptional<zod.ZodString>;
|
|
7570
|
+
url: zod.ZodOptional<zod.ZodString>;
|
|
7482
7571
|
}, "strip", zod.ZodTypeAny, {
|
|
7483
7572
|
content: string;
|
|
7484
7573
|
backgroundColor: string;
|
|
7485
7574
|
textColor: string;
|
|
7486
7575
|
icon?: string | undefined;
|
|
7576
|
+
url?: string | undefined;
|
|
7487
7577
|
}, {
|
|
7488
7578
|
content: string;
|
|
7489
7579
|
backgroundColor: string;
|
|
7490
7580
|
textColor: string;
|
|
7491
7581
|
icon?: string | undefined;
|
|
7582
|
+
url?: string | undefined;
|
|
7492
7583
|
}>, "many">>;
|
|
7493
7584
|
owners: zod.ZodOptional<zod.ZodArray<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
7494
7585
|
id: zod.ZodString;
|
|
@@ -7520,11 +7611,11 @@ declare const schemas: {
|
|
|
7520
7611
|
language: zod.ZodOptional<zod.ZodString>;
|
|
7521
7612
|
url: zod.ZodOptional<zod.ZodString>;
|
|
7522
7613
|
}, "strip", zod.ZodTypeAny, {
|
|
7523
|
-
language?: string | undefined;
|
|
7524
7614
|
url?: string | undefined;
|
|
7525
|
-
}, {
|
|
7526
7615
|
language?: string | undefined;
|
|
7616
|
+
}, {
|
|
7527
7617
|
url?: string | undefined;
|
|
7618
|
+
language?: string | undefined;
|
|
7528
7619
|
}>>;
|
|
7529
7620
|
specifications: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
7530
7621
|
openapiPath: zod.ZodOptional<zod.ZodString>;
|
|
@@ -7663,14 +7754,15 @@ declare const schemas: {
|
|
|
7663
7754
|
backgroundColor: string;
|
|
7664
7755
|
textColor: string;
|
|
7665
7756
|
icon?: string | undefined;
|
|
7757
|
+
url?: string | undefined;
|
|
7666
7758
|
}[] | undefined;
|
|
7667
7759
|
owners?: {
|
|
7668
7760
|
id: string;
|
|
7669
7761
|
}[] | undefined;
|
|
7670
7762
|
schemaPath?: string | undefined;
|
|
7671
7763
|
repository?: {
|
|
7672
|
-
language?: string | undefined;
|
|
7673
7764
|
url?: string | undefined;
|
|
7765
|
+
language?: string | undefined;
|
|
7674
7766
|
} | undefined;
|
|
7675
7767
|
specifications?: {
|
|
7676
7768
|
openapiPath?: string | undefined;
|
|
@@ -7744,6 +7836,7 @@ declare const schemas: {
|
|
|
7744
7836
|
backgroundColor: string;
|
|
7745
7837
|
textColor: string;
|
|
7746
7838
|
icon?: string | undefined;
|
|
7839
|
+
url?: string | undefined;
|
|
7747
7840
|
}[] | undefined;
|
|
7748
7841
|
owners?: (string | {
|
|
7749
7842
|
id: string;
|
|
@@ -7751,8 +7844,8 @@ declare const schemas: {
|
|
|
7751
7844
|
})[] | undefined;
|
|
7752
7845
|
schemaPath?: string | undefined;
|
|
7753
7846
|
repository?: {
|
|
7754
|
-
language?: string | undefined;
|
|
7755
7847
|
url?: string | undefined;
|
|
7848
|
+
language?: string | undefined;
|
|
7756
7849
|
} | undefined;
|
|
7757
7850
|
specifications?: {
|
|
7758
7851
|
openapiPath?: string | undefined;
|
|
@@ -7926,16 +8019,19 @@ declare const schemas: {
|
|
|
7926
8019
|
backgroundColor: zod.ZodString;
|
|
7927
8020
|
textColor: zod.ZodString;
|
|
7928
8021
|
icon: zod.ZodOptional<zod.ZodString>;
|
|
8022
|
+
url: zod.ZodOptional<zod.ZodString>;
|
|
7929
8023
|
}, "strip", zod.ZodTypeAny, {
|
|
7930
8024
|
content: string;
|
|
7931
8025
|
backgroundColor: string;
|
|
7932
8026
|
textColor: string;
|
|
7933
8027
|
icon?: string | undefined;
|
|
8028
|
+
url?: string | undefined;
|
|
7934
8029
|
}, {
|
|
7935
8030
|
content: string;
|
|
7936
8031
|
backgroundColor: string;
|
|
7937
8032
|
textColor: string;
|
|
7938
8033
|
icon?: string | undefined;
|
|
8034
|
+
url?: string | undefined;
|
|
7939
8035
|
}>, "many">>;
|
|
7940
8036
|
owners: zod.ZodOptional<zod.ZodArray<zod.ZodEffects<zod.ZodUnion<[zod.ZodString, zod.ZodObject<{
|
|
7941
8037
|
id: zod.ZodString;
|
|
@@ -7967,11 +8063,11 @@ declare const schemas: {
|
|
|
7967
8063
|
language: zod.ZodOptional<zod.ZodString>;
|
|
7968
8064
|
url: zod.ZodOptional<zod.ZodString>;
|
|
7969
8065
|
}, "strip", zod.ZodTypeAny, {
|
|
7970
|
-
language?: string | undefined;
|
|
7971
8066
|
url?: string | undefined;
|
|
7972
|
-
}, {
|
|
7973
8067
|
language?: string | undefined;
|
|
8068
|
+
}, {
|
|
7974
8069
|
url?: string | undefined;
|
|
8070
|
+
language?: string | undefined;
|
|
7975
8071
|
}>>;
|
|
7976
8072
|
specifications: zod.ZodOptional<zod.ZodUnion<[zod.ZodObject<{
|
|
7977
8073
|
openapiPath: zod.ZodOptional<zod.ZodString>;
|
|
@@ -8113,14 +8209,15 @@ declare const schemas: {
|
|
|
8113
8209
|
backgroundColor: string;
|
|
8114
8210
|
textColor: string;
|
|
8115
8211
|
icon?: string | undefined;
|
|
8212
|
+
url?: string | undefined;
|
|
8116
8213
|
}[] | undefined;
|
|
8117
8214
|
owners?: {
|
|
8118
8215
|
id: string;
|
|
8119
8216
|
}[] | undefined;
|
|
8120
8217
|
schemaPath?: string | undefined;
|
|
8121
8218
|
repository?: {
|
|
8122
|
-
language?: string | undefined;
|
|
8123
8219
|
url?: string | undefined;
|
|
8220
|
+
language?: string | undefined;
|
|
8124
8221
|
} | undefined;
|
|
8125
8222
|
specifications?: {
|
|
8126
8223
|
openapiPath?: string | undefined;
|
|
@@ -8188,6 +8285,7 @@ declare const schemas: {
|
|
|
8188
8285
|
backgroundColor: string;
|
|
8189
8286
|
textColor: string;
|
|
8190
8287
|
icon?: string | undefined;
|
|
8288
|
+
url?: string | undefined;
|
|
8191
8289
|
}[] | undefined;
|
|
8192
8290
|
owners?: (string | {
|
|
8193
8291
|
id: string;
|
|
@@ -8195,8 +8293,8 @@ declare const schemas: {
|
|
|
8195
8293
|
})[] | undefined;
|
|
8196
8294
|
schemaPath?: string | undefined;
|
|
8197
8295
|
repository?: {
|
|
8198
|
-
language?: string | undefined;
|
|
8199
8296
|
url?: string | undefined;
|
|
8297
|
+
language?: string | undefined;
|
|
8200
8298
|
} | undefined;
|
|
8201
8299
|
specifications?: {
|
|
8202
8300
|
openapiPath?: string | undefined;
|