@wix/auto_sdk_automations_automations-v-2 1.0.29 → 1.0.30
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 +8 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +7 -7
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +8 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +7 -7
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +8 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +7 -7
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +8 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +7 -7
- package/package.json +2 -2
|
@@ -304,7 +304,7 @@ interface AppDefinedAction {
|
|
|
304
304
|
skipConditionOrExpressionGroups?: ConditionExpressionGroup[];
|
|
305
305
|
/**
|
|
306
306
|
* IDs of actions that run in parallel after the action completes.
|
|
307
|
-
* @maxSize
|
|
307
|
+
* @maxSize 1
|
|
308
308
|
* @format GUID
|
|
309
309
|
*/
|
|
310
310
|
postActionIds?: string[];
|
|
@@ -320,13 +320,13 @@ interface ConditionAction {
|
|
|
320
320
|
orExpressionGroups?: ConditionExpressionGroup[];
|
|
321
321
|
/**
|
|
322
322
|
* IDs of actions to run when the condition evaluates to `true`.
|
|
323
|
-
* @maxSize
|
|
323
|
+
* @maxSize 1
|
|
324
324
|
* @format GUID
|
|
325
325
|
*/
|
|
326
326
|
truePostActionIds?: string[];
|
|
327
327
|
/**
|
|
328
328
|
* IDs of actions to run when the condition evaluates to `false`.
|
|
329
|
-
* @maxSize
|
|
329
|
+
* @maxSize 1
|
|
330
330
|
* @format GUID
|
|
331
331
|
*/
|
|
332
332
|
falsePostActionIds?: string[];
|
|
@@ -336,13 +336,13 @@ interface CodeConditionAction {
|
|
|
336
336
|
snippet?: CodeSnippet;
|
|
337
337
|
/**
|
|
338
338
|
* IDs of actions to run when the condition evaluates to `true`.
|
|
339
|
-
* @maxSize
|
|
339
|
+
* @maxSize 1
|
|
340
340
|
* @format GUID
|
|
341
341
|
*/
|
|
342
342
|
truePostActionIds?: string[];
|
|
343
343
|
/**
|
|
344
344
|
* IDs of actions to run when the condition evaluates to `false`.
|
|
345
|
-
* @maxSize
|
|
345
|
+
* @maxSize 1
|
|
346
346
|
* @format GUID
|
|
347
347
|
*/
|
|
348
348
|
falsePostActionIds?: string[];
|
|
@@ -379,7 +379,7 @@ interface DelayAction {
|
|
|
379
379
|
dueDateExpression?: string | null;
|
|
380
380
|
/**
|
|
381
381
|
* IDs of actions to run in parallel after the time delay.
|
|
382
|
-
* @maxSize
|
|
382
|
+
* @maxSize 1
|
|
383
383
|
* @format GUID
|
|
384
384
|
*/
|
|
385
385
|
postActionIds?: string[];
|
|
@@ -407,7 +407,7 @@ interface RateLimitAction {
|
|
|
407
407
|
uniqueIdentifierExpression?: string | null;
|
|
408
408
|
/**
|
|
409
409
|
* IDs of actions to run in parallel after the action completes.
|
|
410
|
-
* @maxSize
|
|
410
|
+
* @maxSize 1
|
|
411
411
|
* @format GUID
|
|
412
412
|
*/
|
|
413
413
|
postActionIds?: string[];
|