@wix/auto_sdk_automations_automations-v-2 1.0.21 → 1.0.22

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.
@@ -356,7 +356,7 @@ interface DelayAction {
356
356
  /**
357
357
  * Time to wait before running the action. The wait time starts from when the current action completes.
358
358
  *
359
- * > **Note**: To define the wait time from a specific moment in time, use `dueDateEpochExpression`.
359
+ * > **Note**: To define the wait time from a specific moment in time, use `dueDateEpochExpression` or `dueDateExpression`.
360
360
  * @maxLength 1000
361
361
  */
362
362
  offsetExpression?: string | null;
@@ -367,8 +367,21 @@ interface DelayAction {
367
367
  *
368
368
  * > **Note**: If an `offsetExpression` is defined, the delay is calculated from the time of the offset.
369
369
  * @maxLength 1000
370
+ * @deprecated Action run date in milliseconds elapsed since January 1, 1970 UTC.
371
+ *
372
+ * > **Note**: If an `offsetExpression` is defined, the delay is calculated from the time of the offset.
373
+ * @replacedBy due_date_expression
374
+ * @targetRemovalDate 2026-02-01
370
375
  */
371
376
  dueDateEpochExpression?: string | null;
377
+ /**
378
+ * Action run date as a timestamp/datetime string expression using bracket language.
379
+ * The expression will be converted to JSONata and should evaluate to a timestamp/datetime format.
380
+ *
381
+ * > **Note**: If an `offsetExpression` is defined, the delay is calculated from the time of the offset.
382
+ * @maxLength 1000
383
+ */
384
+ dueDateExpression?: string | null;
372
385
  /**
373
386
  * IDs of actions to run in parallel after the time delay.
374
387
  * @maxSize 20