mobbdev 1.0.152 → 1.0.153
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +7 -13
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5210,20 +5210,14 @@ var GetReportFixesQueryZ = z11.object({
|
|
|
5210
5210
|
)
|
|
5211
5211
|
}).nullish();
|
|
5212
5212
|
var GetFixReportStatsQueryZ = z11.object({
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
vulnerabilityReportIrrelevantIssuesCount: z11.object({
|
|
5220
|
-
vulnerabilityReportIssues_aggregate: z11.object({
|
|
5221
|
-
aggregate: z11.object({ count: z11.number() })
|
|
5222
|
-
})
|
|
5223
|
-
})
|
|
5224
|
-
})
|
|
5213
|
+
fixReport_by_pk: z11.object({
|
|
5214
|
+
id: z11.string().uuid(),
|
|
5215
|
+
vulnerabilitySeverities: z11.record(z11.nativeEnum(Vulnerability_Severity_Enum), z11.number()).nullable(),
|
|
5216
|
+
vulnerabilityReportIrrelevantIssuesCount: z11.object({
|
|
5217
|
+
vulnerabilityReportIssues_aggregate: z11.object({
|
|
5218
|
+
aggregate: z11.object({ count: z11.number() })
|
|
5225
5219
|
})
|
|
5226
|
-
)
|
|
5220
|
+
})
|
|
5227
5221
|
}).nullable()
|
|
5228
5222
|
});
|
|
5229
5223
|
var ProjectVulnerabilityReport = z11.object({
|