@code-pushup/models 0.60.2 → 0.62.0
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/package.json +1 -1
- package/src/index.d.ts +1 -1
- package/src/index.js +1 -1
- package/src/index.js.map +1 -1
- package/src/lib/audit.d.ts +5 -5
- package/src/lib/category-config.d.ts +5 -5
- package/src/lib/core-config.d.ts +93 -93
- package/src/lib/group.d.ts +7 -7
- package/src/lib/implementation/schemas.d.ts +3 -3
- package/src/lib/implementation/schemas.js +13 -2
- package/src/lib/implementation/schemas.js.map +1 -1
- package/src/lib/plugin-config.d.ts +31 -31
- package/src/lib/report.d.ts +34 -34
- package/src/lib/reports-diff.d.ts +116 -116
- package/src/lib/runner-config.d.ts +1 -11
- package/src/lib/runner-config.js +0 -5
- package/src/lib/runner-config.js.map +1 -1
package/src/lib/core-config.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
6
6
|
}, {
|
|
7
7
|
title: z.ZodString;
|
|
8
8
|
description: z.ZodOptional<z.ZodString>;
|
|
9
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
9
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
10
10
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
11
11
|
}>, {
|
|
12
12
|
slug: z.ZodString;
|
|
@@ -768,7 +768,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
768
768
|
} | undefined;
|
|
769
769
|
}[]>) | undefined;
|
|
770
770
|
configFile?: string | undefined;
|
|
771
|
-
}>, z.ZodFunction<z.ZodTuple<[
|
|
771
|
+
}>, z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodUnion<[z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
772
772
|
slug: z.ZodString;
|
|
773
773
|
displayValue: z.ZodOptional<z.ZodString>;
|
|
774
774
|
value: z.ZodNumber;
|
|
@@ -1380,7 +1380,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1380
1380
|
}, {
|
|
1381
1381
|
title: z.ZodString;
|
|
1382
1382
|
description: z.ZodOptional<z.ZodString>;
|
|
1383
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1383
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1384
1384
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
1385
1385
|
}>, "strip", z.ZodTypeAny, {
|
|
1386
1386
|
slug: string;
|
|
@@ -1392,7 +1392,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1392
1392
|
slug: string;
|
|
1393
1393
|
title: string;
|
|
1394
1394
|
description?: string | undefined;
|
|
1395
|
-
docsUrl?:
|
|
1395
|
+
docsUrl?: unknown;
|
|
1396
1396
|
isSkipped?: boolean | undefined;
|
|
1397
1397
|
}>, "many">, {
|
|
1398
1398
|
slug: string;
|
|
@@ -1404,7 +1404,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1404
1404
|
slug: string;
|
|
1405
1405
|
title: string;
|
|
1406
1406
|
description?: string | undefined;
|
|
1407
|
-
docsUrl?:
|
|
1407
|
+
docsUrl?: unknown;
|
|
1408
1408
|
isSkipped?: boolean | undefined;
|
|
1409
1409
|
}[]>;
|
|
1410
1410
|
groups: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1434,7 +1434,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1434
1434
|
}, {
|
|
1435
1435
|
title: z.ZodString;
|
|
1436
1436
|
description: z.ZodOptional<z.ZodString>;
|
|
1437
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1437
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1438
1438
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
1439
1439
|
}>, "strip", z.ZodTypeAny, {
|
|
1440
1440
|
slug: string;
|
|
@@ -1454,7 +1454,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1454
1454
|
}[];
|
|
1455
1455
|
title: string;
|
|
1456
1456
|
description?: string | undefined;
|
|
1457
|
-
docsUrl?:
|
|
1457
|
+
docsUrl?: unknown;
|
|
1458
1458
|
isSkipped?: boolean | undefined;
|
|
1459
1459
|
}>, "many">>, {
|
|
1460
1460
|
slug: string;
|
|
@@ -1474,7 +1474,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1474
1474
|
}[];
|
|
1475
1475
|
title: string;
|
|
1476
1476
|
description?: string | undefined;
|
|
1477
|
-
docsUrl?:
|
|
1477
|
+
docsUrl?: unknown;
|
|
1478
1478
|
isSkipped?: boolean | undefined;
|
|
1479
1479
|
}[] | undefined>;
|
|
1480
1480
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -1553,7 +1553,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1553
1553
|
} | undefined;
|
|
1554
1554
|
}[]>) | undefined;
|
|
1555
1555
|
configFile?: string | undefined;
|
|
1556
|
-
} | ((
|
|
1556
|
+
} | ((...args: unknown[]) => {
|
|
1557
1557
|
slug: string;
|
|
1558
1558
|
value: number;
|
|
1559
1559
|
score: number;
|
|
@@ -1719,7 +1719,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1719
1719
|
} | undefined;
|
|
1720
1720
|
}[]>) | undefined;
|
|
1721
1721
|
configFile?: string | undefined;
|
|
1722
|
-
} | ((
|
|
1722
|
+
} | ((...args: unknown[]) => {
|
|
1723
1723
|
slug: string;
|
|
1724
1724
|
value: number;
|
|
1725
1725
|
score: number;
|
|
@@ -1790,11 +1790,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1790
1790
|
slug: string;
|
|
1791
1791
|
title: string;
|
|
1792
1792
|
description?: string | undefined;
|
|
1793
|
-
docsUrl?:
|
|
1793
|
+
docsUrl?: unknown;
|
|
1794
1794
|
isSkipped?: boolean | undefined;
|
|
1795
1795
|
}[];
|
|
1796
1796
|
description?: string | undefined;
|
|
1797
|
-
docsUrl?:
|
|
1797
|
+
docsUrl?: unknown;
|
|
1798
1798
|
isSkipped?: boolean | undefined;
|
|
1799
1799
|
packageName?: string | undefined;
|
|
1800
1800
|
version?: string | undefined;
|
|
@@ -1806,7 +1806,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1806
1806
|
}[];
|
|
1807
1807
|
title: string;
|
|
1808
1808
|
description?: string | undefined;
|
|
1809
|
-
docsUrl?:
|
|
1809
|
+
docsUrl?: unknown;
|
|
1810
1810
|
isSkipped?: boolean | undefined;
|
|
1811
1811
|
}[] | undefined;
|
|
1812
1812
|
}>, {
|
|
@@ -1885,7 +1885,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
1885
1885
|
} | undefined;
|
|
1886
1886
|
}[]>) | undefined;
|
|
1887
1887
|
configFile?: string | undefined;
|
|
1888
|
-
} | ((
|
|
1888
|
+
} | ((...args: unknown[]) => {
|
|
1889
1889
|
slug: string;
|
|
1890
1890
|
value: number;
|
|
1891
1891
|
score: number;
|
|
@@ -2051,7 +2051,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2051
2051
|
} | undefined;
|
|
2052
2052
|
}[]>) | undefined;
|
|
2053
2053
|
configFile?: string | undefined;
|
|
2054
|
-
} | ((
|
|
2054
|
+
} | ((...args: unknown[]) => {
|
|
2055
2055
|
slug: string;
|
|
2056
2056
|
value: number;
|
|
2057
2057
|
score: number;
|
|
@@ -2122,11 +2122,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2122
2122
|
slug: string;
|
|
2123
2123
|
title: string;
|
|
2124
2124
|
description?: string | undefined;
|
|
2125
|
-
docsUrl?:
|
|
2125
|
+
docsUrl?: unknown;
|
|
2126
2126
|
isSkipped?: boolean | undefined;
|
|
2127
2127
|
}[];
|
|
2128
2128
|
description?: string | undefined;
|
|
2129
|
-
docsUrl?:
|
|
2129
|
+
docsUrl?: unknown;
|
|
2130
2130
|
isSkipped?: boolean | undefined;
|
|
2131
2131
|
packageName?: string | undefined;
|
|
2132
2132
|
version?: string | undefined;
|
|
@@ -2138,7 +2138,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2138
2138
|
}[];
|
|
2139
2139
|
title: string;
|
|
2140
2140
|
description?: string | undefined;
|
|
2141
|
-
docsUrl?:
|
|
2141
|
+
docsUrl?: unknown;
|
|
2142
2142
|
isSkipped?: boolean | undefined;
|
|
2143
2143
|
}[] | undefined;
|
|
2144
2144
|
}>, "many">;
|
|
@@ -2218,7 +2218,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2218
2218
|
}, {
|
|
2219
2219
|
title: z.ZodString;
|
|
2220
2220
|
description: z.ZodOptional<z.ZodString>;
|
|
2221
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
2221
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
2222
2222
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
2223
2223
|
}>, {
|
|
2224
2224
|
isBinary: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -2245,7 +2245,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2245
2245
|
}[];
|
|
2246
2246
|
title: string;
|
|
2247
2247
|
description?: string | undefined;
|
|
2248
|
-
docsUrl?:
|
|
2248
|
+
docsUrl?: unknown;
|
|
2249
2249
|
isSkipped?: boolean | undefined;
|
|
2250
2250
|
isBinary?: boolean | undefined;
|
|
2251
2251
|
}>, "many">, {
|
|
@@ -2271,7 +2271,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2271
2271
|
}[];
|
|
2272
2272
|
title: string;
|
|
2273
2273
|
description?: string | undefined;
|
|
2274
|
-
docsUrl?:
|
|
2274
|
+
docsUrl?: unknown;
|
|
2275
2275
|
isSkipped?: boolean | undefined;
|
|
2276
2276
|
isBinary?: boolean | undefined;
|
|
2277
2277
|
}[]>>;
|
|
@@ -2352,7 +2352,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2352
2352
|
} | undefined;
|
|
2353
2353
|
}[]>) | undefined;
|
|
2354
2354
|
configFile?: string | undefined;
|
|
2355
|
-
} | ((
|
|
2355
|
+
} | ((...args: unknown[]) => {
|
|
2356
2356
|
slug: string;
|
|
2357
2357
|
value: number;
|
|
2358
2358
|
score: number;
|
|
@@ -2546,7 +2546,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2546
2546
|
} | undefined;
|
|
2547
2547
|
}[]>) | undefined;
|
|
2548
2548
|
configFile?: string | undefined;
|
|
2549
|
-
} | ((
|
|
2549
|
+
} | ((...args: unknown[]) => {
|
|
2550
2550
|
slug: string;
|
|
2551
2551
|
value: number;
|
|
2552
2552
|
score: number;
|
|
@@ -2617,11 +2617,11 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2617
2617
|
slug: string;
|
|
2618
2618
|
title: string;
|
|
2619
2619
|
description?: string | undefined;
|
|
2620
|
-
docsUrl?:
|
|
2620
|
+
docsUrl?: unknown;
|
|
2621
2621
|
isSkipped?: boolean | undefined;
|
|
2622
2622
|
}[];
|
|
2623
2623
|
description?: string | undefined;
|
|
2624
|
-
docsUrl?:
|
|
2624
|
+
docsUrl?: unknown;
|
|
2625
2625
|
isSkipped?: boolean | undefined;
|
|
2626
2626
|
packageName?: string | undefined;
|
|
2627
2627
|
version?: string | undefined;
|
|
@@ -2633,7 +2633,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2633
2633
|
}[];
|
|
2634
2634
|
title: string;
|
|
2635
2635
|
description?: string | undefined;
|
|
2636
|
-
docsUrl?:
|
|
2636
|
+
docsUrl?: unknown;
|
|
2637
2637
|
isSkipped?: boolean | undefined;
|
|
2638
2638
|
}[] | undefined;
|
|
2639
2639
|
}[];
|
|
@@ -2647,7 +2647,7 @@ export declare const unrefinedCoreConfigSchema: z.ZodObject<{
|
|
|
2647
2647
|
}[];
|
|
2648
2648
|
title: string;
|
|
2649
2649
|
description?: string | undefined;
|
|
2650
|
-
docsUrl?:
|
|
2650
|
+
docsUrl?: unknown;
|
|
2651
2651
|
isSkipped?: boolean | undefined;
|
|
2652
2652
|
isBinary?: boolean | undefined;
|
|
2653
2653
|
}[] | undefined;
|
|
@@ -2671,7 +2671,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
2671
2671
|
}, {
|
|
2672
2672
|
title: z.ZodString;
|
|
2673
2673
|
description: z.ZodOptional<z.ZodString>;
|
|
2674
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
2674
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
2675
2675
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
2676
2676
|
}>, {
|
|
2677
2677
|
slug: z.ZodString;
|
|
@@ -3433,7 +3433,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
3433
3433
|
} | undefined;
|
|
3434
3434
|
}[]>) | undefined;
|
|
3435
3435
|
configFile?: string | undefined;
|
|
3436
|
-
}>, z.ZodFunction<z.ZodTuple<[
|
|
3436
|
+
}>, z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodUnion<[z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
3437
3437
|
slug: z.ZodString;
|
|
3438
3438
|
displayValue: z.ZodOptional<z.ZodString>;
|
|
3439
3439
|
value: z.ZodNumber;
|
|
@@ -4045,7 +4045,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4045
4045
|
}, {
|
|
4046
4046
|
title: z.ZodString;
|
|
4047
4047
|
description: z.ZodOptional<z.ZodString>;
|
|
4048
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
4048
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
4049
4049
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
4050
4050
|
}>, "strip", z.ZodTypeAny, {
|
|
4051
4051
|
slug: string;
|
|
@@ -4057,7 +4057,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4057
4057
|
slug: string;
|
|
4058
4058
|
title: string;
|
|
4059
4059
|
description?: string | undefined;
|
|
4060
|
-
docsUrl?:
|
|
4060
|
+
docsUrl?: unknown;
|
|
4061
4061
|
isSkipped?: boolean | undefined;
|
|
4062
4062
|
}>, "many">, {
|
|
4063
4063
|
slug: string;
|
|
@@ -4069,7 +4069,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4069
4069
|
slug: string;
|
|
4070
4070
|
title: string;
|
|
4071
4071
|
description?: string | undefined;
|
|
4072
|
-
docsUrl?:
|
|
4072
|
+
docsUrl?: unknown;
|
|
4073
4073
|
isSkipped?: boolean | undefined;
|
|
4074
4074
|
}[]>;
|
|
4075
4075
|
groups: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -4099,7 +4099,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4099
4099
|
}, {
|
|
4100
4100
|
title: z.ZodString;
|
|
4101
4101
|
description: z.ZodOptional<z.ZodString>;
|
|
4102
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
4102
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
4103
4103
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
4104
4104
|
}>, "strip", z.ZodTypeAny, {
|
|
4105
4105
|
slug: string;
|
|
@@ -4119,7 +4119,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4119
4119
|
}[];
|
|
4120
4120
|
title: string;
|
|
4121
4121
|
description?: string | undefined;
|
|
4122
|
-
docsUrl?:
|
|
4122
|
+
docsUrl?: unknown;
|
|
4123
4123
|
isSkipped?: boolean | undefined;
|
|
4124
4124
|
}>, "many">>, {
|
|
4125
4125
|
slug: string;
|
|
@@ -4139,7 +4139,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4139
4139
|
}[];
|
|
4140
4140
|
title: string;
|
|
4141
4141
|
description?: string | undefined;
|
|
4142
|
-
docsUrl?:
|
|
4142
|
+
docsUrl?: unknown;
|
|
4143
4143
|
isSkipped?: boolean | undefined;
|
|
4144
4144
|
}[] | undefined>;
|
|
4145
4145
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -4218,7 +4218,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4218
4218
|
} | undefined;
|
|
4219
4219
|
}[]>) | undefined;
|
|
4220
4220
|
configFile?: string | undefined;
|
|
4221
|
-
} | ((
|
|
4221
|
+
} | ((...args: unknown[]) => {
|
|
4222
4222
|
slug: string;
|
|
4223
4223
|
value: number;
|
|
4224
4224
|
score: number;
|
|
@@ -4384,7 +4384,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4384
4384
|
} | undefined;
|
|
4385
4385
|
}[]>) | undefined;
|
|
4386
4386
|
configFile?: string | undefined;
|
|
4387
|
-
} | ((
|
|
4387
|
+
} | ((...args: unknown[]) => {
|
|
4388
4388
|
slug: string;
|
|
4389
4389
|
value: number;
|
|
4390
4390
|
score: number;
|
|
@@ -4455,11 +4455,11 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4455
4455
|
slug: string;
|
|
4456
4456
|
title: string;
|
|
4457
4457
|
description?: string | undefined;
|
|
4458
|
-
docsUrl?:
|
|
4458
|
+
docsUrl?: unknown;
|
|
4459
4459
|
isSkipped?: boolean | undefined;
|
|
4460
4460
|
}[];
|
|
4461
4461
|
description?: string | undefined;
|
|
4462
|
-
docsUrl?:
|
|
4462
|
+
docsUrl?: unknown;
|
|
4463
4463
|
isSkipped?: boolean | undefined;
|
|
4464
4464
|
packageName?: string | undefined;
|
|
4465
4465
|
version?: string | undefined;
|
|
@@ -4471,7 +4471,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4471
4471
|
}[];
|
|
4472
4472
|
title: string;
|
|
4473
4473
|
description?: string | undefined;
|
|
4474
|
-
docsUrl?:
|
|
4474
|
+
docsUrl?: unknown;
|
|
4475
4475
|
isSkipped?: boolean | undefined;
|
|
4476
4476
|
}[] | undefined;
|
|
4477
4477
|
}>, {
|
|
@@ -4550,7 +4550,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4550
4550
|
} | undefined;
|
|
4551
4551
|
}[]>) | undefined;
|
|
4552
4552
|
configFile?: string | undefined;
|
|
4553
|
-
} | ((
|
|
4553
|
+
} | ((...args: unknown[]) => {
|
|
4554
4554
|
slug: string;
|
|
4555
4555
|
value: number;
|
|
4556
4556
|
score: number;
|
|
@@ -4716,7 +4716,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4716
4716
|
} | undefined;
|
|
4717
4717
|
}[]>) | undefined;
|
|
4718
4718
|
configFile?: string | undefined;
|
|
4719
|
-
} | ((
|
|
4719
|
+
} | ((...args: unknown[]) => {
|
|
4720
4720
|
slug: string;
|
|
4721
4721
|
value: number;
|
|
4722
4722
|
score: number;
|
|
@@ -4787,11 +4787,11 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4787
4787
|
slug: string;
|
|
4788
4788
|
title: string;
|
|
4789
4789
|
description?: string | undefined;
|
|
4790
|
-
docsUrl?:
|
|
4790
|
+
docsUrl?: unknown;
|
|
4791
4791
|
isSkipped?: boolean | undefined;
|
|
4792
4792
|
}[];
|
|
4793
4793
|
description?: string | undefined;
|
|
4794
|
-
docsUrl?:
|
|
4794
|
+
docsUrl?: unknown;
|
|
4795
4795
|
isSkipped?: boolean | undefined;
|
|
4796
4796
|
packageName?: string | undefined;
|
|
4797
4797
|
version?: string | undefined;
|
|
@@ -4803,7 +4803,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4803
4803
|
}[];
|
|
4804
4804
|
title: string;
|
|
4805
4805
|
description?: string | undefined;
|
|
4806
|
-
docsUrl?:
|
|
4806
|
+
docsUrl?: unknown;
|
|
4807
4807
|
isSkipped?: boolean | undefined;
|
|
4808
4808
|
}[] | undefined;
|
|
4809
4809
|
}>, "many">;
|
|
@@ -4883,7 +4883,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4883
4883
|
}, {
|
|
4884
4884
|
title: z.ZodString;
|
|
4885
4885
|
description: z.ZodOptional<z.ZodString>;
|
|
4886
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
4886
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
4887
4887
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
4888
4888
|
}>, {
|
|
4889
4889
|
isBinary: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -4910,7 +4910,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4910
4910
|
}[];
|
|
4911
4911
|
title: string;
|
|
4912
4912
|
description?: string | undefined;
|
|
4913
|
-
docsUrl?:
|
|
4913
|
+
docsUrl?: unknown;
|
|
4914
4914
|
isSkipped?: boolean | undefined;
|
|
4915
4915
|
isBinary?: boolean | undefined;
|
|
4916
4916
|
}>, "many">, {
|
|
@@ -4936,7 +4936,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
4936
4936
|
}[];
|
|
4937
4937
|
title: string;
|
|
4938
4938
|
description?: string | undefined;
|
|
4939
|
-
docsUrl?:
|
|
4939
|
+
docsUrl?: unknown;
|
|
4940
4940
|
isSkipped?: boolean | undefined;
|
|
4941
4941
|
isBinary?: boolean | undefined;
|
|
4942
4942
|
}[]>>;
|
|
@@ -5017,7 +5017,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5017
5017
|
} | undefined;
|
|
5018
5018
|
}[]>) | undefined;
|
|
5019
5019
|
configFile?: string | undefined;
|
|
5020
|
-
} | ((
|
|
5020
|
+
} | ((...args: unknown[]) => {
|
|
5021
5021
|
slug: string;
|
|
5022
5022
|
value: number;
|
|
5023
5023
|
score: number;
|
|
@@ -5211,7 +5211,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5211
5211
|
} | undefined;
|
|
5212
5212
|
}[]>) | undefined;
|
|
5213
5213
|
configFile?: string | undefined;
|
|
5214
|
-
} | ((
|
|
5214
|
+
} | ((...args: unknown[]) => {
|
|
5215
5215
|
slug: string;
|
|
5216
5216
|
value: number;
|
|
5217
5217
|
score: number;
|
|
@@ -5282,11 +5282,11 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5282
5282
|
slug: string;
|
|
5283
5283
|
title: string;
|
|
5284
5284
|
description?: string | undefined;
|
|
5285
|
-
docsUrl?:
|
|
5285
|
+
docsUrl?: unknown;
|
|
5286
5286
|
isSkipped?: boolean | undefined;
|
|
5287
5287
|
}[];
|
|
5288
5288
|
description?: string | undefined;
|
|
5289
|
-
docsUrl?:
|
|
5289
|
+
docsUrl?: unknown;
|
|
5290
5290
|
isSkipped?: boolean | undefined;
|
|
5291
5291
|
packageName?: string | undefined;
|
|
5292
5292
|
version?: string | undefined;
|
|
@@ -5298,7 +5298,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5298
5298
|
}[];
|
|
5299
5299
|
title: string;
|
|
5300
5300
|
description?: string | undefined;
|
|
5301
|
-
docsUrl?:
|
|
5301
|
+
docsUrl?: unknown;
|
|
5302
5302
|
isSkipped?: boolean | undefined;
|
|
5303
5303
|
}[] | undefined;
|
|
5304
5304
|
}[];
|
|
@@ -5312,7 +5312,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5312
5312
|
}[];
|
|
5313
5313
|
title: string;
|
|
5314
5314
|
description?: string | undefined;
|
|
5315
|
-
docsUrl?:
|
|
5315
|
+
docsUrl?: unknown;
|
|
5316
5316
|
isSkipped?: boolean | undefined;
|
|
5317
5317
|
isBinary?: boolean | undefined;
|
|
5318
5318
|
}[] | undefined;
|
|
@@ -5405,7 +5405,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5405
5405
|
} | undefined;
|
|
5406
5406
|
}[]>) | undefined;
|
|
5407
5407
|
configFile?: string | undefined;
|
|
5408
|
-
} | ((
|
|
5408
|
+
} | ((...args: unknown[]) => {
|
|
5409
5409
|
slug: string;
|
|
5410
5410
|
value: number;
|
|
5411
5411
|
score: number;
|
|
@@ -5599,7 +5599,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5599
5599
|
} | undefined;
|
|
5600
5600
|
}[]>) | undefined;
|
|
5601
5601
|
configFile?: string | undefined;
|
|
5602
|
-
} | ((
|
|
5602
|
+
} | ((...args: unknown[]) => {
|
|
5603
5603
|
slug: string;
|
|
5604
5604
|
value: number;
|
|
5605
5605
|
score: number;
|
|
@@ -5670,11 +5670,11 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5670
5670
|
slug: string;
|
|
5671
5671
|
title: string;
|
|
5672
5672
|
description?: string | undefined;
|
|
5673
|
-
docsUrl?:
|
|
5673
|
+
docsUrl?: unknown;
|
|
5674
5674
|
isSkipped?: boolean | undefined;
|
|
5675
5675
|
}[];
|
|
5676
5676
|
description?: string | undefined;
|
|
5677
|
-
docsUrl?:
|
|
5677
|
+
docsUrl?: unknown;
|
|
5678
5678
|
isSkipped?: boolean | undefined;
|
|
5679
5679
|
packageName?: string | undefined;
|
|
5680
5680
|
version?: string | undefined;
|
|
@@ -5686,7 +5686,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5686
5686
|
}[];
|
|
5687
5687
|
title: string;
|
|
5688
5688
|
description?: string | undefined;
|
|
5689
|
-
docsUrl?:
|
|
5689
|
+
docsUrl?: unknown;
|
|
5690
5690
|
isSkipped?: boolean | undefined;
|
|
5691
5691
|
}[] | undefined;
|
|
5692
5692
|
}[];
|
|
@@ -5700,7 +5700,7 @@ export declare const coreConfigSchema: z.ZodEffects<z.ZodObject<{
|
|
|
5700
5700
|
}[];
|
|
5701
5701
|
title: string;
|
|
5702
5702
|
description?: string | undefined;
|
|
5703
|
-
docsUrl?:
|
|
5703
|
+
docsUrl?: unknown;
|
|
5704
5704
|
isSkipped?: boolean | undefined;
|
|
5705
5705
|
isBinary?: boolean | undefined;
|
|
5706
5706
|
}[] | undefined;
|
|
@@ -5729,7 +5729,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
5729
5729
|
}, {
|
|
5730
5730
|
title: z.ZodString;
|
|
5731
5731
|
description: z.ZodOptional<z.ZodString>;
|
|
5732
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
5732
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
5733
5733
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
5734
5734
|
}>, {
|
|
5735
5735
|
slug: z.ZodString;
|
|
@@ -6491,7 +6491,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
6491
6491
|
} | undefined;
|
|
6492
6492
|
}[]>) | undefined;
|
|
6493
6493
|
configFile?: string | undefined;
|
|
6494
|
-
}>, z.ZodFunction<z.ZodTuple<[
|
|
6494
|
+
}>, z.ZodFunction<z.ZodTuple<[], z.ZodUnknown>, z.ZodUnion<[z.ZodEffects<z.ZodArray<z.ZodObject<{
|
|
6495
6495
|
slug: z.ZodString;
|
|
6496
6496
|
displayValue: z.ZodOptional<z.ZodString>;
|
|
6497
6497
|
value: z.ZodNumber;
|
|
@@ -7103,7 +7103,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7103
7103
|
}, {
|
|
7104
7104
|
title: z.ZodString;
|
|
7105
7105
|
description: z.ZodOptional<z.ZodString>;
|
|
7106
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
7106
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
7107
7107
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
7108
7108
|
}>, "strip", z.ZodTypeAny, {
|
|
7109
7109
|
slug: string;
|
|
@@ -7115,7 +7115,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7115
7115
|
slug: string;
|
|
7116
7116
|
title: string;
|
|
7117
7117
|
description?: string | undefined;
|
|
7118
|
-
docsUrl?:
|
|
7118
|
+
docsUrl?: unknown;
|
|
7119
7119
|
isSkipped?: boolean | undefined;
|
|
7120
7120
|
}>, "many">, {
|
|
7121
7121
|
slug: string;
|
|
@@ -7127,7 +7127,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7127
7127
|
slug: string;
|
|
7128
7128
|
title: string;
|
|
7129
7129
|
description?: string | undefined;
|
|
7130
|
-
docsUrl?:
|
|
7130
|
+
docsUrl?: unknown;
|
|
7131
7131
|
isSkipped?: boolean | undefined;
|
|
7132
7132
|
}[]>;
|
|
7133
7133
|
groups: z.ZodEffects<z.ZodOptional<z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -7157,7 +7157,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7157
7157
|
}, {
|
|
7158
7158
|
title: z.ZodString;
|
|
7159
7159
|
description: z.ZodOptional<z.ZodString>;
|
|
7160
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
7160
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
7161
7161
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
7162
7162
|
}>, "strip", z.ZodTypeAny, {
|
|
7163
7163
|
slug: string;
|
|
@@ -7177,7 +7177,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7177
7177
|
}[];
|
|
7178
7178
|
title: string;
|
|
7179
7179
|
description?: string | undefined;
|
|
7180
|
-
docsUrl?:
|
|
7180
|
+
docsUrl?: unknown;
|
|
7181
7181
|
isSkipped?: boolean | undefined;
|
|
7182
7182
|
}>, "many">>, {
|
|
7183
7183
|
slug: string;
|
|
@@ -7197,7 +7197,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7197
7197
|
}[];
|
|
7198
7198
|
title: string;
|
|
7199
7199
|
description?: string | undefined;
|
|
7200
|
-
docsUrl?:
|
|
7200
|
+
docsUrl?: unknown;
|
|
7201
7201
|
isSkipped?: boolean | undefined;
|
|
7202
7202
|
}[] | undefined>;
|
|
7203
7203
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -7276,7 +7276,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7276
7276
|
} | undefined;
|
|
7277
7277
|
}[]>) | undefined;
|
|
7278
7278
|
configFile?: string | undefined;
|
|
7279
|
-
} | ((
|
|
7279
|
+
} | ((...args: unknown[]) => {
|
|
7280
7280
|
slug: string;
|
|
7281
7281
|
value: number;
|
|
7282
7282
|
score: number;
|
|
@@ -7442,7 +7442,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7442
7442
|
} | undefined;
|
|
7443
7443
|
}[]>) | undefined;
|
|
7444
7444
|
configFile?: string | undefined;
|
|
7445
|
-
} | ((
|
|
7445
|
+
} | ((...args: unknown[]) => {
|
|
7446
7446
|
slug: string;
|
|
7447
7447
|
value: number;
|
|
7448
7448
|
score: number;
|
|
@@ -7513,11 +7513,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7513
7513
|
slug: string;
|
|
7514
7514
|
title: string;
|
|
7515
7515
|
description?: string | undefined;
|
|
7516
|
-
docsUrl?:
|
|
7516
|
+
docsUrl?: unknown;
|
|
7517
7517
|
isSkipped?: boolean | undefined;
|
|
7518
7518
|
}[];
|
|
7519
7519
|
description?: string | undefined;
|
|
7520
|
-
docsUrl?:
|
|
7520
|
+
docsUrl?: unknown;
|
|
7521
7521
|
isSkipped?: boolean | undefined;
|
|
7522
7522
|
packageName?: string | undefined;
|
|
7523
7523
|
version?: string | undefined;
|
|
@@ -7529,7 +7529,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7529
7529
|
}[];
|
|
7530
7530
|
title: string;
|
|
7531
7531
|
description?: string | undefined;
|
|
7532
|
-
docsUrl?:
|
|
7532
|
+
docsUrl?: unknown;
|
|
7533
7533
|
isSkipped?: boolean | undefined;
|
|
7534
7534
|
}[] | undefined;
|
|
7535
7535
|
}>, {
|
|
@@ -7608,7 +7608,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7608
7608
|
} | undefined;
|
|
7609
7609
|
}[]>) | undefined;
|
|
7610
7610
|
configFile?: string | undefined;
|
|
7611
|
-
} | ((
|
|
7611
|
+
} | ((...args: unknown[]) => {
|
|
7612
7612
|
slug: string;
|
|
7613
7613
|
value: number;
|
|
7614
7614
|
score: number;
|
|
@@ -7774,7 +7774,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7774
7774
|
} | undefined;
|
|
7775
7775
|
}[]>) | undefined;
|
|
7776
7776
|
configFile?: string | undefined;
|
|
7777
|
-
} | ((
|
|
7777
|
+
} | ((...args: unknown[]) => {
|
|
7778
7778
|
slug: string;
|
|
7779
7779
|
value: number;
|
|
7780
7780
|
score: number;
|
|
@@ -7845,11 +7845,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7845
7845
|
slug: string;
|
|
7846
7846
|
title: string;
|
|
7847
7847
|
description?: string | undefined;
|
|
7848
|
-
docsUrl?:
|
|
7848
|
+
docsUrl?: unknown;
|
|
7849
7849
|
isSkipped?: boolean | undefined;
|
|
7850
7850
|
}[];
|
|
7851
7851
|
description?: string | undefined;
|
|
7852
|
-
docsUrl?:
|
|
7852
|
+
docsUrl?: unknown;
|
|
7853
7853
|
isSkipped?: boolean | undefined;
|
|
7854
7854
|
packageName?: string | undefined;
|
|
7855
7855
|
version?: string | undefined;
|
|
@@ -7861,7 +7861,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7861
7861
|
}[];
|
|
7862
7862
|
title: string;
|
|
7863
7863
|
description?: string | undefined;
|
|
7864
|
-
docsUrl?:
|
|
7864
|
+
docsUrl?: unknown;
|
|
7865
7865
|
isSkipped?: boolean | undefined;
|
|
7866
7866
|
}[] | undefined;
|
|
7867
7867
|
}>, "many">;
|
|
@@ -7941,7 +7941,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7941
7941
|
}, {
|
|
7942
7942
|
title: z.ZodString;
|
|
7943
7943
|
description: z.ZodOptional<z.ZodString>;
|
|
7944
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
7944
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
7945
7945
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
7946
7946
|
}>, {
|
|
7947
7947
|
isBinary: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -7968,7 +7968,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7968
7968
|
}[];
|
|
7969
7969
|
title: string;
|
|
7970
7970
|
description?: string | undefined;
|
|
7971
|
-
docsUrl?:
|
|
7971
|
+
docsUrl?: unknown;
|
|
7972
7972
|
isSkipped?: boolean | undefined;
|
|
7973
7973
|
isBinary?: boolean | undefined;
|
|
7974
7974
|
}>, "many">, {
|
|
@@ -7994,7 +7994,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
7994
7994
|
}[];
|
|
7995
7995
|
title: string;
|
|
7996
7996
|
description?: string | undefined;
|
|
7997
|
-
docsUrl?:
|
|
7997
|
+
docsUrl?: unknown;
|
|
7998
7998
|
isSkipped?: boolean | undefined;
|
|
7999
7999
|
isBinary?: boolean | undefined;
|
|
8000
8000
|
}[]>>;
|
|
@@ -8075,7 +8075,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
8075
8075
|
} | undefined;
|
|
8076
8076
|
}[]>) | undefined;
|
|
8077
8077
|
configFile?: string | undefined;
|
|
8078
|
-
} | ((
|
|
8078
|
+
} | ((...args: unknown[]) => {
|
|
8079
8079
|
slug: string;
|
|
8080
8080
|
value: number;
|
|
8081
8081
|
score: number;
|
|
@@ -8269,7 +8269,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
8269
8269
|
} | undefined;
|
|
8270
8270
|
}[]>) | undefined;
|
|
8271
8271
|
configFile?: string | undefined;
|
|
8272
|
-
} | ((
|
|
8272
|
+
} | ((...args: unknown[]) => {
|
|
8273
8273
|
slug: string;
|
|
8274
8274
|
value: number;
|
|
8275
8275
|
score: number;
|
|
@@ -8340,11 +8340,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
8340
8340
|
slug: string;
|
|
8341
8341
|
title: string;
|
|
8342
8342
|
description?: string | undefined;
|
|
8343
|
-
docsUrl?:
|
|
8343
|
+
docsUrl?: unknown;
|
|
8344
8344
|
isSkipped?: boolean | undefined;
|
|
8345
8345
|
}[];
|
|
8346
8346
|
description?: string | undefined;
|
|
8347
|
-
docsUrl?:
|
|
8347
|
+
docsUrl?: unknown;
|
|
8348
8348
|
isSkipped?: boolean | undefined;
|
|
8349
8349
|
packageName?: string | undefined;
|
|
8350
8350
|
version?: string | undefined;
|
|
@@ -8356,7 +8356,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
8356
8356
|
}[];
|
|
8357
8357
|
title: string;
|
|
8358
8358
|
description?: string | undefined;
|
|
8359
|
-
docsUrl?:
|
|
8359
|
+
docsUrl?: unknown;
|
|
8360
8360
|
isSkipped?: boolean | undefined;
|
|
8361
8361
|
}[] | undefined;
|
|
8362
8362
|
}[];
|
|
@@ -8370,7 +8370,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
8370
8370
|
}[];
|
|
8371
8371
|
title: string;
|
|
8372
8372
|
description?: string | undefined;
|
|
8373
|
-
docsUrl?:
|
|
8373
|
+
docsUrl?: unknown;
|
|
8374
8374
|
isSkipped?: boolean | undefined;
|
|
8375
8375
|
isBinary?: boolean | undefined;
|
|
8376
8376
|
}[] | undefined;
|
|
@@ -8463,7 +8463,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
8463
8463
|
} | undefined;
|
|
8464
8464
|
}[]>) | undefined;
|
|
8465
8465
|
configFile?: string | undefined;
|
|
8466
|
-
} | ((
|
|
8466
|
+
} | ((...args: unknown[]) => {
|
|
8467
8467
|
slug: string;
|
|
8468
8468
|
value: number;
|
|
8469
8469
|
score: number;
|
|
@@ -8657,7 +8657,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
8657
8657
|
} | undefined;
|
|
8658
8658
|
}[]>) | undefined;
|
|
8659
8659
|
configFile?: string | undefined;
|
|
8660
|
-
} | ((
|
|
8660
|
+
} | ((...args: unknown[]) => {
|
|
8661
8661
|
slug: string;
|
|
8662
8662
|
value: number;
|
|
8663
8663
|
score: number;
|
|
@@ -8728,11 +8728,11 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
8728
8728
|
slug: string;
|
|
8729
8729
|
title: string;
|
|
8730
8730
|
description?: string | undefined;
|
|
8731
|
-
docsUrl?:
|
|
8731
|
+
docsUrl?: unknown;
|
|
8732
8732
|
isSkipped?: boolean | undefined;
|
|
8733
8733
|
}[];
|
|
8734
8734
|
description?: string | undefined;
|
|
8735
|
-
docsUrl?:
|
|
8735
|
+
docsUrl?: unknown;
|
|
8736
8736
|
isSkipped?: boolean | undefined;
|
|
8737
8737
|
packageName?: string | undefined;
|
|
8738
8738
|
version?: string | undefined;
|
|
@@ -8744,7 +8744,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
8744
8744
|
}[];
|
|
8745
8745
|
title: string;
|
|
8746
8746
|
description?: string | undefined;
|
|
8747
|
-
docsUrl?:
|
|
8747
|
+
docsUrl?: unknown;
|
|
8748
8748
|
isSkipped?: boolean | undefined;
|
|
8749
8749
|
}[] | undefined;
|
|
8750
8750
|
}[];
|
|
@@ -8758,7 +8758,7 @@ export declare function refineCoreConfig(schema: typeof unrefinedCoreConfigSchem
|
|
|
8758
8758
|
}[];
|
|
8759
8759
|
title: string;
|
|
8760
8760
|
description?: string | undefined;
|
|
8761
|
-
docsUrl?:
|
|
8761
|
+
docsUrl?: unknown;
|
|
8762
8762
|
isSkipped?: boolean | undefined;
|
|
8763
8763
|
isBinary?: boolean | undefined;
|
|
8764
8764
|
}[] | undefined;
|