@wix/automations 1.0.70 → 1.0.71
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/package.json +5 -5
- package/type-bundles/context.bundle.d.ts +387 -365
- package/type-bundles/index.bundle.d.ts +387 -365
- package/type-bundles/meta.bundle.d.ts +20 -0
|
@@ -2147,6 +2147,8 @@ interface Automation$1 extends AutomationOriginInfoOneOf$1 {
|
|
|
2147
2147
|
draftInfo?: DraftInfo$1;
|
|
2148
2148
|
/** Namespace */
|
|
2149
2149
|
namespace?: string | null;
|
|
2150
|
+
/** Enrichments in use */
|
|
2151
|
+
enrichments?: Enrichments$1;
|
|
2150
2152
|
}
|
|
2151
2153
|
/** @oneof */
|
|
2152
2154
|
interface AutomationOriginInfoOneOf$1 {
|
|
@@ -2155,6 +2157,10 @@ interface AutomationOriginInfoOneOf$1 {
|
|
|
2155
2157
|
/** Preinstalled info */
|
|
2156
2158
|
preinstalledInfo?: PreinstalledOrigin$1;
|
|
2157
2159
|
}
|
|
2160
|
+
interface Enrichment$1 {
|
|
2161
|
+
/** Enrichment input mappings. */
|
|
2162
|
+
inputMappings?: Record<string, any>[] | null;
|
|
2163
|
+
}
|
|
2158
2164
|
interface ActionSettings$1 {
|
|
2159
2165
|
/**
|
|
2160
2166
|
* List of actions that cannot be deleted.
|
|
@@ -2440,6 +2446,10 @@ interface DraftInfo$1 {
|
|
|
2440
2446
|
*/
|
|
2441
2447
|
originalAutomationId?: string | null;
|
|
2442
2448
|
}
|
|
2449
|
+
interface Enrichments$1 {
|
|
2450
|
+
/** Whether the studio site enrichment is wanted. */
|
|
2451
|
+
studioSite?: Enrichment$1;
|
|
2452
|
+
}
|
|
2443
2453
|
interface CreateAutomationRequest$1 {
|
|
2444
2454
|
/** Automation to be created. */
|
|
2445
2455
|
automation: Automation$1;
|
|
@@ -3306,6 +3316,8 @@ interface Automation extends AutomationOriginInfoOneOf {
|
|
|
3306
3316
|
draftInfo?: DraftInfo;
|
|
3307
3317
|
/** Namespace */
|
|
3308
3318
|
namespace?: string | null;
|
|
3319
|
+
/** Enrichments in use */
|
|
3320
|
+
enrichments?: Enrichments;
|
|
3309
3321
|
}
|
|
3310
3322
|
/** @oneof */
|
|
3311
3323
|
interface AutomationOriginInfoOneOf {
|
|
@@ -3314,6 +3326,10 @@ interface AutomationOriginInfoOneOf {
|
|
|
3314
3326
|
/** Preinstalled info */
|
|
3315
3327
|
preinstalledInfo?: PreinstalledOrigin;
|
|
3316
3328
|
}
|
|
3329
|
+
interface Enrichment {
|
|
3330
|
+
/** Enrichment input mappings. */
|
|
3331
|
+
inputMappings?: Record<string, any>[] | null;
|
|
3332
|
+
}
|
|
3317
3333
|
interface ActionSettings {
|
|
3318
3334
|
/**
|
|
3319
3335
|
* List of actions that cannot be deleted.
|
|
@@ -3599,6 +3615,10 @@ interface DraftInfo {
|
|
|
3599
3615
|
*/
|
|
3600
3616
|
originalAutomationId?: string | null;
|
|
3601
3617
|
}
|
|
3618
|
+
interface Enrichments {
|
|
3619
|
+
/** Whether the studio site enrichment is wanted. */
|
|
3620
|
+
studioSite?: Enrichment;
|
|
3621
|
+
}
|
|
3602
3622
|
interface CreateAutomationRequest {
|
|
3603
3623
|
/** Automation to be created. */
|
|
3604
3624
|
automation: Automation;
|