@ampsec/platform-client 15.0.0 → 15.1.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.
|
@@ -18,8 +18,10 @@ export type FindingUpsertDto = BaseUpsertDto & {
|
|
|
18
18
|
displayValue: string;
|
|
19
19
|
/** Description of the finding */
|
|
20
20
|
description?: string;
|
|
21
|
+
/** Id of the asset to which the finding applies */
|
|
22
|
+
aid?: string | undefined | null;
|
|
21
23
|
/** Id of the user to which the finding applies */
|
|
22
|
-
uid?: string | undefined;
|
|
24
|
+
uid?: string | undefined | null;
|
|
23
25
|
/** Id of the SaasComponent related to the given finding */
|
|
24
26
|
scid?: string | undefined | null;
|
|
25
27
|
/**
|
package/package.json
CHANGED
package/src/dto/findings.dto.ts
CHANGED
|
@@ -19,8 +19,10 @@ export type FindingUpsertDto = BaseUpsertDto & {
|
|
|
19
19
|
displayValue: string;
|
|
20
20
|
/** Description of the finding */
|
|
21
21
|
description?: string;
|
|
22
|
+
/** Id of the asset to which the finding applies */
|
|
23
|
+
aid?: string | undefined | null;
|
|
22
24
|
/** Id of the user to which the finding applies */
|
|
23
|
-
uid?: string | undefined;
|
|
25
|
+
uid?: string | undefined | null;
|
|
24
26
|
/** Id of the SaasComponent related to the given finding */
|
|
25
27
|
scid?: string | undefined | null;
|
|
26
28
|
/**
|