@mintlify/prebuild 1.0.1238 → 1.0.1240
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/prebuild/update/ConfigUpdater.d.ts +72 -54
- package/dist/prebuild/update/docsConfig/generateAsyncApiFromDocsConfig.js +34 -18
- package/dist/prebuild/update/docsConfig/generateOpenApiFromDocsConfig.js +37 -21
- package/dist/prebuild/update/docsConfig/generateSdkDivisions.d.ts +39 -3
- package/dist/prebuild/update/docsConfig/generateSdkDivisions.js +432 -48
- package/dist/prebuild/update/docsConfig/index.d.ts +11 -2
- package/dist/prebuild/update/docsConfig/index.js +53 -3
- package/dist/prebuild/update/index.d.ts +72 -54
- package/dist/prebuild/update/index.js +20 -3
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +6 -6
|
@@ -70,7 +70,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
70
70
|
sdk?: undefined;
|
|
71
71
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
72
72
|
} | {
|
|
73
|
-
groups: ({
|
|
73
|
+
groups: (Omit<{
|
|
74
74
|
group: string;
|
|
75
75
|
icon?: string | {
|
|
76
76
|
name: string;
|
|
@@ -80,14 +80,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
80
80
|
expanded?: boolean | undefined;
|
|
81
81
|
public?: boolean | undefined;
|
|
82
82
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
83
|
+
graphql?: undefined;
|
|
83
84
|
tag?: string | undefined;
|
|
84
85
|
searchable?: boolean | undefined;
|
|
85
86
|
boost?: number | undefined;
|
|
86
87
|
hidden?: boolean | undefined;
|
|
87
|
-
graphql?: undefined;
|
|
88
88
|
sdk?: undefined;
|
|
89
89
|
root?: string | undefined;
|
|
90
|
-
} & {
|
|
90
|
+
}, "sdk"> & {
|
|
91
91
|
openapi?: string | string[] | {
|
|
92
92
|
source: string;
|
|
93
93
|
directory?: string | undefined;
|
|
@@ -97,6 +97,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
97
97
|
directory?: string | undefined;
|
|
98
98
|
} | undefined;
|
|
99
99
|
} & {
|
|
100
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
100
101
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
101
102
|
})[];
|
|
102
103
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -104,7 +105,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
104
105
|
sdk?: undefined;
|
|
105
106
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
106
107
|
} | {
|
|
107
|
-
pages: (string | ({
|
|
108
|
+
pages: (string | (Omit<{
|
|
108
109
|
group: string;
|
|
109
110
|
icon?: string | {
|
|
110
111
|
name: string;
|
|
@@ -114,14 +115,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
114
115
|
expanded?: boolean | undefined;
|
|
115
116
|
public?: boolean | undefined;
|
|
116
117
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
118
|
+
graphql?: undefined;
|
|
117
119
|
tag?: string | undefined;
|
|
118
120
|
searchable?: boolean | undefined;
|
|
119
121
|
boost?: number | undefined;
|
|
120
122
|
hidden?: boolean | undefined;
|
|
121
|
-
graphql?: undefined;
|
|
122
123
|
sdk?: undefined;
|
|
123
124
|
root?: string | undefined;
|
|
124
|
-
} & {
|
|
125
|
+
}, "sdk"> & {
|
|
125
126
|
openapi?: string | string[] | {
|
|
126
127
|
source: string;
|
|
127
128
|
directory?: string | undefined;
|
|
@@ -131,6 +132,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
131
132
|
directory?: string | undefined;
|
|
132
133
|
} | undefined;
|
|
133
134
|
} & {
|
|
135
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
134
136
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
135
137
|
}))[];
|
|
136
138
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -486,7 +488,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
486
488
|
sdk?: undefined;
|
|
487
489
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
488
490
|
} | {
|
|
489
|
-
groups: ({
|
|
491
|
+
groups: (Omit<{
|
|
490
492
|
group: string;
|
|
491
493
|
icon?: string | {
|
|
492
494
|
name: string;
|
|
@@ -496,14 +498,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
496
498
|
expanded?: boolean | undefined;
|
|
497
499
|
public?: boolean | undefined;
|
|
498
500
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
501
|
+
graphql?: undefined;
|
|
499
502
|
tag?: string | undefined;
|
|
500
503
|
searchable?: boolean | undefined;
|
|
501
504
|
boost?: number | undefined;
|
|
502
505
|
hidden?: boolean | undefined;
|
|
503
|
-
graphql?: undefined;
|
|
504
506
|
sdk?: undefined;
|
|
505
507
|
root?: string | undefined;
|
|
506
|
-
} & {
|
|
508
|
+
}, "sdk"> & {
|
|
507
509
|
openapi?: string | string[] | {
|
|
508
510
|
source: string;
|
|
509
511
|
directory?: string | undefined;
|
|
@@ -513,6 +515,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
513
515
|
directory?: string | undefined;
|
|
514
516
|
} | undefined;
|
|
515
517
|
} & {
|
|
518
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
516
519
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
517
520
|
})[];
|
|
518
521
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -520,7 +523,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
520
523
|
sdk?: undefined;
|
|
521
524
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
522
525
|
} | {
|
|
523
|
-
pages: (string | ({
|
|
526
|
+
pages: (string | (Omit<{
|
|
524
527
|
group: string;
|
|
525
528
|
icon?: string | {
|
|
526
529
|
name: string;
|
|
@@ -530,14 +533,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
530
533
|
expanded?: boolean | undefined;
|
|
531
534
|
public?: boolean | undefined;
|
|
532
535
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
536
|
+
graphql?: undefined;
|
|
533
537
|
tag?: string | undefined;
|
|
534
538
|
searchable?: boolean | undefined;
|
|
535
539
|
boost?: number | undefined;
|
|
536
540
|
hidden?: boolean | undefined;
|
|
537
|
-
graphql?: undefined;
|
|
538
541
|
sdk?: undefined;
|
|
539
542
|
root?: string | undefined;
|
|
540
|
-
} & {
|
|
543
|
+
}, "sdk"> & {
|
|
541
544
|
openapi?: string | string[] | {
|
|
542
545
|
source: string;
|
|
543
546
|
directory?: string | undefined;
|
|
@@ -547,6 +550,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
547
550
|
directory?: string | undefined;
|
|
548
551
|
} | undefined;
|
|
549
552
|
} & {
|
|
553
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
550
554
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
551
555
|
}))[];
|
|
552
556
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -902,7 +906,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
902
906
|
sdk?: undefined;
|
|
903
907
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
904
908
|
} | {
|
|
905
|
-
groups: ({
|
|
909
|
+
groups: (Omit<{
|
|
906
910
|
group: string;
|
|
907
911
|
icon?: string | {
|
|
908
912
|
name: string;
|
|
@@ -912,14 +916,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
912
916
|
expanded?: boolean | undefined;
|
|
913
917
|
public?: boolean | undefined;
|
|
914
918
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
919
|
+
graphql?: undefined;
|
|
915
920
|
tag?: string | undefined;
|
|
916
921
|
searchable?: boolean | undefined;
|
|
917
922
|
boost?: number | undefined;
|
|
918
923
|
hidden?: boolean | undefined;
|
|
919
|
-
graphql?: undefined;
|
|
920
924
|
sdk?: undefined;
|
|
921
925
|
root?: string | undefined;
|
|
922
|
-
} & {
|
|
926
|
+
}, "sdk"> & {
|
|
923
927
|
openapi?: string | string[] | {
|
|
924
928
|
source: string;
|
|
925
929
|
directory?: string | undefined;
|
|
@@ -929,6 +933,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
929
933
|
directory?: string | undefined;
|
|
930
934
|
} | undefined;
|
|
931
935
|
} & {
|
|
936
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
932
937
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
933
938
|
})[];
|
|
934
939
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -936,7 +941,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
936
941
|
sdk?: undefined;
|
|
937
942
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
938
943
|
} | {
|
|
939
|
-
pages: (string | ({
|
|
944
|
+
pages: (string | (Omit<{
|
|
940
945
|
group: string;
|
|
941
946
|
icon?: string | {
|
|
942
947
|
name: string;
|
|
@@ -946,14 +951,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
946
951
|
expanded?: boolean | undefined;
|
|
947
952
|
public?: boolean | undefined;
|
|
948
953
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
954
|
+
graphql?: undefined;
|
|
949
955
|
tag?: string | undefined;
|
|
950
956
|
searchable?: boolean | undefined;
|
|
951
957
|
boost?: number | undefined;
|
|
952
958
|
hidden?: boolean | undefined;
|
|
953
|
-
graphql?: undefined;
|
|
954
959
|
sdk?: undefined;
|
|
955
960
|
root?: string | undefined;
|
|
956
|
-
} & {
|
|
961
|
+
}, "sdk"> & {
|
|
957
962
|
openapi?: string | string[] | {
|
|
958
963
|
source: string;
|
|
959
964
|
directory?: string | undefined;
|
|
@@ -963,6 +968,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
963
968
|
directory?: string | undefined;
|
|
964
969
|
} | undefined;
|
|
965
970
|
} & {
|
|
971
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
966
972
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
967
973
|
}))[];
|
|
968
974
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -1318,7 +1324,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1318
1324
|
sdk?: undefined;
|
|
1319
1325
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1320
1326
|
} | {
|
|
1321
|
-
groups: ({
|
|
1327
|
+
groups: (Omit<{
|
|
1322
1328
|
group: string;
|
|
1323
1329
|
icon?: string | {
|
|
1324
1330
|
name: string;
|
|
@@ -1328,14 +1334,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1328
1334
|
expanded?: boolean | undefined;
|
|
1329
1335
|
public?: boolean | undefined;
|
|
1330
1336
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1337
|
+
graphql?: undefined;
|
|
1331
1338
|
tag?: string | undefined;
|
|
1332
1339
|
searchable?: boolean | undefined;
|
|
1333
1340
|
boost?: number | undefined;
|
|
1334
1341
|
hidden?: boolean | undefined;
|
|
1335
|
-
graphql?: undefined;
|
|
1336
1342
|
sdk?: undefined;
|
|
1337
1343
|
root?: string | undefined;
|
|
1338
|
-
} & {
|
|
1344
|
+
}, "sdk"> & {
|
|
1339
1345
|
openapi?: string | string[] | {
|
|
1340
1346
|
source: string;
|
|
1341
1347
|
directory?: string | undefined;
|
|
@@ -1345,6 +1351,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1345
1351
|
directory?: string | undefined;
|
|
1346
1352
|
} | undefined;
|
|
1347
1353
|
} & {
|
|
1354
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
1348
1355
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1349
1356
|
})[];
|
|
1350
1357
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -1352,7 +1359,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1352
1359
|
sdk?: undefined;
|
|
1353
1360
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1354
1361
|
} | {
|
|
1355
|
-
pages: (string | ({
|
|
1362
|
+
pages: (string | (Omit<{
|
|
1356
1363
|
group: string;
|
|
1357
1364
|
icon?: string | {
|
|
1358
1365
|
name: string;
|
|
@@ -1362,14 +1369,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1362
1369
|
expanded?: boolean | undefined;
|
|
1363
1370
|
public?: boolean | undefined;
|
|
1364
1371
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1372
|
+
graphql?: undefined;
|
|
1365
1373
|
tag?: string | undefined;
|
|
1366
1374
|
searchable?: boolean | undefined;
|
|
1367
1375
|
boost?: number | undefined;
|
|
1368
1376
|
hidden?: boolean | undefined;
|
|
1369
|
-
graphql?: undefined;
|
|
1370
1377
|
sdk?: undefined;
|
|
1371
1378
|
root?: string | undefined;
|
|
1372
|
-
} & {
|
|
1379
|
+
}, "sdk"> & {
|
|
1373
1380
|
openapi?: string | string[] | {
|
|
1374
1381
|
source: string;
|
|
1375
1382
|
directory?: string | undefined;
|
|
@@ -1379,6 +1386,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1379
1386
|
directory?: string | undefined;
|
|
1380
1387
|
} | undefined;
|
|
1381
1388
|
} & {
|
|
1389
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
1382
1390
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1383
1391
|
}))[];
|
|
1384
1392
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -1740,7 +1748,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1740
1748
|
sdk?: undefined;
|
|
1741
1749
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1742
1750
|
} | {
|
|
1743
|
-
groups: ({
|
|
1751
|
+
groups: (Omit<{
|
|
1744
1752
|
group: string;
|
|
1745
1753
|
icon?: string | {
|
|
1746
1754
|
name: string;
|
|
@@ -1750,14 +1758,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1750
1758
|
expanded?: boolean | undefined;
|
|
1751
1759
|
public?: boolean | undefined;
|
|
1752
1760
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1761
|
+
graphql?: undefined;
|
|
1753
1762
|
tag?: string | undefined;
|
|
1754
1763
|
searchable?: boolean | undefined;
|
|
1755
1764
|
boost?: number | undefined;
|
|
1756
1765
|
hidden?: boolean | undefined;
|
|
1757
|
-
graphql?: undefined;
|
|
1758
1766
|
sdk?: undefined;
|
|
1759
1767
|
root?: string | undefined;
|
|
1760
|
-
} & {
|
|
1768
|
+
}, "sdk"> & {
|
|
1761
1769
|
openapi?: string | string[] | {
|
|
1762
1770
|
source: string;
|
|
1763
1771
|
directory?: string | undefined;
|
|
@@ -1767,6 +1775,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1767
1775
|
directory?: string | undefined;
|
|
1768
1776
|
} | undefined;
|
|
1769
1777
|
} & {
|
|
1778
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
1770
1779
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1771
1780
|
})[];
|
|
1772
1781
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -1774,7 +1783,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1774
1783
|
sdk?: undefined;
|
|
1775
1784
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
1776
1785
|
} | {
|
|
1777
|
-
pages: (string | ({
|
|
1786
|
+
pages: (string | (Omit<{
|
|
1778
1787
|
group: string;
|
|
1779
1788
|
icon?: string | {
|
|
1780
1789
|
name: string;
|
|
@@ -1784,14 +1793,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1784
1793
|
expanded?: boolean | undefined;
|
|
1785
1794
|
public?: boolean | undefined;
|
|
1786
1795
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1796
|
+
graphql?: undefined;
|
|
1787
1797
|
tag?: string | undefined;
|
|
1788
1798
|
searchable?: boolean | undefined;
|
|
1789
1799
|
boost?: number | undefined;
|
|
1790
1800
|
hidden?: boolean | undefined;
|
|
1791
|
-
graphql?: undefined;
|
|
1792
1801
|
sdk?: undefined;
|
|
1793
1802
|
root?: string | undefined;
|
|
1794
|
-
} & {
|
|
1803
|
+
}, "sdk"> & {
|
|
1795
1804
|
openapi?: string | string[] | {
|
|
1796
1805
|
source: string;
|
|
1797
1806
|
directory?: string | undefined;
|
|
@@ -1801,6 +1810,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
1801
1810
|
directory?: string | undefined;
|
|
1802
1811
|
} | undefined;
|
|
1803
1812
|
} & {
|
|
1813
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
1804
1814
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
1805
1815
|
}))[];
|
|
1806
1816
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -2156,7 +2166,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2156
2166
|
sdk?: undefined;
|
|
2157
2167
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2158
2168
|
} | {
|
|
2159
|
-
groups: ({
|
|
2169
|
+
groups: (Omit<{
|
|
2160
2170
|
group: string;
|
|
2161
2171
|
icon?: string | {
|
|
2162
2172
|
name: string;
|
|
@@ -2166,14 +2176,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2166
2176
|
expanded?: boolean | undefined;
|
|
2167
2177
|
public?: boolean | undefined;
|
|
2168
2178
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2179
|
+
graphql?: undefined;
|
|
2169
2180
|
tag?: string | undefined;
|
|
2170
2181
|
searchable?: boolean | undefined;
|
|
2171
2182
|
boost?: number | undefined;
|
|
2172
2183
|
hidden?: boolean | undefined;
|
|
2173
|
-
graphql?: undefined;
|
|
2174
2184
|
sdk?: undefined;
|
|
2175
2185
|
root?: string | undefined;
|
|
2176
|
-
} & {
|
|
2186
|
+
}, "sdk"> & {
|
|
2177
2187
|
openapi?: string | string[] | {
|
|
2178
2188
|
source: string;
|
|
2179
2189
|
directory?: string | undefined;
|
|
@@ -2183,6 +2193,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2183
2193
|
directory?: string | undefined;
|
|
2184
2194
|
} | undefined;
|
|
2185
2195
|
} & {
|
|
2196
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
2186
2197
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2187
2198
|
})[];
|
|
2188
2199
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -2190,7 +2201,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2190
2201
|
sdk?: undefined;
|
|
2191
2202
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2192
2203
|
} | {
|
|
2193
|
-
pages: (string | ({
|
|
2204
|
+
pages: (string | (Omit<{
|
|
2194
2205
|
group: string;
|
|
2195
2206
|
icon?: string | {
|
|
2196
2207
|
name: string;
|
|
@@ -2200,14 +2211,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2200
2211
|
expanded?: boolean | undefined;
|
|
2201
2212
|
public?: boolean | undefined;
|
|
2202
2213
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2214
|
+
graphql?: undefined;
|
|
2203
2215
|
tag?: string | undefined;
|
|
2204
2216
|
searchable?: boolean | undefined;
|
|
2205
2217
|
boost?: number | undefined;
|
|
2206
2218
|
hidden?: boolean | undefined;
|
|
2207
|
-
graphql?: undefined;
|
|
2208
2219
|
sdk?: undefined;
|
|
2209
2220
|
root?: string | undefined;
|
|
2210
|
-
} & {
|
|
2221
|
+
}, "sdk"> & {
|
|
2211
2222
|
openapi?: string | string[] | {
|
|
2212
2223
|
source: string;
|
|
2213
2224
|
directory?: string | undefined;
|
|
@@ -2217,6 +2228,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2217
2228
|
directory?: string | undefined;
|
|
2218
2229
|
} | undefined;
|
|
2219
2230
|
} & {
|
|
2231
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
2220
2232
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2221
2233
|
}))[];
|
|
2222
2234
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -2572,7 +2584,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2572
2584
|
sdk?: undefined;
|
|
2573
2585
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2574
2586
|
} | {
|
|
2575
|
-
groups: ({
|
|
2587
|
+
groups: (Omit<{
|
|
2576
2588
|
group: string;
|
|
2577
2589
|
icon?: string | {
|
|
2578
2590
|
name: string;
|
|
@@ -2582,14 +2594,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2582
2594
|
expanded?: boolean | undefined;
|
|
2583
2595
|
public?: boolean | undefined;
|
|
2584
2596
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2597
|
+
graphql?: undefined;
|
|
2585
2598
|
tag?: string | undefined;
|
|
2586
2599
|
searchable?: boolean | undefined;
|
|
2587
2600
|
boost?: number | undefined;
|
|
2588
2601
|
hidden?: boolean | undefined;
|
|
2589
|
-
graphql?: undefined;
|
|
2590
2602
|
sdk?: undefined;
|
|
2591
2603
|
root?: string | undefined;
|
|
2592
|
-
} & {
|
|
2604
|
+
}, "sdk"> & {
|
|
2593
2605
|
openapi?: string | string[] | {
|
|
2594
2606
|
source: string;
|
|
2595
2607
|
directory?: string | undefined;
|
|
@@ -2599,6 +2611,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2599
2611
|
directory?: string | undefined;
|
|
2600
2612
|
} | undefined;
|
|
2601
2613
|
} & {
|
|
2614
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
2602
2615
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2603
2616
|
})[];
|
|
2604
2617
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -2606,7 +2619,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2606
2619
|
sdk?: undefined;
|
|
2607
2620
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2608
2621
|
} | {
|
|
2609
|
-
pages: (string | ({
|
|
2622
|
+
pages: (string | (Omit<{
|
|
2610
2623
|
group: string;
|
|
2611
2624
|
icon?: string | {
|
|
2612
2625
|
name: string;
|
|
@@ -2616,14 +2629,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2616
2629
|
expanded?: boolean | undefined;
|
|
2617
2630
|
public?: boolean | undefined;
|
|
2618
2631
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2632
|
+
graphql?: undefined;
|
|
2619
2633
|
tag?: string | undefined;
|
|
2620
2634
|
searchable?: boolean | undefined;
|
|
2621
2635
|
boost?: number | undefined;
|
|
2622
2636
|
hidden?: boolean | undefined;
|
|
2623
|
-
graphql?: undefined;
|
|
2624
2637
|
sdk?: undefined;
|
|
2625
2638
|
root?: string | undefined;
|
|
2626
|
-
} & {
|
|
2639
|
+
}, "sdk"> & {
|
|
2627
2640
|
openapi?: string | string[] | {
|
|
2628
2641
|
source: string;
|
|
2629
2642
|
directory?: string | undefined;
|
|
@@ -2633,6 +2646,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2633
2646
|
directory?: string | undefined;
|
|
2634
2647
|
} | undefined;
|
|
2635
2648
|
} & {
|
|
2649
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
2636
2650
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
2637
2651
|
}))[];
|
|
2638
2652
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -2988,7 +3002,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2988
3002
|
sdk?: undefined;
|
|
2989
3003
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
2990
3004
|
} | {
|
|
2991
|
-
groups: ({
|
|
3005
|
+
groups: (Omit<{
|
|
2992
3006
|
group: string;
|
|
2993
3007
|
icon?: string | {
|
|
2994
3008
|
name: string;
|
|
@@ -2998,14 +3012,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
2998
3012
|
expanded?: boolean | undefined;
|
|
2999
3013
|
public?: boolean | undefined;
|
|
3000
3014
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3015
|
+
graphql?: undefined;
|
|
3001
3016
|
tag?: string | undefined;
|
|
3002
3017
|
searchable?: boolean | undefined;
|
|
3003
3018
|
boost?: number | undefined;
|
|
3004
3019
|
hidden?: boolean | undefined;
|
|
3005
|
-
graphql?: undefined;
|
|
3006
3020
|
sdk?: undefined;
|
|
3007
3021
|
root?: string | undefined;
|
|
3008
|
-
} & {
|
|
3022
|
+
}, "sdk"> & {
|
|
3009
3023
|
openapi?: string | string[] | {
|
|
3010
3024
|
source: string;
|
|
3011
3025
|
directory?: string | undefined;
|
|
@@ -3015,6 +3029,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
3015
3029
|
directory?: string | undefined;
|
|
3016
3030
|
} | undefined;
|
|
3017
3031
|
} & {
|
|
3032
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
3018
3033
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3019
3034
|
})[];
|
|
3020
3035
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -3022,7 +3037,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
3022
3037
|
sdk?: undefined;
|
|
3023
3038
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3024
3039
|
} | {
|
|
3025
|
-
pages: (string | ({
|
|
3040
|
+
pages: (string | (Omit<{
|
|
3026
3041
|
group: string;
|
|
3027
3042
|
icon?: string | {
|
|
3028
3043
|
name: string;
|
|
@@ -3032,14 +3047,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
3032
3047
|
expanded?: boolean | undefined;
|
|
3033
3048
|
public?: boolean | undefined;
|
|
3034
3049
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3050
|
+
graphql?: undefined;
|
|
3035
3051
|
tag?: string | undefined;
|
|
3036
3052
|
searchable?: boolean | undefined;
|
|
3037
3053
|
boost?: number | undefined;
|
|
3038
3054
|
hidden?: boolean | undefined;
|
|
3039
|
-
graphql?: undefined;
|
|
3040
3055
|
sdk?: undefined;
|
|
3041
3056
|
root?: string | undefined;
|
|
3042
|
-
} & {
|
|
3057
|
+
}, "sdk"> & {
|
|
3043
3058
|
openapi?: string | string[] | {
|
|
3044
3059
|
source: string;
|
|
3045
3060
|
directory?: string | undefined;
|
|
@@ -3049,6 +3064,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
3049
3064
|
directory?: string | undefined;
|
|
3050
3065
|
} | undefined;
|
|
3051
3066
|
} & {
|
|
3067
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
3052
3068
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3053
3069
|
}))[];
|
|
3054
3070
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -3404,7 +3420,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
3404
3420
|
sdk?: undefined;
|
|
3405
3421
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3406
3422
|
} | {
|
|
3407
|
-
groups: ({
|
|
3423
|
+
groups: (Omit<{
|
|
3408
3424
|
group: string;
|
|
3409
3425
|
icon?: string | {
|
|
3410
3426
|
name: string;
|
|
@@ -3414,14 +3430,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
3414
3430
|
expanded?: boolean | undefined;
|
|
3415
3431
|
public?: boolean | undefined;
|
|
3416
3432
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3433
|
+
graphql?: undefined;
|
|
3417
3434
|
tag?: string | undefined;
|
|
3418
3435
|
searchable?: boolean | undefined;
|
|
3419
3436
|
boost?: number | undefined;
|
|
3420
3437
|
hidden?: boolean | undefined;
|
|
3421
|
-
graphql?: undefined;
|
|
3422
3438
|
sdk?: undefined;
|
|
3423
3439
|
root?: string | undefined;
|
|
3424
|
-
} & {
|
|
3440
|
+
}, "sdk"> & {
|
|
3425
3441
|
openapi?: string | string[] | {
|
|
3426
3442
|
source: string;
|
|
3427
3443
|
directory?: string | undefined;
|
|
@@ -3431,6 +3447,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
3431
3447
|
directory?: string | undefined;
|
|
3432
3448
|
} | undefined;
|
|
3433
3449
|
} & {
|
|
3450
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
3434
3451
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3435
3452
|
})[];
|
|
3436
3453
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
@@ -3438,7 +3455,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
3438
3455
|
sdk?: undefined;
|
|
3439
3456
|
global?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").GlobalNavigation | undefined;
|
|
3440
3457
|
} | {
|
|
3441
|
-
pages: (string | ({
|
|
3458
|
+
pages: (string | (Omit<{
|
|
3442
3459
|
group: string;
|
|
3443
3460
|
icon?: string | {
|
|
3444
3461
|
name: string;
|
|
@@ -3448,14 +3465,14 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
3448
3465
|
expanded?: boolean | undefined;
|
|
3449
3466
|
public?: boolean | undefined;
|
|
3450
3467
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3468
|
+
graphql?: undefined;
|
|
3451
3469
|
tag?: string | undefined;
|
|
3452
3470
|
searchable?: boolean | undefined;
|
|
3453
3471
|
boost?: number | undefined;
|
|
3454
3472
|
hidden?: boolean | undefined;
|
|
3455
|
-
graphql?: undefined;
|
|
3456
3473
|
sdk?: undefined;
|
|
3457
3474
|
root?: string | undefined;
|
|
3458
|
-
} & {
|
|
3475
|
+
}, "sdk"> & {
|
|
3459
3476
|
openapi?: string | string[] | {
|
|
3460
3477
|
source: string;
|
|
3461
3478
|
directory?: string | undefined;
|
|
@@ -3465,6 +3482,7 @@ export declare const DocsConfigUpdater: ConfigUpdater<{
|
|
|
3465
3482
|
directory?: string | undefined;
|
|
3466
3483
|
} | undefined;
|
|
3467
3484
|
} & {
|
|
3485
|
+
sdk?: import("zod").TypeOf<typeof import("@mintlify/validation").sdkSchema>;
|
|
3468
3486
|
pages?: import("@mintlify/validation/dist/mint-config/schemas/v2/properties/navigation/divisionNav.js").PageOrGroupNavigation<"default">[];
|
|
3469
3487
|
}))[];
|
|
3470
3488
|
directory?: "none" | "card" | "accordion" | undefined;
|