@trustify-da/trustify-da-api-model 2.0.8 → 2.0.9

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/README.md CHANGED
@@ -20,7 +20,7 @@ The packages are published to the GitHub maven repository. Make sure to add it t
20
20
  <dependency>
21
21
  <groupId>io.github.guacsec</groupId>
22
22
  <artifactId>trustify-da-api-model</artifactId>
23
- <version>2.0.8</version>
23
+ <version>2.0.9</version>
24
24
  </dependency>
25
25
  ```
26
26
 
@@ -29,5 +29,5 @@ The packages are published to the GitHub maven repository. Make sure to add it t
29
29
  Add it to your project as follows:
30
30
 
31
31
  ```bash
32
- npm install @guacsec/trustify-da-api-model@2.0.8
32
+ npm install @guacsec/trustify-da-api-model@2.0.9
33
33
  ```
@@ -1 +1 @@
1
- 111e7082a8b5da1aeae0a3e2c5c5ce60018039ffd2baeda568f63b35ee2a004a
1
+ c8db4d282bd24f5098ee25d25e830663bb032b2f3c7fdff9cf83050ae70f1016
@@ -15,5 +15,6 @@ export enum Severity {
15
15
  Critical = 'CRITICAL',
16
16
  High = 'HIGH',
17
17
  Medium = 'MEDIUM',
18
- Low = 'LOW'
18
+ Low = 'LOW',
19
+ Unknown = 'UNKNOWN'
19
20
  }
@@ -20,6 +20,7 @@ export class SourceSummary {
20
20
  'high'?: number;
21
21
  'medium'?: number;
22
22
  'low'?: number;
23
+ 'unknown'?: number;
23
24
  'remediations'?: number;
24
25
  /**
25
26
  * Deprecated: Use provider-level recommendations map in ProviderReport instead.
@@ -78,6 +79,12 @@ export class SourceSummary {
78
79
  "type": "number",
79
80
  "format": ""
80
81
  },
82
+ {
83
+ "name": "unknown",
84
+ "baseName": "unknown",
85
+ "type": "number",
86
+ "format": ""
87
+ },
81
88
  {
82
89
  "name": "remediations",
83
90
  "baseName": "remediations",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trustify-da/trustify-da-api-model",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "Trustify :: Dependency Analytics :: API",
5
5
  "author": "Trustify Dependency Analytics Authors",
6
6
  "type": "commonjs",