@code-pushup/models 0.60.2 → 0.61.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-pushup/models",
3
- "version": "0.60.2",
3
+ "version": "0.61.0",
4
4
  "license": "MIT",
5
5
  "description": "Model definitions and validators for the Code PushUp CLI",
6
6
  "homepage": "https://github.com/code-pushup/cli/tree/main/packages/models#readme",
@@ -4,7 +4,7 @@ export declare const auditSchema: z.ZodObject<z.objectUtil.extendShape<{
4
4
  }, {
5
5
  title: z.ZodString;
6
6
  description: z.ZodOptional<z.ZodString>;
7
- docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
7
+ docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
8
8
  isSkipped: z.ZodOptional<z.ZodBoolean>;
9
9
  }>, "strip", z.ZodTypeAny, {
10
10
  slug: string;
@@ -16,7 +16,7 @@ export declare const auditSchema: z.ZodObject<z.objectUtil.extendShape<{
16
16
  slug: string;
17
17
  title: string;
18
18
  description?: string | undefined;
19
- docsUrl?: string | undefined;
19
+ docsUrl?: unknown;
20
20
  isSkipped?: boolean | undefined;
21
21
  }>;
22
22
  /**
@@ -33,7 +33,7 @@ export declare const pluginAuditsSchema: z.ZodEffects<z.ZodArray<z.ZodObject<z.o
33
33
  }, {
34
34
  title: z.ZodString;
35
35
  description: z.ZodOptional<z.ZodString>;
36
- docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
36
+ docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
37
37
  isSkipped: z.ZodOptional<z.ZodBoolean>;
38
38
  }>, "strip", z.ZodTypeAny, {
39
39
  slug: string;
@@ -45,7 +45,7 @@ export declare const pluginAuditsSchema: z.ZodEffects<z.ZodArray<z.ZodObject<z.o
45
45
  slug: string;
46
46
  title: string;
47
47
  description?: string | undefined;
48
- docsUrl?: string | undefined;
48
+ docsUrl?: unknown;
49
49
  isSkipped?: boolean | undefined;
50
50
  }>, "many">, {
51
51
  slug: string;
@@ -57,6 +57,6 @@ export declare const pluginAuditsSchema: z.ZodEffects<z.ZodArray<z.ZodObject<z.o
57
57
  slug: string;
58
58
  title: string;
59
59
  description?: string | undefined;
60
- docsUrl?: string | undefined;
60
+ docsUrl?: unknown;
61
61
  isSkipped?: boolean | undefined;
62
62
  }[]>;
@@ -67,7 +67,7 @@ export declare const categoryConfigSchema: z.ZodObject<z.objectUtil.extendShape<
67
67
  }, {
68
68
  title: z.ZodString;
69
69
  description: z.ZodOptional<z.ZodString>;
70
- docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
70
+ docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
71
71
  isSkipped: z.ZodOptional<z.ZodBoolean>;
72
72
  }>, {
73
73
  isBinary: z.ZodOptional<z.ZodBoolean>;
@@ -94,7 +94,7 @@ export declare const categoryConfigSchema: z.ZodObject<z.objectUtil.extendShape<
94
94
  }[];
95
95
  title: string;
96
96
  description?: string | undefined;
97
- docsUrl?: string | undefined;
97
+ docsUrl?: unknown;
98
98
  isSkipped?: boolean | undefined;
99
99
  isBinary?: boolean | undefined;
100
100
  }>;
@@ -150,7 +150,7 @@ export declare const categoriesSchema: z.ZodEffects<z.ZodArray<z.ZodObject<z.obj
150
150
  }, {
151
151
  title: z.ZodString;
152
152
  description: z.ZodOptional<z.ZodString>;
153
- docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
153
+ docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
154
154
  isSkipped: z.ZodOptional<z.ZodBoolean>;
155
155
  }>, {
156
156
  isBinary: z.ZodOptional<z.ZodBoolean>;
@@ -177,7 +177,7 @@ export declare const categoriesSchema: z.ZodEffects<z.ZodArray<z.ZodObject<z.obj
177
177
  }[];
178
178
  title: string;
179
179
  description?: string | undefined;
180
- docsUrl?: string | undefined;
180
+ docsUrl?: unknown;
181
181
  isSkipped?: boolean | undefined;
182
182
  isBinary?: boolean | undefined;
183
183
  }>, "many">, {
@@ -203,7 +203,7 @@ export declare const categoriesSchema: z.ZodEffects<z.ZodArray<z.ZodObject<z.obj
203
203
  }[];
204
204
  title: string;
205
205
  description?: string | undefined;
206
- docsUrl?: string | undefined;
206
+ docsUrl?: unknown;
207
207
  isSkipped?: boolean | undefined;
208
208
  isBinary?: boolean | undefined;
209
209
  }[]>;
@@ -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;
@@ -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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
1477
+ docsUrl?: unknown;
1478
1478
  isSkipped?: boolean | undefined;
1479
1479
  }[] | undefined>;
1480
1480
  }>, "strip", z.ZodTypeAny, {
@@ -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?: string | undefined;
1793
+ docsUrl?: unknown;
1794
1794
  isSkipped?: boolean | undefined;
1795
1795
  }[];
1796
1796
  description?: string | undefined;
1797
- docsUrl?: string | undefined;
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?: string | undefined;
1809
+ docsUrl?: unknown;
1810
1810
  isSkipped?: boolean | undefined;
1811
1811
  }[] | undefined;
1812
1812
  }>, {
@@ -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?: string | undefined;
2125
+ docsUrl?: unknown;
2126
2126
  isSkipped?: boolean | undefined;
2127
2127
  }[];
2128
2128
  description?: string | undefined;
2129
- docsUrl?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
2274
+ docsUrl?: unknown;
2275
2275
  isSkipped?: boolean | undefined;
2276
2276
  isBinary?: boolean | undefined;
2277
2277
  }[]>>;
@@ -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?: string | undefined;
2620
+ docsUrl?: unknown;
2621
2621
  isSkipped?: boolean | undefined;
2622
2622
  }[];
2623
2623
  description?: string | undefined;
2624
- docsUrl?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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;
@@ -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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
4142
+ docsUrl?: unknown;
4143
4143
  isSkipped?: boolean | undefined;
4144
4144
  }[] | undefined>;
4145
4145
  }>, "strip", z.ZodTypeAny, {
@@ -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?: string | undefined;
4458
+ docsUrl?: unknown;
4459
4459
  isSkipped?: boolean | undefined;
4460
4460
  }[];
4461
4461
  description?: string | undefined;
4462
- docsUrl?: string | undefined;
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?: string | undefined;
4474
+ docsUrl?: unknown;
4475
4475
  isSkipped?: boolean | undefined;
4476
4476
  }[] | undefined;
4477
4477
  }>, {
@@ -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?: string | undefined;
4790
+ docsUrl?: unknown;
4791
4791
  isSkipped?: boolean | undefined;
4792
4792
  }[];
4793
4793
  description?: string | undefined;
4794
- docsUrl?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
4939
+ docsUrl?: unknown;
4940
4940
  isSkipped?: boolean | undefined;
4941
4941
  isBinary?: boolean | undefined;
4942
4942
  }[]>>;
@@ -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?: string | undefined;
5285
+ docsUrl?: unknown;
5286
5286
  isSkipped?: boolean | undefined;
5287
5287
  }[];
5288
5288
  description?: string | undefined;
5289
- docsUrl?: string | undefined;
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?: string | undefined;
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?: string | undefined;
5315
+ docsUrl?: unknown;
5316
5316
  isSkipped?: boolean | undefined;
5317
5317
  isBinary?: boolean | undefined;
5318
5318
  }[] | undefined;
@@ -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?: string | undefined;
5673
+ docsUrl?: unknown;
5674
5674
  isSkipped?: boolean | undefined;
5675
5675
  }[];
5676
5676
  description?: string | undefined;
5677
- docsUrl?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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;
@@ -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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
7200
+ docsUrl?: unknown;
7201
7201
  isSkipped?: boolean | undefined;
7202
7202
  }[] | undefined>;
7203
7203
  }>, "strip", z.ZodTypeAny, {
@@ -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?: string | undefined;
7516
+ docsUrl?: unknown;
7517
7517
  isSkipped?: boolean | undefined;
7518
7518
  }[];
7519
7519
  description?: string | undefined;
7520
- docsUrl?: string | undefined;
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?: string | undefined;
7532
+ docsUrl?: unknown;
7533
7533
  isSkipped?: boolean | undefined;
7534
7534
  }[] | undefined;
7535
7535
  }>, {
@@ -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?: string | undefined;
7848
+ docsUrl?: unknown;
7849
7849
  isSkipped?: boolean | undefined;
7850
7850
  }[];
7851
7851
  description?: string | undefined;
7852
- docsUrl?: string | undefined;
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?: string | undefined;
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?: string | undefined;
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?: string | undefined;
7997
+ docsUrl?: unknown;
7998
7998
  isSkipped?: boolean | undefined;
7999
7999
  isBinary?: boolean | undefined;
8000
8000
  }[]>>;
@@ -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?: string | undefined;
8343
+ docsUrl?: unknown;
8344
8344
  isSkipped?: boolean | undefined;
8345
8345
  }[];
8346
8346
  description?: string | undefined;
8347
- docsUrl?: string | undefined;
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?: string | undefined;
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?: string | undefined;
8373
+ docsUrl?: unknown;
8374
8374
  isSkipped?: boolean | undefined;
8375
8375
  isBinary?: boolean | undefined;
8376
8376
  }[] | undefined;
@@ -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?: string | undefined;
8731
+ docsUrl?: unknown;
8732
8732
  isSkipped?: boolean | undefined;
8733
8733
  }[];
8734
8734
  description?: string | undefined;
8735
- docsUrl?: string | undefined;
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?: string | undefined;
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?: string | undefined;
8761
+ docsUrl?: unknown;
8762
8762
  isSkipped?: boolean | undefined;
8763
8763
  isBinary?: boolean | undefined;
8764
8764
  }[] | undefined;