@ampsec/platform-client 48.2.0 → 48.3.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.
|
@@ -45,8 +45,8 @@ export type CreateNotificationDto = BaseUpsertDto & {
|
|
|
45
45
|
uid?: string;
|
|
46
46
|
/** The finding id this notification is in regards to */
|
|
47
47
|
fid?: string;
|
|
48
|
-
/** ID of the
|
|
49
|
-
|
|
48
|
+
/** ID of the agent from which the notification was sent */
|
|
49
|
+
faid?: string | null;
|
|
50
50
|
};
|
|
51
51
|
export type FindingNotificationContext = {
|
|
52
52
|
/** Severity of the finding */
|
|
@@ -150,7 +150,7 @@ export type NotificationUpsertDto = BaseUpsertDto & {
|
|
|
150
150
|
fid?: string | null;
|
|
151
151
|
/** ID of the user to which the notification is being sent */
|
|
152
152
|
uid?: string | null;
|
|
153
|
-
/** ID of the
|
|
154
|
-
|
|
153
|
+
/** ID of the agent from which the notification was sent */
|
|
154
|
+
faid?: string | null;
|
|
155
155
|
};
|
|
156
156
|
export type NotificationDto = NotificationUpsertDto & BaseDto;
|
package/package.json
CHANGED
|
@@ -52,8 +52,8 @@ export type CreateNotificationDto = BaseUpsertDto & {
|
|
|
52
52
|
uid?: string;
|
|
53
53
|
/** The finding id this notification is in regards to */
|
|
54
54
|
fid?: string;
|
|
55
|
-
/** ID of the
|
|
56
|
-
|
|
55
|
+
/** ID of the agent from which the notification was sent */
|
|
56
|
+
faid?: string | null;
|
|
57
57
|
};
|
|
58
58
|
|
|
59
59
|
export type FindingNotificationContext = {
|
|
@@ -167,8 +167,8 @@ export type NotificationUpsertDto = BaseUpsertDto & {
|
|
|
167
167
|
fid?: string | null;
|
|
168
168
|
/** ID of the user to which the notification is being sent */
|
|
169
169
|
uid?: string | null;
|
|
170
|
-
/** ID of the
|
|
171
|
-
|
|
170
|
+
/** ID of the agent from which the notification was sent */
|
|
171
|
+
faid?: string | null;
|
|
172
172
|
};
|
|
173
173
|
|
|
174
174
|
export type NotificationDto = NotificationUpsertDto & BaseDto;
|