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.
Files changed (2) hide show
  1. package/dist/index.mjs +7 -13
  2. 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
- project_by_pk: z11.object({
5214
- vulnerabilityReports: z11.array(
5215
- z11.object({
5216
- fixReport: z11.object({
5217
- id: z11.string().uuid(),
5218
- vulnerabilitySeverities: z11.record(z11.nativeEnum(Vulnerability_Severity_Enum), z11.number()).nullable(),
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({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.0.152",
3
+ "version": "1.0.153",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "git+https://github.com/mobb-dev/bugsy.git",
6
6
  "main": "dist/index.js",