@wix/auto_sdk_automations_automations-v-2 1.0.52 → 1.0.53
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.d.ts +11 -11
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +32 -20
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +14 -2
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +11 -11
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +32 -20
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +14 -2
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +11 -11
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +32 -20
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +14 -2
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +11 -11
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +32 -20
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +14 -2
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -98,6 +98,18 @@ interface ActionSettings {
|
|
|
98
98
|
* @format GUID
|
|
99
99
|
*/
|
|
100
100
|
readonlyActionIds?: string[];
|
|
101
|
+
/**
|
|
102
|
+
* Whether to disable the ability to add a delay to the automation.
|
|
103
|
+
*
|
|
104
|
+
* Default: `false`.
|
|
105
|
+
*/
|
|
106
|
+
disableDelayAddition?: boolean;
|
|
107
|
+
/**
|
|
108
|
+
* Whether to disable the ability to add a condition to the automation.
|
|
109
|
+
*
|
|
110
|
+
* Default: `false`.
|
|
111
|
+
*/
|
|
112
|
+
disableConditionAddition?: boolean;
|
|
101
113
|
}
|
|
102
114
|
declare enum Domain {
|
|
103
115
|
/** User domain (default). */
|
|
@@ -109,6 +121,8 @@ declare enum Domain {
|
|
|
109
121
|
}
|
|
110
122
|
/** @enumType */
|
|
111
123
|
type DomainWithLiterals = Domain | 'USER' | 'WIX' | 'WIX_ACCOUNT';
|
|
124
|
+
interface TriggerSettings {
|
|
125
|
+
}
|
|
112
126
|
interface Enrichment {
|
|
113
127
|
/**
|
|
114
128
|
* Enrichment input mappings.
|
|
@@ -859,8 +873,6 @@ declare enum WebhookIdentityType {
|
|
|
859
873
|
}
|
|
860
874
|
/** @enumType */
|
|
861
875
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
862
|
-
interface TriggerSettings {
|
|
863
|
-
}
|
|
864
876
|
interface CreateAutomationRequest {
|
|
865
877
|
/** Automation to create. */
|
|
866
878
|
automation: Automation;
|