mobbdev 1.0.145 → 1.0.147

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 +11 -16
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -5240,23 +5240,18 @@ var ProjectVulnerabilityReport = z11.object({
5240
5240
  expirationOn: z11.string()
5241
5241
  })
5242
5242
  });
5243
- var ProjectGetProjectZ = z11.object({
5244
- id: z11.string().uuid(),
5245
- name: z11.string(),
5246
- vulnerabilityReports: z11.object({
5247
- vendor: z11.nativeEnum(Vulnerability_Report_Vendor_Enum).nullable(),
5248
- fixReport: z11.object({
5249
- issueLanguages: z11.record(z11.nativeEnum(IssueLanguage_Enum), z11.number()).nullable(),
5250
- state: z11.nativeEnum(Fix_Report_State_Enum),
5251
- repo: z11.object({
5252
- originalUrl: z11.string(),
5253
- reference: z11.string()
5254
- }),
5255
- expirationOn: z11.string()
5256
- })
5257
- }).array()
5243
+ var GetProjectsQueryZ = z11.object({
5244
+ organization: z11.object({
5245
+ id: z11.string(),
5246
+ projects: z11.array(
5247
+ z11.object({
5248
+ id: z11.string().uuid(),
5249
+ name: z11.string(),
5250
+ numberOfUniqueRepos: z11.number()
5251
+ })
5252
+ )
5253
+ })
5258
5254
  });
5259
- var GetProjectsQueryZ = z11.array(ProjectGetProjectZ);
5260
5255
  var ProjectPageQueryResultZ = z11.object({
5261
5256
  name: z11.string(),
5262
5257
  id: z11.string().uuid(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.0.145",
3
+ "version": "1.0.147",
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",