@code-pushup/models 0.60.1 → 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 +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 +68 -68
- 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 +23 -23
- package/src/lib/report.d.ts +34 -34
- package/src/lib/reports-diff.d.ts +116 -116
|
@@ -2,7 +2,7 @@ import { type ZodTypeAny, z } from 'zod';
|
|
|
2
2
|
export declare const categoryDiffSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
3
3
|
slug: z.ZodString;
|
|
4
4
|
title: z.ZodString;
|
|
5
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
5
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
6
6
|
}, {
|
|
7
7
|
scores: z.ZodObject<z.objectUtil.extendShape<{
|
|
8
8
|
before: z.ZodNumber;
|
|
@@ -35,12 +35,12 @@ export declare const categoryDiffSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
35
35
|
before: number;
|
|
36
36
|
after: number;
|
|
37
37
|
};
|
|
38
|
-
docsUrl?:
|
|
38
|
+
docsUrl?: unknown;
|
|
39
39
|
}>;
|
|
40
40
|
export declare const groupDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
41
41
|
slug: z.ZodString;
|
|
42
42
|
title: z.ZodString;
|
|
43
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
43
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
44
44
|
}, {
|
|
45
45
|
scores: z.ZodObject<z.objectUtil.extendShape<{
|
|
46
46
|
before: z.ZodNumber;
|
|
@@ -59,7 +59,7 @@ export declare const groupDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
59
59
|
}>, z.objectUtil.extendShape<{
|
|
60
60
|
slug: z.ZodString;
|
|
61
61
|
title: z.ZodString;
|
|
62
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
62
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
63
63
|
}, {
|
|
64
64
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
65
65
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -67,7 +67,7 @@ export declare const groupDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
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
|
slug: z.ZodString;
|
|
@@ -79,7 +79,7 @@ export declare const groupDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
79
79
|
}, {
|
|
80
80
|
slug: string;
|
|
81
81
|
title: string;
|
|
82
|
-
docsUrl?:
|
|
82
|
+
docsUrl?: unknown;
|
|
83
83
|
}>;
|
|
84
84
|
}>>, "strip", ZodTypeAny, {
|
|
85
85
|
slug: string;
|
|
@@ -100,7 +100,7 @@ export declare const groupDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
100
100
|
plugin: {
|
|
101
101
|
slug: string;
|
|
102
102
|
title: string;
|
|
103
|
-
docsUrl?:
|
|
103
|
+
docsUrl?: unknown;
|
|
104
104
|
};
|
|
105
105
|
title: string;
|
|
106
106
|
scores: {
|
|
@@ -108,12 +108,12 @@ export declare const groupDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
108
108
|
before: number;
|
|
109
109
|
after: number;
|
|
110
110
|
};
|
|
111
|
-
docsUrl?:
|
|
111
|
+
docsUrl?: unknown;
|
|
112
112
|
}>;
|
|
113
113
|
export declare const auditDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
114
114
|
slug: z.ZodString;
|
|
115
115
|
title: z.ZodString;
|
|
116
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
116
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
117
117
|
}, {
|
|
118
118
|
scores: z.ZodObject<z.objectUtil.extendShape<{
|
|
119
119
|
before: z.ZodNumber;
|
|
@@ -132,7 +132,7 @@ export declare const auditDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
132
132
|
}>, z.objectUtil.extendShape<{
|
|
133
133
|
slug: z.ZodString;
|
|
134
134
|
title: z.ZodString;
|
|
135
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
135
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
136
136
|
}, {
|
|
137
137
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
138
138
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -140,7 +140,7 @@ export declare const auditDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
140
140
|
}, {
|
|
141
141
|
title: z.ZodString;
|
|
142
142
|
description: z.ZodOptional<z.ZodString>;
|
|
143
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
143
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
144
144
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
145
145
|
}>, {
|
|
146
146
|
slug: z.ZodString;
|
|
@@ -152,7 +152,7 @@ export declare const auditDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
152
152
|
}, {
|
|
153
153
|
slug: string;
|
|
154
154
|
title: string;
|
|
155
|
-
docsUrl?:
|
|
155
|
+
docsUrl?: unknown;
|
|
156
156
|
}>;
|
|
157
157
|
}>>, {
|
|
158
158
|
values: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -212,7 +212,7 @@ export declare const auditDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
212
212
|
plugin: {
|
|
213
213
|
slug: string;
|
|
214
214
|
title: string;
|
|
215
|
-
docsUrl?:
|
|
215
|
+
docsUrl?: unknown;
|
|
216
216
|
};
|
|
217
217
|
title: string;
|
|
218
218
|
scores: {
|
|
@@ -224,12 +224,12 @@ export declare const auditDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.obj
|
|
|
224
224
|
before?: string | undefined;
|
|
225
225
|
after?: string | undefined;
|
|
226
226
|
};
|
|
227
|
-
docsUrl?:
|
|
227
|
+
docsUrl?: unknown;
|
|
228
228
|
}>;
|
|
229
229
|
export declare const categoryResultSchema: z.ZodObject<z.objectUtil.extendShape<{
|
|
230
230
|
slug: z.ZodString;
|
|
231
231
|
title: z.ZodString;
|
|
232
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
232
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
233
233
|
}, {
|
|
234
234
|
score: z.ZodNumber;
|
|
235
235
|
}>, "strip", ZodTypeAny, {
|
|
@@ -241,12 +241,12 @@ export declare const categoryResultSchema: z.ZodObject<z.objectUtil.extendShape<
|
|
|
241
241
|
slug: string;
|
|
242
242
|
title: string;
|
|
243
243
|
score: number;
|
|
244
|
-
docsUrl?:
|
|
244
|
+
docsUrl?: unknown;
|
|
245
245
|
}>;
|
|
246
246
|
export declare const groupResultSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
247
247
|
slug: z.ZodString;
|
|
248
248
|
title: z.ZodString;
|
|
249
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
249
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
250
250
|
}, {
|
|
251
251
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
252
252
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -254,7 +254,7 @@ export declare const groupResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
254
254
|
}, {
|
|
255
255
|
title: z.ZodString;
|
|
256
256
|
description: z.ZodOptional<z.ZodString>;
|
|
257
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
257
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
258
258
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
259
259
|
}>, {
|
|
260
260
|
slug: z.ZodString;
|
|
@@ -266,7 +266,7 @@ export declare const groupResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
266
266
|
}, {
|
|
267
267
|
slug: string;
|
|
268
268
|
title: string;
|
|
269
|
-
docsUrl?:
|
|
269
|
+
docsUrl?: unknown;
|
|
270
270
|
}>;
|
|
271
271
|
}>, {
|
|
272
272
|
score: z.ZodNumber;
|
|
@@ -285,16 +285,16 @@ export declare const groupResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
285
285
|
plugin: {
|
|
286
286
|
slug: string;
|
|
287
287
|
title: string;
|
|
288
|
-
docsUrl?:
|
|
288
|
+
docsUrl?: unknown;
|
|
289
289
|
};
|
|
290
290
|
title: string;
|
|
291
291
|
score: number;
|
|
292
|
-
docsUrl?:
|
|
292
|
+
docsUrl?: unknown;
|
|
293
293
|
}>;
|
|
294
294
|
export declare const auditResultSchema: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
295
295
|
slug: z.ZodString;
|
|
296
296
|
title: z.ZodString;
|
|
297
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
297
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
298
298
|
}, {
|
|
299
299
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
300
300
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -302,7 +302,7 @@ export declare const auditResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
302
302
|
}, {
|
|
303
303
|
title: z.ZodString;
|
|
304
304
|
description: z.ZodOptional<z.ZodString>;
|
|
305
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
305
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
306
306
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
307
307
|
}>, {
|
|
308
308
|
slug: z.ZodString;
|
|
@@ -314,7 +314,7 @@ export declare const auditResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
314
314
|
}, {
|
|
315
315
|
slug: string;
|
|
316
316
|
title: string;
|
|
317
|
-
docsUrl?:
|
|
317
|
+
docsUrl?: unknown;
|
|
318
318
|
}>;
|
|
319
319
|
}>, Pick<{
|
|
320
320
|
slug: z.ZodString;
|
|
@@ -505,11 +505,11 @@ export declare const auditResultSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
505
505
|
plugin: {
|
|
506
506
|
slug: string;
|
|
507
507
|
title: string;
|
|
508
|
-
docsUrl?:
|
|
508
|
+
docsUrl?: unknown;
|
|
509
509
|
};
|
|
510
510
|
title: string;
|
|
511
511
|
score: number;
|
|
512
|
-
docsUrl?:
|
|
512
|
+
docsUrl?: unknown;
|
|
513
513
|
displayValue?: string | undefined;
|
|
514
514
|
}>;
|
|
515
515
|
/**
|
|
@@ -633,7 +633,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
633
633
|
changed: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
634
634
|
slug: z.ZodString;
|
|
635
635
|
title: z.ZodString;
|
|
636
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
636
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
637
637
|
}, {
|
|
638
638
|
scores: z.ZodObject<z.objectUtil.extendShape<{
|
|
639
639
|
before: z.ZodNumber;
|
|
@@ -666,12 +666,12 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
666
666
|
before: number;
|
|
667
667
|
after: number;
|
|
668
668
|
};
|
|
669
|
-
docsUrl?:
|
|
669
|
+
docsUrl?: unknown;
|
|
670
670
|
}>, "many">;
|
|
671
671
|
unchanged: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
672
672
|
slug: z.ZodString;
|
|
673
673
|
title: z.ZodString;
|
|
674
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
674
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
675
675
|
}, {
|
|
676
676
|
score: z.ZodNumber;
|
|
677
677
|
}>, "strip", ZodTypeAny, {
|
|
@@ -683,12 +683,12 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
683
683
|
slug: string;
|
|
684
684
|
title: string;
|
|
685
685
|
score: number;
|
|
686
|
-
docsUrl?:
|
|
686
|
+
docsUrl?: unknown;
|
|
687
687
|
}>, "many">;
|
|
688
688
|
added: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
689
689
|
slug: z.ZodString;
|
|
690
690
|
title: z.ZodString;
|
|
691
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
691
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
692
692
|
}, {
|
|
693
693
|
score: z.ZodNumber;
|
|
694
694
|
}>, "strip", ZodTypeAny, {
|
|
@@ -700,12 +700,12 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
700
700
|
slug: string;
|
|
701
701
|
title: string;
|
|
702
702
|
score: number;
|
|
703
|
-
docsUrl?:
|
|
703
|
+
docsUrl?: unknown;
|
|
704
704
|
}>, "many">;
|
|
705
705
|
removed: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
|
706
706
|
slug: z.ZodString;
|
|
707
707
|
title: z.ZodString;
|
|
708
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
708
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
709
709
|
}, {
|
|
710
710
|
score: z.ZodNumber;
|
|
711
711
|
}>, "strip", ZodTypeAny, {
|
|
@@ -717,7 +717,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
717
717
|
slug: string;
|
|
718
718
|
title: string;
|
|
719
719
|
score: number;
|
|
720
|
-
docsUrl?:
|
|
720
|
+
docsUrl?: unknown;
|
|
721
721
|
}>, "many">;
|
|
722
722
|
}, "strip", ZodTypeAny, {
|
|
723
723
|
changed: {
|
|
@@ -757,32 +757,32 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
757
757
|
before: number;
|
|
758
758
|
after: number;
|
|
759
759
|
};
|
|
760
|
-
docsUrl?:
|
|
760
|
+
docsUrl?: unknown;
|
|
761
761
|
}[];
|
|
762
762
|
unchanged: {
|
|
763
763
|
slug: string;
|
|
764
764
|
title: string;
|
|
765
765
|
score: number;
|
|
766
|
-
docsUrl?:
|
|
766
|
+
docsUrl?: unknown;
|
|
767
767
|
}[];
|
|
768
768
|
added: {
|
|
769
769
|
slug: string;
|
|
770
770
|
title: string;
|
|
771
771
|
score: number;
|
|
772
|
-
docsUrl?:
|
|
772
|
+
docsUrl?: unknown;
|
|
773
773
|
}[];
|
|
774
774
|
removed: {
|
|
775
775
|
slug: string;
|
|
776
776
|
title: string;
|
|
777
777
|
score: number;
|
|
778
|
-
docsUrl?:
|
|
778
|
+
docsUrl?: unknown;
|
|
779
779
|
}[];
|
|
780
780
|
}>;
|
|
781
781
|
groups: z.ZodObject<{
|
|
782
782
|
changed: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
783
783
|
slug: z.ZodString;
|
|
784
784
|
title: z.ZodString;
|
|
785
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
785
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
786
786
|
}, {
|
|
787
787
|
scores: z.ZodObject<z.objectUtil.extendShape<{
|
|
788
788
|
before: z.ZodNumber;
|
|
@@ -801,7 +801,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
801
801
|
}>, z.objectUtil.extendShape<{
|
|
802
802
|
slug: z.ZodString;
|
|
803
803
|
title: z.ZodString;
|
|
804
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
804
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
805
805
|
}, {
|
|
806
806
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
807
807
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -809,7 +809,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
809
809
|
}, {
|
|
810
810
|
title: z.ZodString;
|
|
811
811
|
description: z.ZodOptional<z.ZodString>;
|
|
812
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
812
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
813
813
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
814
814
|
}>, {
|
|
815
815
|
slug: z.ZodString;
|
|
@@ -821,7 +821,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
821
821
|
}, {
|
|
822
822
|
slug: string;
|
|
823
823
|
title: string;
|
|
824
|
-
docsUrl?:
|
|
824
|
+
docsUrl?: unknown;
|
|
825
825
|
}>;
|
|
826
826
|
}>>, "strip", ZodTypeAny, {
|
|
827
827
|
slug: string;
|
|
@@ -842,7 +842,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
842
842
|
plugin: {
|
|
843
843
|
slug: string;
|
|
844
844
|
title: string;
|
|
845
|
-
docsUrl?:
|
|
845
|
+
docsUrl?: unknown;
|
|
846
846
|
};
|
|
847
847
|
title: string;
|
|
848
848
|
scores: {
|
|
@@ -850,12 +850,12 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
850
850
|
before: number;
|
|
851
851
|
after: number;
|
|
852
852
|
};
|
|
853
|
-
docsUrl?:
|
|
853
|
+
docsUrl?: unknown;
|
|
854
854
|
}>, "many">;
|
|
855
855
|
unchanged: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
856
856
|
slug: z.ZodString;
|
|
857
857
|
title: z.ZodString;
|
|
858
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
858
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
859
859
|
}, {
|
|
860
860
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
861
861
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -863,7 +863,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
863
863
|
}, {
|
|
864
864
|
title: z.ZodString;
|
|
865
865
|
description: z.ZodOptional<z.ZodString>;
|
|
866
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
866
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
867
867
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
868
868
|
}>, {
|
|
869
869
|
slug: z.ZodString;
|
|
@@ -875,7 +875,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
875
875
|
}, {
|
|
876
876
|
slug: string;
|
|
877
877
|
title: string;
|
|
878
|
-
docsUrl?:
|
|
878
|
+
docsUrl?: unknown;
|
|
879
879
|
}>;
|
|
880
880
|
}>, {
|
|
881
881
|
score: z.ZodNumber;
|
|
@@ -894,16 +894,16 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
894
894
|
plugin: {
|
|
895
895
|
slug: string;
|
|
896
896
|
title: string;
|
|
897
|
-
docsUrl?:
|
|
897
|
+
docsUrl?: unknown;
|
|
898
898
|
};
|
|
899
899
|
title: string;
|
|
900
900
|
score: number;
|
|
901
|
-
docsUrl?:
|
|
901
|
+
docsUrl?: unknown;
|
|
902
902
|
}>, "many">;
|
|
903
903
|
added: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
904
904
|
slug: z.ZodString;
|
|
905
905
|
title: z.ZodString;
|
|
906
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
906
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
907
907
|
}, {
|
|
908
908
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
909
909
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -911,7 +911,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
911
911
|
}, {
|
|
912
912
|
title: z.ZodString;
|
|
913
913
|
description: z.ZodOptional<z.ZodString>;
|
|
914
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
914
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
915
915
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
916
916
|
}>, {
|
|
917
917
|
slug: z.ZodString;
|
|
@@ -923,7 +923,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
923
923
|
}, {
|
|
924
924
|
slug: string;
|
|
925
925
|
title: string;
|
|
926
|
-
docsUrl?:
|
|
926
|
+
docsUrl?: unknown;
|
|
927
927
|
}>;
|
|
928
928
|
}>, {
|
|
929
929
|
score: z.ZodNumber;
|
|
@@ -942,16 +942,16 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
942
942
|
plugin: {
|
|
943
943
|
slug: string;
|
|
944
944
|
title: string;
|
|
945
|
-
docsUrl?:
|
|
945
|
+
docsUrl?: unknown;
|
|
946
946
|
};
|
|
947
947
|
title: string;
|
|
948
948
|
score: number;
|
|
949
|
-
docsUrl?:
|
|
949
|
+
docsUrl?: unknown;
|
|
950
950
|
}>, "many">;
|
|
951
951
|
removed: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
952
952
|
slug: z.ZodString;
|
|
953
953
|
title: z.ZodString;
|
|
954
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
954
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
955
955
|
}, {
|
|
956
956
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
957
957
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -959,7 +959,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
959
959
|
}, {
|
|
960
960
|
title: z.ZodString;
|
|
961
961
|
description: z.ZodOptional<z.ZodString>;
|
|
962
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
962
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
963
963
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
964
964
|
}>, {
|
|
965
965
|
slug: z.ZodString;
|
|
@@ -971,7 +971,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
971
971
|
}, {
|
|
972
972
|
slug: string;
|
|
973
973
|
title: string;
|
|
974
|
-
docsUrl?:
|
|
974
|
+
docsUrl?: unknown;
|
|
975
975
|
}>;
|
|
976
976
|
}>, {
|
|
977
977
|
score: z.ZodNumber;
|
|
@@ -990,11 +990,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
990
990
|
plugin: {
|
|
991
991
|
slug: string;
|
|
992
992
|
title: string;
|
|
993
|
-
docsUrl?:
|
|
993
|
+
docsUrl?: unknown;
|
|
994
994
|
};
|
|
995
995
|
title: string;
|
|
996
996
|
score: number;
|
|
997
|
-
docsUrl?:
|
|
997
|
+
docsUrl?: unknown;
|
|
998
998
|
}>, "many">;
|
|
999
999
|
}, "strip", ZodTypeAny, {
|
|
1000
1000
|
changed: {
|
|
@@ -1051,7 +1051,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1051
1051
|
plugin: {
|
|
1052
1052
|
slug: string;
|
|
1053
1053
|
title: string;
|
|
1054
|
-
docsUrl?:
|
|
1054
|
+
docsUrl?: unknown;
|
|
1055
1055
|
};
|
|
1056
1056
|
title: string;
|
|
1057
1057
|
scores: {
|
|
@@ -1059,47 +1059,47 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1059
1059
|
before: number;
|
|
1060
1060
|
after: number;
|
|
1061
1061
|
};
|
|
1062
|
-
docsUrl?:
|
|
1062
|
+
docsUrl?: unknown;
|
|
1063
1063
|
}[];
|
|
1064
1064
|
unchanged: {
|
|
1065
1065
|
slug: string;
|
|
1066
1066
|
plugin: {
|
|
1067
1067
|
slug: string;
|
|
1068
1068
|
title: string;
|
|
1069
|
-
docsUrl?:
|
|
1069
|
+
docsUrl?: unknown;
|
|
1070
1070
|
};
|
|
1071
1071
|
title: string;
|
|
1072
1072
|
score: number;
|
|
1073
|
-
docsUrl?:
|
|
1073
|
+
docsUrl?: unknown;
|
|
1074
1074
|
}[];
|
|
1075
1075
|
added: {
|
|
1076
1076
|
slug: string;
|
|
1077
1077
|
plugin: {
|
|
1078
1078
|
slug: string;
|
|
1079
1079
|
title: string;
|
|
1080
|
-
docsUrl?:
|
|
1080
|
+
docsUrl?: unknown;
|
|
1081
1081
|
};
|
|
1082
1082
|
title: string;
|
|
1083
1083
|
score: number;
|
|
1084
|
-
docsUrl?:
|
|
1084
|
+
docsUrl?: unknown;
|
|
1085
1085
|
}[];
|
|
1086
1086
|
removed: {
|
|
1087
1087
|
slug: string;
|
|
1088
1088
|
plugin: {
|
|
1089
1089
|
slug: string;
|
|
1090
1090
|
title: string;
|
|
1091
|
-
docsUrl?:
|
|
1091
|
+
docsUrl?: unknown;
|
|
1092
1092
|
};
|
|
1093
1093
|
title: string;
|
|
1094
1094
|
score: number;
|
|
1095
|
-
docsUrl?:
|
|
1095
|
+
docsUrl?: unknown;
|
|
1096
1096
|
}[];
|
|
1097
1097
|
}>;
|
|
1098
1098
|
audits: z.ZodObject<{
|
|
1099
1099
|
changed: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1100
1100
|
slug: z.ZodString;
|
|
1101
1101
|
title: z.ZodString;
|
|
1102
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1102
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1103
1103
|
}, {
|
|
1104
1104
|
scores: z.ZodObject<z.objectUtil.extendShape<{
|
|
1105
1105
|
before: z.ZodNumber;
|
|
@@ -1118,7 +1118,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1118
1118
|
}>, z.objectUtil.extendShape<{
|
|
1119
1119
|
slug: z.ZodString;
|
|
1120
1120
|
title: z.ZodString;
|
|
1121
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1121
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1122
1122
|
}, {
|
|
1123
1123
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1124
1124
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -1126,7 +1126,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1126
1126
|
}, {
|
|
1127
1127
|
title: z.ZodString;
|
|
1128
1128
|
description: z.ZodOptional<z.ZodString>;
|
|
1129
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1129
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1130
1130
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
1131
1131
|
}>, {
|
|
1132
1132
|
slug: z.ZodString;
|
|
@@ -1138,7 +1138,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1138
1138
|
}, {
|
|
1139
1139
|
slug: string;
|
|
1140
1140
|
title: string;
|
|
1141
|
-
docsUrl?:
|
|
1141
|
+
docsUrl?: unknown;
|
|
1142
1142
|
}>;
|
|
1143
1143
|
}>>, {
|
|
1144
1144
|
values: z.ZodObject<z.objectUtil.extendShape<{
|
|
@@ -1198,7 +1198,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1198
1198
|
plugin: {
|
|
1199
1199
|
slug: string;
|
|
1200
1200
|
title: string;
|
|
1201
|
-
docsUrl?:
|
|
1201
|
+
docsUrl?: unknown;
|
|
1202
1202
|
};
|
|
1203
1203
|
title: string;
|
|
1204
1204
|
scores: {
|
|
@@ -1210,12 +1210,12 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1210
1210
|
before?: string | undefined;
|
|
1211
1211
|
after?: string | undefined;
|
|
1212
1212
|
};
|
|
1213
|
-
docsUrl?:
|
|
1213
|
+
docsUrl?: unknown;
|
|
1214
1214
|
}>, "many">;
|
|
1215
1215
|
unchanged: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1216
1216
|
slug: z.ZodString;
|
|
1217
1217
|
title: z.ZodString;
|
|
1218
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1218
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1219
1219
|
}, {
|
|
1220
1220
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1221
1221
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -1223,7 +1223,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1223
1223
|
}, {
|
|
1224
1224
|
title: z.ZodString;
|
|
1225
1225
|
description: z.ZodOptional<z.ZodString>;
|
|
1226
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1226
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1227
1227
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
1228
1228
|
}>, {
|
|
1229
1229
|
slug: z.ZodString;
|
|
@@ -1235,7 +1235,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1235
1235
|
}, {
|
|
1236
1236
|
slug: string;
|
|
1237
1237
|
title: string;
|
|
1238
|
-
docsUrl?:
|
|
1238
|
+
docsUrl?: unknown;
|
|
1239
1239
|
}>;
|
|
1240
1240
|
}>, Pick<{
|
|
1241
1241
|
slug: z.ZodString;
|
|
@@ -1426,17 +1426,17 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1426
1426
|
plugin: {
|
|
1427
1427
|
slug: string;
|
|
1428
1428
|
title: string;
|
|
1429
|
-
docsUrl?:
|
|
1429
|
+
docsUrl?: unknown;
|
|
1430
1430
|
};
|
|
1431
1431
|
title: string;
|
|
1432
1432
|
score: number;
|
|
1433
|
-
docsUrl?:
|
|
1433
|
+
docsUrl?: unknown;
|
|
1434
1434
|
displayValue?: string | undefined;
|
|
1435
1435
|
}>, "many">;
|
|
1436
1436
|
added: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1437
1437
|
slug: z.ZodString;
|
|
1438
1438
|
title: z.ZodString;
|
|
1439
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1439
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1440
1440
|
}, {
|
|
1441
1441
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1442
1442
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -1444,7 +1444,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1444
1444
|
}, {
|
|
1445
1445
|
title: z.ZodString;
|
|
1446
1446
|
description: z.ZodOptional<z.ZodString>;
|
|
1447
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1447
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1448
1448
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
1449
1449
|
}>, {
|
|
1450
1450
|
slug: z.ZodString;
|
|
@@ -1456,7 +1456,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1456
1456
|
}, {
|
|
1457
1457
|
slug: string;
|
|
1458
1458
|
title: string;
|
|
1459
|
-
docsUrl?:
|
|
1459
|
+
docsUrl?: unknown;
|
|
1460
1460
|
}>;
|
|
1461
1461
|
}>, Pick<{
|
|
1462
1462
|
slug: z.ZodString;
|
|
@@ -1647,17 +1647,17 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1647
1647
|
plugin: {
|
|
1648
1648
|
slug: string;
|
|
1649
1649
|
title: string;
|
|
1650
|
-
docsUrl?:
|
|
1650
|
+
docsUrl?: unknown;
|
|
1651
1651
|
};
|
|
1652
1652
|
title: string;
|
|
1653
1653
|
score: number;
|
|
1654
|
-
docsUrl?:
|
|
1654
|
+
docsUrl?: unknown;
|
|
1655
1655
|
displayValue?: string | undefined;
|
|
1656
1656
|
}>, "many">;
|
|
1657
1657
|
removed: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1658
1658
|
slug: z.ZodString;
|
|
1659
1659
|
title: z.ZodString;
|
|
1660
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1660
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1661
1661
|
}, {
|
|
1662
1662
|
plugin: z.ZodObject<Pick<z.objectUtil.extendShape<z.objectUtil.extendShape<{
|
|
1663
1663
|
packageName: z.ZodString | z.ZodOptional<z.ZodString>;
|
|
@@ -1665,7 +1665,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1665
1665
|
}, {
|
|
1666
1666
|
title: z.ZodString;
|
|
1667
1667
|
description: z.ZodOptional<z.ZodString>;
|
|
1668
|
-
docsUrl: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]
|
|
1668
|
+
docsUrl: z.ZodCatch<z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>>;
|
|
1669
1669
|
isSkipped: z.ZodOptional<z.ZodBoolean>;
|
|
1670
1670
|
}>, {
|
|
1671
1671
|
slug: z.ZodString;
|
|
@@ -1677,7 +1677,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1677
1677
|
}, {
|
|
1678
1678
|
slug: string;
|
|
1679
1679
|
title: string;
|
|
1680
|
-
docsUrl?:
|
|
1680
|
+
docsUrl?: unknown;
|
|
1681
1681
|
}>;
|
|
1682
1682
|
}>, Pick<{
|
|
1683
1683
|
slug: z.ZodString;
|
|
@@ -1868,11 +1868,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1868
1868
|
plugin: {
|
|
1869
1869
|
slug: string;
|
|
1870
1870
|
title: string;
|
|
1871
|
-
docsUrl?:
|
|
1871
|
+
docsUrl?: unknown;
|
|
1872
1872
|
};
|
|
1873
1873
|
title: string;
|
|
1874
1874
|
score: number;
|
|
1875
|
-
docsUrl?:
|
|
1875
|
+
docsUrl?: unknown;
|
|
1876
1876
|
displayValue?: string | undefined;
|
|
1877
1877
|
}>, "many">;
|
|
1878
1878
|
}, "strip", ZodTypeAny, {
|
|
@@ -1950,7 +1950,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1950
1950
|
plugin: {
|
|
1951
1951
|
slug: string;
|
|
1952
1952
|
title: string;
|
|
1953
|
-
docsUrl?:
|
|
1953
|
+
docsUrl?: unknown;
|
|
1954
1954
|
};
|
|
1955
1955
|
title: string;
|
|
1956
1956
|
scores: {
|
|
@@ -1962,7 +1962,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1962
1962
|
before?: string | undefined;
|
|
1963
1963
|
after?: string | undefined;
|
|
1964
1964
|
};
|
|
1965
|
-
docsUrl?:
|
|
1965
|
+
docsUrl?: unknown;
|
|
1966
1966
|
}[];
|
|
1967
1967
|
unchanged: {
|
|
1968
1968
|
slug: string;
|
|
@@ -1970,11 +1970,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1970
1970
|
plugin: {
|
|
1971
1971
|
slug: string;
|
|
1972
1972
|
title: string;
|
|
1973
|
-
docsUrl?:
|
|
1973
|
+
docsUrl?: unknown;
|
|
1974
1974
|
};
|
|
1975
1975
|
title: string;
|
|
1976
1976
|
score: number;
|
|
1977
|
-
docsUrl?:
|
|
1977
|
+
docsUrl?: unknown;
|
|
1978
1978
|
displayValue?: string | undefined;
|
|
1979
1979
|
}[];
|
|
1980
1980
|
added: {
|
|
@@ -1983,11 +1983,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1983
1983
|
plugin: {
|
|
1984
1984
|
slug: string;
|
|
1985
1985
|
title: string;
|
|
1986
|
-
docsUrl?:
|
|
1986
|
+
docsUrl?: unknown;
|
|
1987
1987
|
};
|
|
1988
1988
|
title: string;
|
|
1989
1989
|
score: number;
|
|
1990
|
-
docsUrl?:
|
|
1990
|
+
docsUrl?: unknown;
|
|
1991
1991
|
displayValue?: string | undefined;
|
|
1992
1992
|
}[];
|
|
1993
1993
|
removed: {
|
|
@@ -1996,11 +1996,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
1996
1996
|
plugin: {
|
|
1997
1997
|
slug: string;
|
|
1998
1998
|
title: string;
|
|
1999
|
-
docsUrl?:
|
|
1999
|
+
docsUrl?: unknown;
|
|
2000
2000
|
};
|
|
2001
2001
|
title: string;
|
|
2002
2002
|
score: number;
|
|
2003
|
-
docsUrl?:
|
|
2003
|
+
docsUrl?: unknown;
|
|
2004
2004
|
displayValue?: string | undefined;
|
|
2005
2005
|
}[];
|
|
2006
2006
|
}>;
|
|
@@ -2191,7 +2191,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
2191
2191
|
plugin: {
|
|
2192
2192
|
slug: string;
|
|
2193
2193
|
title: string;
|
|
2194
|
-
docsUrl?:
|
|
2194
|
+
docsUrl?: unknown;
|
|
2195
2195
|
};
|
|
2196
2196
|
title: string;
|
|
2197
2197
|
scores: {
|
|
@@ -2203,7 +2203,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
2203
2203
|
before?: string | undefined;
|
|
2204
2204
|
after?: string | undefined;
|
|
2205
2205
|
};
|
|
2206
|
-
docsUrl?:
|
|
2206
|
+
docsUrl?: unknown;
|
|
2207
2207
|
}[];
|
|
2208
2208
|
unchanged: {
|
|
2209
2209
|
slug: string;
|
|
@@ -2211,11 +2211,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
2211
2211
|
plugin: {
|
|
2212
2212
|
slug: string;
|
|
2213
2213
|
title: string;
|
|
2214
|
-
docsUrl?:
|
|
2214
|
+
docsUrl?: unknown;
|
|
2215
2215
|
};
|
|
2216
2216
|
title: string;
|
|
2217
2217
|
score: number;
|
|
2218
|
-
docsUrl?:
|
|
2218
|
+
docsUrl?: unknown;
|
|
2219
2219
|
displayValue?: string | undefined;
|
|
2220
2220
|
}[];
|
|
2221
2221
|
added: {
|
|
@@ -2224,11 +2224,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
2224
2224
|
plugin: {
|
|
2225
2225
|
slug: string;
|
|
2226
2226
|
title: string;
|
|
2227
|
-
docsUrl?:
|
|
2227
|
+
docsUrl?: unknown;
|
|
2228
2228
|
};
|
|
2229
2229
|
title: string;
|
|
2230
2230
|
score: number;
|
|
2231
|
-
docsUrl?:
|
|
2231
|
+
docsUrl?: unknown;
|
|
2232
2232
|
displayValue?: string | undefined;
|
|
2233
2233
|
}[];
|
|
2234
2234
|
removed: {
|
|
@@ -2237,11 +2237,11 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
2237
2237
|
plugin: {
|
|
2238
2238
|
slug: string;
|
|
2239
2239
|
title: string;
|
|
2240
|
-
docsUrl?:
|
|
2240
|
+
docsUrl?: unknown;
|
|
2241
2241
|
};
|
|
2242
2242
|
title: string;
|
|
2243
2243
|
score: number;
|
|
2244
|
-
docsUrl?:
|
|
2244
|
+
docsUrl?: unknown;
|
|
2245
2245
|
displayValue?: string | undefined;
|
|
2246
2246
|
}[];
|
|
2247
2247
|
};
|
|
@@ -2251,7 +2251,7 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
2251
2251
|
plugin: {
|
|
2252
2252
|
slug: string;
|
|
2253
2253
|
title: string;
|
|
2254
|
-
docsUrl?:
|
|
2254
|
+
docsUrl?: unknown;
|
|
2255
2255
|
};
|
|
2256
2256
|
title: string;
|
|
2257
2257
|
scores: {
|
|
@@ -2259,40 +2259,40 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
2259
2259
|
before: number;
|
|
2260
2260
|
after: number;
|
|
2261
2261
|
};
|
|
2262
|
-
docsUrl?:
|
|
2262
|
+
docsUrl?: unknown;
|
|
2263
2263
|
}[];
|
|
2264
2264
|
unchanged: {
|
|
2265
2265
|
slug: string;
|
|
2266
2266
|
plugin: {
|
|
2267
2267
|
slug: string;
|
|
2268
2268
|
title: string;
|
|
2269
|
-
docsUrl?:
|
|
2269
|
+
docsUrl?: unknown;
|
|
2270
2270
|
};
|
|
2271
2271
|
title: string;
|
|
2272
2272
|
score: number;
|
|
2273
|
-
docsUrl?:
|
|
2273
|
+
docsUrl?: unknown;
|
|
2274
2274
|
}[];
|
|
2275
2275
|
added: {
|
|
2276
2276
|
slug: string;
|
|
2277
2277
|
plugin: {
|
|
2278
2278
|
slug: string;
|
|
2279
2279
|
title: string;
|
|
2280
|
-
docsUrl?:
|
|
2280
|
+
docsUrl?: unknown;
|
|
2281
2281
|
};
|
|
2282
2282
|
title: string;
|
|
2283
2283
|
score: number;
|
|
2284
|
-
docsUrl?:
|
|
2284
|
+
docsUrl?: unknown;
|
|
2285
2285
|
}[];
|
|
2286
2286
|
removed: {
|
|
2287
2287
|
slug: string;
|
|
2288
2288
|
plugin: {
|
|
2289
2289
|
slug: string;
|
|
2290
2290
|
title: string;
|
|
2291
|
-
docsUrl?:
|
|
2291
|
+
docsUrl?: unknown;
|
|
2292
2292
|
};
|
|
2293
2293
|
title: string;
|
|
2294
2294
|
score: number;
|
|
2295
|
-
docsUrl?:
|
|
2295
|
+
docsUrl?: unknown;
|
|
2296
2296
|
}[];
|
|
2297
2297
|
};
|
|
2298
2298
|
duration: number;
|
|
@@ -2305,25 +2305,25 @@ export declare const reportsDiffSchema: z.ZodObject<z.objectUtil.extendShape<z.o
|
|
|
2305
2305
|
before: number;
|
|
2306
2306
|
after: number;
|
|
2307
2307
|
};
|
|
2308
|
-
docsUrl?:
|
|
2308
|
+
docsUrl?: unknown;
|
|
2309
2309
|
}[];
|
|
2310
2310
|
unchanged: {
|
|
2311
2311
|
slug: string;
|
|
2312
2312
|
title: string;
|
|
2313
2313
|
score: number;
|
|
2314
|
-
docsUrl?:
|
|
2314
|
+
docsUrl?: unknown;
|
|
2315
2315
|
}[];
|
|
2316
2316
|
added: {
|
|
2317
2317
|
slug: string;
|
|
2318
2318
|
title: string;
|
|
2319
2319
|
score: number;
|
|
2320
|
-
docsUrl?:
|
|
2320
|
+
docsUrl?: unknown;
|
|
2321
2321
|
}[];
|
|
2322
2322
|
removed: {
|
|
2323
2323
|
slug: string;
|
|
2324
2324
|
title: string;
|
|
2325
2325
|
score: number;
|
|
2326
|
-
docsUrl?:
|
|
2326
|
+
docsUrl?: unknown;
|
|
2327
2327
|
}[];
|
|
2328
2328
|
};
|
|
2329
2329
|
commits: {
|