@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.
@@ -347,7 +347,7 @@ interface AppDefinedAction {
347
347
  skipConditionOrExpressionGroups?: ConditionExpressionGroup[];
348
348
  /**
349
349
  * IDs of actions that run in parallel after the action completes.
350
- * @maxSize 20
350
+ * @maxSize 1
351
351
  * @format GUID
352
352
  */
353
353
  postActionIds?: string[];
@@ -363,13 +363,13 @@ interface ConditionAction {
363
363
  orExpressionGroups?: ConditionExpressionGroup[];
364
364
  /**
365
365
  * IDs of actions to run when the condition evaluates to `true`.
366
- * @maxSize 20
366
+ * @maxSize 1
367
367
  * @format GUID
368
368
  */
369
369
  truePostActionIds?: string[];
370
370
  /**
371
371
  * IDs of actions to run when the condition evaluates to `false`.
372
- * @maxSize 20
372
+ * @maxSize 1
373
373
  * @format GUID
374
374
  */
375
375
  falsePostActionIds?: string[];
@@ -379,13 +379,13 @@ interface CodeConditionAction {
379
379
  snippet?: CodeSnippet;
380
380
  /**
381
381
  * IDs of actions to run when the condition evaluates to `true`.
382
- * @maxSize 20
382
+ * @maxSize 1
383
383
  * @format GUID
384
384
  */
385
385
  truePostActionIds?: string[];
386
386
  /**
387
387
  * IDs of actions to run when the condition evaluates to `false`.
388
- * @maxSize 20
388
+ * @maxSize 1
389
389
  * @format GUID
390
390
  */
391
391
  falsePostActionIds?: string[];
@@ -422,7 +422,7 @@ interface DelayAction {
422
422
  dueDateExpression?: string | null;
423
423
  /**
424
424
  * IDs of actions to run in parallel after the time delay.
425
- * @maxSize 20
425
+ * @maxSize 1
426
426
  * @format GUID
427
427
  */
428
428
  postActionIds?: string[];
@@ -450,7 +450,7 @@ interface RateLimitAction {
450
450
  uniqueIdentifierExpression?: string | null;
451
451
  /**
452
452
  * IDs of actions to run in parallel after the action completes.
453
- * @maxSize 20
453
+ * @maxSize 1
454
454
  * @format GUID
455
455
  */
456
456
  postActionIds?: string[];
@@ -466,7 +466,7 @@ interface SetVariablesAction {
466
466
  outputSchema?: Record<string, any> | null;
467
467
  /**
468
468
  * IDs of actions to run in parallel after variable initialization.
469
- * @maxSize 20
469
+ * @maxSize 1
470
470
  * @format GUID
471
471
  */
472
472
  postActionIds?: string[];