@ampsec/platform-client 25.3.0 → 25.4.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.
@@ -20,5 +20,7 @@ export type NotificationUpsertDto = {
20
20
  templateId: string;
21
21
  /** ID o fthe user to which the notification is being sent */
22
22
  uid: string;
23
+ /** Step number in the workflow for which the notification is being created */
24
+ stepNumber: number;
23
25
  };
24
26
  export type NotificationDto = NotificationUpsertDto & BaseDto;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ampsec/platform-client",
3
- "version": "25.3.0",
3
+ "version": "25.4.0",
4
4
  "description": "",
5
5
  "main": "build/src/index.js",
6
6
  "runkitExampleFilename": "example/main.js",
@@ -22,6 +22,8 @@ export type NotificationUpsertDto = {
22
22
  templateId: string;
23
23
  /** ID o fthe user to which the notification is being sent */
24
24
  uid: string;
25
+ /** Step number in the workflow for which the notification is being created */
26
+ stepNumber: number;
25
27
  };
26
28
 
27
29
  export type NotificationDto = NotificationUpsertDto & BaseDto;