@wix/auto_sdk_automations_automations-v-2 1.0.13 → 1.0.14
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 +5 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +5 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +5 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +5 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +5 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +5 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +5 -5
- package/package.json +2 -2
|
@@ -209,7 +209,7 @@ interface FutureDateActivationOffset {
|
|
|
209
209
|
/**
|
|
210
210
|
* Amount of time before the trigger to run the automation.
|
|
211
211
|
*
|
|
212
|
-
* > **Note**: To delay an automation after the trigger event occurs, use a [delay action](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/
|
|
212
|
+
* > **Note**: To delay an automation after the trigger event occurs, use a [delay action](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/configure-your-automation#delay-action).
|
|
213
213
|
* @maxLength 1000
|
|
214
214
|
*/
|
|
215
215
|
preScheduledEventOffsetExpression?: string;
|
|
@@ -289,7 +289,7 @@ interface Path {
|
|
|
289
289
|
declare enum Type {
|
|
290
290
|
/** Based on the trigger. */
|
|
291
291
|
UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
|
|
292
|
-
/** Defined by a [Wix app](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/
|
|
292
|
+
/** Defined by a [Wix app](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/configure-your-automation#app-defined-action). This action type is available in the site dashboard. */
|
|
293
293
|
APP_DEFINED = "APP_DEFINED",
|
|
294
294
|
/** Condition. This determines which action runs next. */
|
|
295
295
|
CONDITION = "CONDITION",
|
|
@@ -457,7 +457,7 @@ interface Trigger {
|
|
|
457
457
|
/**
|
|
458
458
|
* Schema field filters. All filter conditions must be met for the automation to run.
|
|
459
459
|
*
|
|
460
|
-
* Learn more about setting up [automation filters](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/
|
|
460
|
+
* Learn more about setting up [automation filters](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/configure-your-automation#filters).
|
|
461
461
|
* @maxSize 5
|
|
462
462
|
*/
|
|
463
463
|
filters?: Filter[];
|
|
@@ -490,10 +490,10 @@ interface Action extends ActionInfoOneOf {
|
|
|
490
490
|
* @format GUID
|
|
491
491
|
*/
|
|
492
492
|
_id?: string | null;
|
|
493
|
-
/** [Action type](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/
|
|
493
|
+
/** [Action type](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/configure-your-automation#action-type). */
|
|
494
494
|
type?: TypeWithLiterals;
|
|
495
495
|
/**
|
|
496
|
-
* [Action namespace](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/
|
|
496
|
+
* [Action namespace](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/configure-your-automation#namespace). This differentiates it from other actions of the same type.
|
|
497
497
|
*
|
|
498
498
|
* If the action outputs any data, the data appears under the namespace in the payload sent to the subsequent steps in the automation. If the user has multiple actions with the same `appId` and `actionKey`, the output of the previous action is overwritten.
|
|
499
499
|
* @minLength 1
|