@mintlify/validation 0.1.753 → 0.1.755
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/mint-config/schemas/v1/analytics.d.ts +5 -0
- package/dist/mint-config/schemas/v1/analytics.js +1 -0
- package/dist/mint-config/schemas/v1/config.d.ts +7 -0
- package/dist/mint-config/schemas/v2/index.d.ts +190 -120
- package/dist/mint-config/schemas/v2/properties/integrations.d.ts +5 -0
- package/dist/mint-config/schemas/v2/properties/integrations.js +1 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +6 -6
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +20 -16
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +6 -4
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +4 -4
- package/dist/mint-config/schemas/v2/properties/reusable/page.d.ts +3 -0
- package/dist/mint-config/schemas/v2/properties/reusable/page.js +1 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +19 -12
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +19 -12
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +19 -12
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +19 -12
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +19 -12
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +19 -12
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +19 -12
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +13 -8
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +19 -12
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +19 -12
- package/dist/mint-config/validateConfig.d.ts +56 -36
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +3 -3
|
@@ -208,6 +208,7 @@ export declare function validateMintConfig(value: unknown): z.SafeParseError<{
|
|
|
208
208
|
} | undefined;
|
|
209
209
|
mixpanel?: {
|
|
210
210
|
projectToken: string;
|
|
211
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
211
212
|
} | undefined;
|
|
212
213
|
pirsch?: {
|
|
213
214
|
id: string;
|
|
@@ -458,6 +459,7 @@ export declare function validateMintConfig(value: unknown): z.SafeParseError<{
|
|
|
458
459
|
} | undefined;
|
|
459
460
|
mixpanel?: {
|
|
460
461
|
projectToken: string;
|
|
462
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
461
463
|
} | undefined;
|
|
462
464
|
pirsch?: {
|
|
463
465
|
id: string;
|
|
@@ -543,9 +545,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
543
545
|
public?: boolean | undefined;
|
|
544
546
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
545
547
|
tag?: string | undefined;
|
|
548
|
+
searchable?: boolean | undefined;
|
|
546
549
|
boost?: number | undefined;
|
|
547
550
|
hidden?: boolean | undefined;
|
|
548
|
-
searchable?: boolean | undefined;
|
|
549
551
|
root?: string | undefined;
|
|
550
552
|
} & {
|
|
551
553
|
openapi?: string | string[] | {
|
|
@@ -573,9 +575,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
573
575
|
public?: boolean | undefined;
|
|
574
576
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
575
577
|
tag?: string | undefined;
|
|
578
|
+
searchable?: boolean | undefined;
|
|
576
579
|
boost?: number | undefined;
|
|
577
580
|
hidden?: boolean | undefined;
|
|
578
|
-
searchable?: boolean | undefined;
|
|
579
581
|
root?: string | undefined;
|
|
580
582
|
} & {
|
|
581
583
|
openapi?: string | string[] | {
|
|
@@ -701,6 +703,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
701
703
|
} | undefined;
|
|
702
704
|
mixpanel?: {
|
|
703
705
|
projectToken: string;
|
|
706
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
704
707
|
} | undefined;
|
|
705
708
|
pirsch?: {
|
|
706
709
|
id: string;
|
|
@@ -925,9 +928,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
925
928
|
public?: boolean | undefined;
|
|
926
929
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
927
930
|
tag?: string | undefined;
|
|
931
|
+
searchable?: boolean | undefined;
|
|
928
932
|
boost?: number | undefined;
|
|
929
933
|
hidden?: boolean | undefined;
|
|
930
|
-
searchable?: boolean | undefined;
|
|
931
934
|
root?: string | undefined;
|
|
932
935
|
} & {
|
|
933
936
|
openapi?: string | string[] | {
|
|
@@ -955,9 +958,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
955
958
|
public?: boolean | undefined;
|
|
956
959
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
957
960
|
tag?: string | undefined;
|
|
961
|
+
searchable?: boolean | undefined;
|
|
958
962
|
boost?: number | undefined;
|
|
959
963
|
hidden?: boolean | undefined;
|
|
960
|
-
searchable?: boolean | undefined;
|
|
961
964
|
root?: string | undefined;
|
|
962
965
|
} & {
|
|
963
966
|
openapi?: string | string[] | {
|
|
@@ -1083,6 +1086,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1083
1086
|
} | undefined;
|
|
1084
1087
|
mixpanel?: {
|
|
1085
1088
|
projectToken: string;
|
|
1089
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1086
1090
|
} | undefined;
|
|
1087
1091
|
pirsch?: {
|
|
1088
1092
|
id: string;
|
|
@@ -1307,9 +1311,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1307
1311
|
public?: boolean | undefined;
|
|
1308
1312
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1309
1313
|
tag?: string | undefined;
|
|
1314
|
+
searchable?: boolean | undefined;
|
|
1310
1315
|
boost?: number | undefined;
|
|
1311
1316
|
hidden?: boolean | undefined;
|
|
1312
|
-
searchable?: boolean | undefined;
|
|
1313
1317
|
root?: string | undefined;
|
|
1314
1318
|
} & {
|
|
1315
1319
|
openapi?: string | string[] | {
|
|
@@ -1337,9 +1341,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1337
1341
|
public?: boolean | undefined;
|
|
1338
1342
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1339
1343
|
tag?: string | undefined;
|
|
1344
|
+
searchable?: boolean | undefined;
|
|
1340
1345
|
boost?: number | undefined;
|
|
1341
1346
|
hidden?: boolean | undefined;
|
|
1342
|
-
searchable?: boolean | undefined;
|
|
1343
1347
|
root?: string | undefined;
|
|
1344
1348
|
} & {
|
|
1345
1349
|
openapi?: string | string[] | {
|
|
@@ -1465,6 +1469,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1465
1469
|
} | undefined;
|
|
1466
1470
|
mixpanel?: {
|
|
1467
1471
|
projectToken: string;
|
|
1472
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1468
1473
|
} | undefined;
|
|
1469
1474
|
pirsch?: {
|
|
1470
1475
|
id: string;
|
|
@@ -1689,9 +1694,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1689
1694
|
public?: boolean | undefined;
|
|
1690
1695
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1691
1696
|
tag?: string | undefined;
|
|
1697
|
+
searchable?: boolean | undefined;
|
|
1692
1698
|
boost?: number | undefined;
|
|
1693
1699
|
hidden?: boolean | undefined;
|
|
1694
|
-
searchable?: boolean | undefined;
|
|
1695
1700
|
root?: string | undefined;
|
|
1696
1701
|
} & {
|
|
1697
1702
|
openapi?: string | string[] | {
|
|
@@ -1719,9 +1724,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1719
1724
|
public?: boolean | undefined;
|
|
1720
1725
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
1721
1726
|
tag?: string | undefined;
|
|
1727
|
+
searchable?: boolean | undefined;
|
|
1722
1728
|
boost?: number | undefined;
|
|
1723
1729
|
hidden?: boolean | undefined;
|
|
1724
|
-
searchable?: boolean | undefined;
|
|
1725
1730
|
root?: string | undefined;
|
|
1726
1731
|
} & {
|
|
1727
1732
|
openapi?: string | string[] | {
|
|
@@ -1847,6 +1852,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
1847
1852
|
} | undefined;
|
|
1848
1853
|
mixpanel?: {
|
|
1849
1854
|
projectToken: string;
|
|
1855
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
1850
1856
|
} | undefined;
|
|
1851
1857
|
pirsch?: {
|
|
1852
1858
|
id: string;
|
|
@@ -2071,9 +2077,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2071
2077
|
public?: boolean | undefined;
|
|
2072
2078
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2073
2079
|
tag?: string | undefined;
|
|
2080
|
+
searchable?: boolean | undefined;
|
|
2074
2081
|
boost?: number | undefined;
|
|
2075
2082
|
hidden?: boolean | undefined;
|
|
2076
|
-
searchable?: boolean | undefined;
|
|
2077
2083
|
root?: string | undefined;
|
|
2078
2084
|
} & {
|
|
2079
2085
|
openapi?: string | string[] | {
|
|
@@ -2101,9 +2107,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2101
2107
|
public?: boolean | undefined;
|
|
2102
2108
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2103
2109
|
tag?: string | undefined;
|
|
2110
|
+
searchable?: boolean | undefined;
|
|
2104
2111
|
boost?: number | undefined;
|
|
2105
2112
|
hidden?: boolean | undefined;
|
|
2106
|
-
searchable?: boolean | undefined;
|
|
2107
2113
|
root?: string | undefined;
|
|
2108
2114
|
} & {
|
|
2109
2115
|
openapi?: string | string[] | {
|
|
@@ -2229,6 +2235,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2229
2235
|
} | undefined;
|
|
2230
2236
|
mixpanel?: {
|
|
2231
2237
|
projectToken: string;
|
|
2238
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
2232
2239
|
} | undefined;
|
|
2233
2240
|
pirsch?: {
|
|
2234
2241
|
id: string;
|
|
@@ -2453,9 +2460,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2453
2460
|
public?: boolean | undefined;
|
|
2454
2461
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2455
2462
|
tag?: string | undefined;
|
|
2463
|
+
searchable?: boolean | undefined;
|
|
2456
2464
|
boost?: number | undefined;
|
|
2457
2465
|
hidden?: boolean | undefined;
|
|
2458
|
-
searchable?: boolean | undefined;
|
|
2459
2466
|
root?: string | undefined;
|
|
2460
2467
|
} & {
|
|
2461
2468
|
openapi?: string | string[] | {
|
|
@@ -2483,9 +2490,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2483
2490
|
public?: boolean | undefined;
|
|
2484
2491
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2485
2492
|
tag?: string | undefined;
|
|
2493
|
+
searchable?: boolean | undefined;
|
|
2486
2494
|
boost?: number | undefined;
|
|
2487
2495
|
hidden?: boolean | undefined;
|
|
2488
|
-
searchable?: boolean | undefined;
|
|
2489
2496
|
root?: string | undefined;
|
|
2490
2497
|
} & {
|
|
2491
2498
|
openapi?: string | string[] | {
|
|
@@ -2611,6 +2618,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2611
2618
|
} | undefined;
|
|
2612
2619
|
mixpanel?: {
|
|
2613
2620
|
projectToken: string;
|
|
2621
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
2614
2622
|
} | undefined;
|
|
2615
2623
|
pirsch?: {
|
|
2616
2624
|
id: string;
|
|
@@ -2835,9 +2843,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2835
2843
|
public?: boolean | undefined;
|
|
2836
2844
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2837
2845
|
tag?: string | undefined;
|
|
2846
|
+
searchable?: boolean | undefined;
|
|
2838
2847
|
boost?: number | undefined;
|
|
2839
2848
|
hidden?: boolean | undefined;
|
|
2840
|
-
searchable?: boolean | undefined;
|
|
2841
2849
|
root?: string | undefined;
|
|
2842
2850
|
} & {
|
|
2843
2851
|
openapi?: string | string[] | {
|
|
@@ -2865,9 +2873,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2865
2873
|
public?: boolean | undefined;
|
|
2866
2874
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
2867
2875
|
tag?: string | undefined;
|
|
2876
|
+
searchable?: boolean | undefined;
|
|
2868
2877
|
boost?: number | undefined;
|
|
2869
2878
|
hidden?: boolean | undefined;
|
|
2870
|
-
searchable?: boolean | undefined;
|
|
2871
2879
|
root?: string | undefined;
|
|
2872
2880
|
} & {
|
|
2873
2881
|
openapi?: string | string[] | {
|
|
@@ -2993,6 +3001,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
2993
3001
|
} | undefined;
|
|
2994
3002
|
mixpanel?: {
|
|
2995
3003
|
projectToken: string;
|
|
3004
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
2996
3005
|
} | undefined;
|
|
2997
3006
|
pirsch?: {
|
|
2998
3007
|
id: string;
|
|
@@ -3217,9 +3226,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3217
3226
|
public?: boolean | undefined;
|
|
3218
3227
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3219
3228
|
tag?: string | undefined;
|
|
3229
|
+
searchable?: boolean | undefined;
|
|
3220
3230
|
boost?: number | undefined;
|
|
3221
3231
|
hidden?: boolean | undefined;
|
|
3222
|
-
searchable?: boolean | undefined;
|
|
3223
3232
|
root?: string | undefined;
|
|
3224
3233
|
} & {
|
|
3225
3234
|
openapi?: string | string[] | {
|
|
@@ -3247,9 +3256,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3247
3256
|
public?: boolean | undefined;
|
|
3248
3257
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3249
3258
|
tag?: string | undefined;
|
|
3259
|
+
searchable?: boolean | undefined;
|
|
3250
3260
|
boost?: number | undefined;
|
|
3251
3261
|
hidden?: boolean | undefined;
|
|
3252
|
-
searchable?: boolean | undefined;
|
|
3253
3262
|
root?: string | undefined;
|
|
3254
3263
|
} & {
|
|
3255
3264
|
openapi?: string | string[] | {
|
|
@@ -3375,6 +3384,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3375
3384
|
} | undefined;
|
|
3376
3385
|
mixpanel?: {
|
|
3377
3386
|
projectToken: string;
|
|
3387
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
3378
3388
|
} | undefined;
|
|
3379
3389
|
pirsch?: {
|
|
3380
3390
|
id: string;
|
|
@@ -3599,9 +3609,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3599
3609
|
public?: boolean | undefined;
|
|
3600
3610
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3601
3611
|
tag?: string | undefined;
|
|
3612
|
+
searchable?: boolean | undefined;
|
|
3602
3613
|
boost?: number | undefined;
|
|
3603
3614
|
hidden?: boolean | undefined;
|
|
3604
|
-
searchable?: boolean | undefined;
|
|
3605
3615
|
root?: string | undefined;
|
|
3606
3616
|
} & {
|
|
3607
3617
|
openapi?: string | string[] | {
|
|
@@ -3629,9 +3639,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3629
3639
|
public?: boolean | undefined;
|
|
3630
3640
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3631
3641
|
tag?: string | undefined;
|
|
3642
|
+
searchable?: boolean | undefined;
|
|
3632
3643
|
boost?: number | undefined;
|
|
3633
3644
|
hidden?: boolean | undefined;
|
|
3634
|
-
searchable?: boolean | undefined;
|
|
3635
3645
|
root?: string | undefined;
|
|
3636
3646
|
} & {
|
|
3637
3647
|
openapi?: string | string[] | {
|
|
@@ -3757,6 +3767,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3757
3767
|
} | undefined;
|
|
3758
3768
|
mixpanel?: {
|
|
3759
3769
|
projectToken: string;
|
|
3770
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
3760
3771
|
} | undefined;
|
|
3761
3772
|
pirsch?: {
|
|
3762
3773
|
id: string;
|
|
@@ -3985,9 +3996,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
3985
3996
|
public?: boolean | undefined;
|
|
3986
3997
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
3987
3998
|
tag?: string | undefined;
|
|
3999
|
+
searchable?: boolean | undefined;
|
|
3988
4000
|
boost?: number | undefined;
|
|
3989
4001
|
hidden?: boolean | undefined;
|
|
3990
|
-
searchable?: boolean | undefined;
|
|
3991
4002
|
root?: string | undefined;
|
|
3992
4003
|
} & {
|
|
3993
4004
|
openapi?: string | string[] | {
|
|
@@ -4015,9 +4026,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4015
4026
|
public?: boolean | undefined;
|
|
4016
4027
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4017
4028
|
tag?: string | undefined;
|
|
4029
|
+
searchable?: boolean | undefined;
|
|
4018
4030
|
boost?: number | undefined;
|
|
4019
4031
|
hidden?: boolean | undefined;
|
|
4020
|
-
searchable?: boolean | undefined;
|
|
4021
4032
|
root?: string | undefined;
|
|
4022
4033
|
} & {
|
|
4023
4034
|
openapi?: string | string[] | {
|
|
@@ -4142,6 +4153,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4142
4153
|
} | undefined;
|
|
4143
4154
|
mixpanel?: {
|
|
4144
4155
|
projectToken: string;
|
|
4156
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
4145
4157
|
} | undefined;
|
|
4146
4158
|
pirsch?: {
|
|
4147
4159
|
id: string;
|
|
@@ -4367,9 +4379,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4367
4379
|
public?: boolean | undefined;
|
|
4368
4380
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4369
4381
|
tag?: string | undefined;
|
|
4382
|
+
searchable?: boolean | undefined;
|
|
4370
4383
|
boost?: number | undefined;
|
|
4371
4384
|
hidden?: boolean | undefined;
|
|
4372
|
-
searchable?: boolean | undefined;
|
|
4373
4385
|
root?: string | undefined;
|
|
4374
4386
|
} & {
|
|
4375
4387
|
openapi?: string | string[] | {
|
|
@@ -4397,9 +4409,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4397
4409
|
public?: boolean | undefined;
|
|
4398
4410
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4399
4411
|
tag?: string | undefined;
|
|
4412
|
+
searchable?: boolean | undefined;
|
|
4400
4413
|
boost?: number | undefined;
|
|
4401
4414
|
hidden?: boolean | undefined;
|
|
4402
|
-
searchable?: boolean | undefined;
|
|
4403
4415
|
root?: string | undefined;
|
|
4404
4416
|
} & {
|
|
4405
4417
|
openapi?: string | string[] | {
|
|
@@ -4524,6 +4536,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4524
4536
|
} | undefined;
|
|
4525
4537
|
mixpanel?: {
|
|
4526
4538
|
projectToken: string;
|
|
4539
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
4527
4540
|
} | undefined;
|
|
4528
4541
|
pirsch?: {
|
|
4529
4542
|
id: string;
|
|
@@ -4749,9 +4762,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4749
4762
|
public?: boolean | undefined;
|
|
4750
4763
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4751
4764
|
tag?: string | undefined;
|
|
4765
|
+
searchable?: boolean | undefined;
|
|
4752
4766
|
boost?: number | undefined;
|
|
4753
4767
|
hidden?: boolean | undefined;
|
|
4754
|
-
searchable?: boolean | undefined;
|
|
4755
4768
|
root?: string | undefined;
|
|
4756
4769
|
} & {
|
|
4757
4770
|
openapi?: string | string[] | {
|
|
@@ -4779,9 +4792,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4779
4792
|
public?: boolean | undefined;
|
|
4780
4793
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
4781
4794
|
tag?: string | undefined;
|
|
4795
|
+
searchable?: boolean | undefined;
|
|
4782
4796
|
boost?: number | undefined;
|
|
4783
4797
|
hidden?: boolean | undefined;
|
|
4784
|
-
searchable?: boolean | undefined;
|
|
4785
4798
|
root?: string | undefined;
|
|
4786
4799
|
} & {
|
|
4787
4800
|
openapi?: string | string[] | {
|
|
@@ -4906,6 +4919,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
4906
4919
|
} | undefined;
|
|
4907
4920
|
mixpanel?: {
|
|
4908
4921
|
projectToken: string;
|
|
4922
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
4909
4923
|
} | undefined;
|
|
4910
4924
|
pirsch?: {
|
|
4911
4925
|
id: string;
|
|
@@ -5131,9 +5145,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5131
5145
|
public?: boolean | undefined;
|
|
5132
5146
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5133
5147
|
tag?: string | undefined;
|
|
5148
|
+
searchable?: boolean | undefined;
|
|
5134
5149
|
boost?: number | undefined;
|
|
5135
5150
|
hidden?: boolean | undefined;
|
|
5136
|
-
searchable?: boolean | undefined;
|
|
5137
5151
|
root?: string | undefined;
|
|
5138
5152
|
} & {
|
|
5139
5153
|
openapi?: string | string[] | {
|
|
@@ -5161,9 +5175,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5161
5175
|
public?: boolean | undefined;
|
|
5162
5176
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5163
5177
|
tag?: string | undefined;
|
|
5178
|
+
searchable?: boolean | undefined;
|
|
5164
5179
|
boost?: number | undefined;
|
|
5165
5180
|
hidden?: boolean | undefined;
|
|
5166
|
-
searchable?: boolean | undefined;
|
|
5167
5181
|
root?: string | undefined;
|
|
5168
5182
|
} & {
|
|
5169
5183
|
openapi?: string | string[] | {
|
|
@@ -5288,6 +5302,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5288
5302
|
} | undefined;
|
|
5289
5303
|
mixpanel?: {
|
|
5290
5304
|
projectToken: string;
|
|
5305
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
5291
5306
|
} | undefined;
|
|
5292
5307
|
pirsch?: {
|
|
5293
5308
|
id: string;
|
|
@@ -5513,9 +5528,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5513
5528
|
public?: boolean | undefined;
|
|
5514
5529
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5515
5530
|
tag?: string | undefined;
|
|
5531
|
+
searchable?: boolean | undefined;
|
|
5516
5532
|
boost?: number | undefined;
|
|
5517
5533
|
hidden?: boolean | undefined;
|
|
5518
|
-
searchable?: boolean | undefined;
|
|
5519
5534
|
root?: string | undefined;
|
|
5520
5535
|
} & {
|
|
5521
5536
|
openapi?: string | string[] | {
|
|
@@ -5543,9 +5558,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5543
5558
|
public?: boolean | undefined;
|
|
5544
5559
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5545
5560
|
tag?: string | undefined;
|
|
5561
|
+
searchable?: boolean | undefined;
|
|
5546
5562
|
boost?: number | undefined;
|
|
5547
5563
|
hidden?: boolean | undefined;
|
|
5548
|
-
searchable?: boolean | undefined;
|
|
5549
5564
|
root?: string | undefined;
|
|
5550
5565
|
} & {
|
|
5551
5566
|
openapi?: string | string[] | {
|
|
@@ -5670,6 +5685,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5670
5685
|
} | undefined;
|
|
5671
5686
|
mixpanel?: {
|
|
5672
5687
|
projectToken: string;
|
|
5688
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
5673
5689
|
} | undefined;
|
|
5674
5690
|
pirsch?: {
|
|
5675
5691
|
id: string;
|
|
@@ -5895,9 +5911,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5895
5911
|
public?: boolean | undefined;
|
|
5896
5912
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5897
5913
|
tag?: string | undefined;
|
|
5914
|
+
searchable?: boolean | undefined;
|
|
5898
5915
|
boost?: number | undefined;
|
|
5899
5916
|
hidden?: boolean | undefined;
|
|
5900
|
-
searchable?: boolean | undefined;
|
|
5901
5917
|
root?: string | undefined;
|
|
5902
5918
|
} & {
|
|
5903
5919
|
openapi?: string | string[] | {
|
|
@@ -5925,9 +5941,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
5925
5941
|
public?: boolean | undefined;
|
|
5926
5942
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
5927
5943
|
tag?: string | undefined;
|
|
5944
|
+
searchable?: boolean | undefined;
|
|
5928
5945
|
boost?: number | undefined;
|
|
5929
5946
|
hidden?: boolean | undefined;
|
|
5930
|
-
searchable?: boolean | undefined;
|
|
5931
5947
|
root?: string | undefined;
|
|
5932
5948
|
} & {
|
|
5933
5949
|
openapi?: string | string[] | {
|
|
@@ -6052,6 +6068,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6052
6068
|
} | undefined;
|
|
6053
6069
|
mixpanel?: {
|
|
6054
6070
|
projectToken: string;
|
|
6071
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
6055
6072
|
} | undefined;
|
|
6056
6073
|
pirsch?: {
|
|
6057
6074
|
id: string;
|
|
@@ -6277,9 +6294,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6277
6294
|
public?: boolean | undefined;
|
|
6278
6295
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6279
6296
|
tag?: string | undefined;
|
|
6297
|
+
searchable?: boolean | undefined;
|
|
6280
6298
|
boost?: number | undefined;
|
|
6281
6299
|
hidden?: boolean | undefined;
|
|
6282
|
-
searchable?: boolean | undefined;
|
|
6283
6300
|
root?: string | undefined;
|
|
6284
6301
|
} & {
|
|
6285
6302
|
openapi?: string | string[] | {
|
|
@@ -6307,9 +6324,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6307
6324
|
public?: boolean | undefined;
|
|
6308
6325
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6309
6326
|
tag?: string | undefined;
|
|
6327
|
+
searchable?: boolean | undefined;
|
|
6310
6328
|
boost?: number | undefined;
|
|
6311
6329
|
hidden?: boolean | undefined;
|
|
6312
|
-
searchable?: boolean | undefined;
|
|
6313
6330
|
root?: string | undefined;
|
|
6314
6331
|
} & {
|
|
6315
6332
|
openapi?: string | string[] | {
|
|
@@ -6434,6 +6451,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6434
6451
|
} | undefined;
|
|
6435
6452
|
mixpanel?: {
|
|
6436
6453
|
projectToken: string;
|
|
6454
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
6437
6455
|
} | undefined;
|
|
6438
6456
|
pirsch?: {
|
|
6439
6457
|
id: string;
|
|
@@ -6659,9 +6677,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6659
6677
|
public?: boolean | undefined;
|
|
6660
6678
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6661
6679
|
tag?: string | undefined;
|
|
6680
|
+
searchable?: boolean | undefined;
|
|
6662
6681
|
boost?: number | undefined;
|
|
6663
6682
|
hidden?: boolean | undefined;
|
|
6664
|
-
searchable?: boolean | undefined;
|
|
6665
6683
|
root?: string | undefined;
|
|
6666
6684
|
} & {
|
|
6667
6685
|
openapi?: string | string[] | {
|
|
@@ -6689,9 +6707,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6689
6707
|
public?: boolean | undefined;
|
|
6690
6708
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
6691
6709
|
tag?: string | undefined;
|
|
6710
|
+
searchable?: boolean | undefined;
|
|
6692
6711
|
boost?: number | undefined;
|
|
6693
6712
|
hidden?: boolean | undefined;
|
|
6694
|
-
searchable?: boolean | undefined;
|
|
6695
6713
|
root?: string | undefined;
|
|
6696
6714
|
} & {
|
|
6697
6715
|
openapi?: string | string[] | {
|
|
@@ -6816,6 +6834,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
6816
6834
|
} | undefined;
|
|
6817
6835
|
mixpanel?: {
|
|
6818
6836
|
projectToken: string;
|
|
6837
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
6819
6838
|
} | undefined;
|
|
6820
6839
|
pirsch?: {
|
|
6821
6840
|
id: string;
|
|
@@ -7041,9 +7060,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7041
7060
|
public?: boolean | undefined;
|
|
7042
7061
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7043
7062
|
tag?: string | undefined;
|
|
7063
|
+
searchable?: boolean | undefined;
|
|
7044
7064
|
boost?: number | undefined;
|
|
7045
7065
|
hidden?: boolean | undefined;
|
|
7046
|
-
searchable?: boolean | undefined;
|
|
7047
7066
|
root?: string | undefined;
|
|
7048
7067
|
} & {
|
|
7049
7068
|
openapi?: string | string[] | {
|
|
@@ -7071,9 +7090,9 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7071
7090
|
public?: boolean | undefined;
|
|
7072
7091
|
directory?: "none" | "card" | "accordion" | undefined;
|
|
7073
7092
|
tag?: string | undefined;
|
|
7093
|
+
searchable?: boolean | undefined;
|
|
7074
7094
|
boost?: number | undefined;
|
|
7075
7095
|
hidden?: boolean | undefined;
|
|
7076
|
-
searchable?: boolean | undefined;
|
|
7077
7096
|
root?: string | undefined;
|
|
7078
7097
|
} & {
|
|
7079
7098
|
openapi?: string | string[] | {
|
|
@@ -7198,6 +7217,7 @@ export declare function validateDocsConfig(value: unknown): z.SafeParseError<{
|
|
|
7198
7217
|
} | undefined;
|
|
7199
7218
|
mixpanel?: {
|
|
7200
7219
|
projectToken: string;
|
|
7220
|
+
region?: "us" | "eu" | "in" | undefined;
|
|
7201
7221
|
} | undefined;
|
|
7202
7222
|
pirsch?: {
|
|
7203
7223
|
id: string;
|