@wix/auto_sdk_automations_automations-v-2 1.0.19 → 1.0.20
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.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +14 -1
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +14 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +14 -1
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +14 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +14 -1
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +14 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +14 -1
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +14 -1
- package/package.json +2 -2
package/build/cjs/meta.d.ts
CHANGED
|
@@ -313,7 +313,7 @@ interface DelayAction {
|
|
|
313
313
|
/**
|
|
314
314
|
* Time to wait before running the action. The wait time starts from when the current action completes.
|
|
315
315
|
*
|
|
316
|
-
* > **Note**: To define the wait time from a specific moment in time, use `dueDateEpochExpression`.
|
|
316
|
+
* > **Note**: To define the wait time from a specific moment in time, use `dueDateEpochExpression` or `dueDateExpression`.
|
|
317
317
|
* @maxLength 1000
|
|
318
318
|
*/
|
|
319
319
|
offsetExpression?: string | null;
|
|
@@ -324,8 +324,21 @@ interface DelayAction {
|
|
|
324
324
|
*
|
|
325
325
|
* > **Note**: If an `offsetExpression` is defined, the delay is calculated from the time of the offset.
|
|
326
326
|
* @maxLength 1000
|
|
327
|
+
* @deprecated Action run date in milliseconds elapsed since January 1, 1970 UTC.
|
|
328
|
+
*
|
|
329
|
+
* > **Note**: If an `offsetExpression` is defined, the delay is calculated from the time of the offset.
|
|
330
|
+
* @replacedBy due_date_expression
|
|
331
|
+
* @targetRemovalDate 2026-02-01
|
|
327
332
|
*/
|
|
328
333
|
dueDateEpochExpression?: string | null;
|
|
334
|
+
/**
|
|
335
|
+
* Action run date as a timestamp/datetime string expression using bracket language.
|
|
336
|
+
* The expression will be converted to JSONata and should evaluate to a timestamp/datetime format.
|
|
337
|
+
*
|
|
338
|
+
* > **Note**: If an `offsetExpression` is defined, the delay is calculated from the time of the offset.
|
|
339
|
+
* @maxLength 1000
|
|
340
|
+
*/
|
|
341
|
+
dueDateExpression?: string | null;
|
|
329
342
|
/**
|
|
330
343
|
* IDs of actions to run in parallel after the time delay.
|
|
331
344
|
* @maxSize 20
|