@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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -193,7 +193,7 @@ interface FutureDateActivationOffset {
|
|
|
193
193
|
/**
|
|
194
194
|
* Amount of time before the trigger to run the automation.
|
|
195
195
|
*
|
|
196
|
-
* > **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/
|
|
196
|
+
* > **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).
|
|
197
197
|
* @maxLength 1000
|
|
198
198
|
*/
|
|
199
199
|
preScheduledEventOffsetExpression?: string;
|
|
@@ -246,7 +246,7 @@ type OperatorWithLiterals = Operator | 'UNKNOWN_OPERATOR' | 'OR' | 'AND';
|
|
|
246
246
|
declare enum Type {
|
|
247
247
|
/** Based on the trigger. */
|
|
248
248
|
UNKNOWN_ACTION_TYPE = "UNKNOWN_ACTION_TYPE",
|
|
249
|
-
/** Defined by a [Wix app](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/
|
|
249
|
+
/** 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. */
|
|
250
250
|
APP_DEFINED = "APP_DEFINED",
|
|
251
251
|
/** Condition. This determines which action runs next. */
|
|
252
252
|
CONDITION = "CONDITION",
|
|
@@ -386,7 +386,7 @@ interface Trigger {
|
|
|
386
386
|
/**
|
|
387
387
|
* Schema field filters. All filter conditions must be met for the automation to run.
|
|
388
388
|
*
|
|
389
|
-
* Learn more about setting up [automation filters](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/
|
|
389
|
+
* Learn more about setting up [automation filters](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/configure-your-automation#filters).
|
|
390
390
|
* @maxSize 5
|
|
391
391
|
*/
|
|
392
392
|
filters?: Filter[];
|
|
@@ -419,10 +419,10 @@ interface Action extends ActionInfoOneOf {
|
|
|
419
419
|
* @format GUID
|
|
420
420
|
*/
|
|
421
421
|
id?: string | null;
|
|
422
|
-
/** [Action type](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/
|
|
422
|
+
/** [Action type](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/configure-your-automation#action-type). */
|
|
423
423
|
type?: TypeWithLiterals;
|
|
424
424
|
/**
|
|
425
|
-
* [Action namespace](https://dev.wix.com/docs/rest/business-management/automations/automations/automations-v2/
|
|
425
|
+
* [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.
|
|
426
426
|
*
|
|
427
427
|
* 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.
|
|
428
428
|
* @minLength 1
|