mobbdev 1.0.128 → 1.0.132

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 +12 -5
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -4572,7 +4572,9 @@ var FixRatingZ = z7.object({
4572
4572
  })
4573
4573
  });
4574
4574
  var IssueSharedStateZ = z7.object({
4575
+ id: z7.string(),
4575
4576
  isArchived: z7.boolean(),
4577
+ ticketIntegrationId: z7.string().nullable(),
4576
4578
  ticketIntegrations: z7.array(
4577
4579
  z7.object({
4578
4580
  url: z7.string()
@@ -4629,6 +4631,7 @@ var FixPartsForFixScreenZ = FixQueryZ.merge(
4629
4631
  z7.object({
4630
4632
  vulnerabilityReportIssues: z7.array(
4631
4633
  z7.object({
4634
+ vendorIssueId: z7.string(),
4632
4635
  issueType: z7.string(),
4633
4636
  sharedState: IssueSharedStateZ
4634
4637
  })
@@ -4671,7 +4674,8 @@ var CATEGORY = {
4671
4674
  Irrelevant: "Irrelevant",
4672
4675
  FalsePositive: "FalsePositive",
4673
4676
  Fixable: "Fixable",
4674
- Filtered: "Filtered"
4677
+ Filtered: "Filtered",
4678
+ Pending: "Pending"
4675
4679
  };
4676
4680
  var ValidCategoriesZ = z9.union([
4677
4681
  z9.literal(CATEGORY.NoFix),
@@ -4679,7 +4683,8 @@ var ValidCategoriesZ = z9.union([
4679
4683
  z9.literal(CATEGORY.Irrelevant),
4680
4684
  z9.literal(CATEGORY.FalsePositive),
4681
4685
  z9.literal(CATEGORY.Fixable),
4682
- z9.literal(CATEGORY.Filtered)
4686
+ z9.literal(CATEGORY.Filtered),
4687
+ z9.literal(CATEGORY.Pending)
4683
4688
  ]);
4684
4689
  var VulnerabilityReportIssueSharedStateZ = z9.object({
4685
4690
  id: z9.string().uuid(),
@@ -4768,7 +4773,8 @@ var GeneralIssueZ = BaseIssuePartsZ.merge(
4768
4773
  z9.literal(CATEGORY.NoFix),
4769
4774
  z9.literal(CATEGORY.Unsupported),
4770
4775
  z9.literal(CATEGORY.Fixable),
4771
- z9.literal(CATEGORY.Filtered)
4776
+ z9.literal(CATEGORY.Filtered),
4777
+ z9.literal(CATEGORY.Pending)
4772
4778
  ])
4773
4779
  })
4774
4780
  );
@@ -4799,7 +4805,8 @@ var mapCategoryToBucket = {
4799
4805
  NoFix: "remaining",
4800
4806
  Unsupported: "remaining",
4801
4807
  Fixable: "fixable",
4802
- Filtered: "remaining"
4808
+ Filtered: "irrelevant",
4809
+ Pending: "remaining"
4803
4810
  };
4804
4811
 
4805
4812
  // src/features/analysis/scm/shared/src/types/types.ts
@@ -5134,7 +5141,7 @@ var ProjectVulnerabilityReport = z11.object({
5134
5141
  fixReport: z11.object({
5135
5142
  id: z11.string().uuid(),
5136
5143
  createdOn: z11.string(),
5137
- vulnerabilityReportIssuesFixedCount: z11.object({
5144
+ vulnerabilityReportIrrelevantIssuesCount: z11.object({
5138
5145
  vulnerabilityReportIssues_aggregate: z11.object({
5139
5146
  aggregate: z11.object({ count: z11.number() })
5140
5147
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.0.128",
3
+ "version": "1.0.132",
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",