@ampsec/platform-client 46.2.0 → 46.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.
|
@@ -121,9 +121,9 @@ export type EmailDeliveryStrategySpec = DeliveryStrategySpec & {
|
|
|
121
121
|
};
|
|
122
122
|
export type NotificationUpsertDto = BaseUpsertDto & {
|
|
123
123
|
/** Workflow ID for which the notification is being created */
|
|
124
|
-
wfid
|
|
124
|
+
wfid?: string | null;
|
|
125
125
|
/** Step number in the workflow for which the notification is being created */
|
|
126
|
-
stepNumber
|
|
126
|
+
stepNumber?: number | null;
|
|
127
127
|
/** Status of the notification */
|
|
128
128
|
status: NotificationStatus;
|
|
129
129
|
/** Data to be used for the notification */
|
package/package.json
CHANGED
|
@@ -136,9 +136,9 @@ export type EmailDeliveryStrategySpec = DeliveryStrategySpec & {
|
|
|
136
136
|
|
|
137
137
|
export type NotificationUpsertDto = BaseUpsertDto & {
|
|
138
138
|
/** Workflow ID for which the notification is being created */
|
|
139
|
-
wfid
|
|
139
|
+
wfid?: string | null;
|
|
140
140
|
/** Step number in the workflow for which the notification is being created */
|
|
141
|
-
stepNumber
|
|
141
|
+
stepNumber?: number | null;
|
|
142
142
|
/** Status of the notification */
|
|
143
143
|
status: NotificationStatus;
|
|
144
144
|
/** Data to be used for the notification */
|