@ampsec/platform-client 12.2.0 → 13.0.0

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.
@@ -4,6 +4,8 @@ import { FindingStatus } from './enums/finding.status';
4
4
  export type FindingUpsertDto = BaseUpsertDto & {
5
5
  /** Date the finding was closed */
6
6
  closedAt?: string;
7
+ /** Category of finding */
8
+ category: string;
7
9
  /** Type of finding */
8
10
  kind: string;
9
11
  /** Status of the finding, e.g. OPEN */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampsec/platform-client",
3
- "version": "12.2.0",
3
+ "version": "13.0.0",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "runkitExampleFilename": "example/main.js",
@@ -5,6 +5,8 @@ import {FindingStatus} from './enums/finding.status';
5
5
  export type FindingUpsertDto = BaseUpsertDto & {
6
6
  /** Date the finding was closed */
7
7
  closedAt?: string;
8
+ /** Category of finding */
9
+ category: string;
8
10
  /** Type of finding */
9
11
  kind: string;
10
12
  /** Status of the finding, e.g. OPEN */