@wix/auto_sdk_data-extension-schema_schemas 1.0.205 → 1.0.207
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 +1 -1
- package/build/cjs/index.js +17 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +138 -6
- package/build/cjs/index.typings.js +17 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +138 -6
- package/build/cjs/meta.js +17 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +15 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +138 -6
- package/build/es/index.typings.mjs +15 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +138 -6
- package/build/es/meta.mjs +15 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +17 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +138 -6
- package/build/internal/cjs/index.typings.js +17 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +138 -6
- package/build/internal/cjs/meta.js +17 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +15 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +138 -6
- package/build/internal/es/index.typings.mjs +15 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +138 -6
- package/build/internal/es/meta.mjs +15 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/meta.js
CHANGED
|
@@ -60,6 +60,7 @@ __export(meta_exports, {
|
|
|
60
60
|
ChannelConfigurationChannelTypeOriginal: () => ChannelConfigurationChannelType,
|
|
61
61
|
ChannelTypeOriginal: () => ChannelType,
|
|
62
62
|
ColumnSizeOriginal: () => ColumnSize,
|
|
63
|
+
ComponentToViewOptionOriginal: () => ComponentToViewOption,
|
|
63
64
|
ComponentTypeOriginal: () => ComponentType,
|
|
64
65
|
ConfirmationLevelOriginal: () => ConfirmationLevel,
|
|
65
66
|
ConnectMethodOriginal: () => ConnectMethod,
|
|
@@ -91,6 +92,7 @@ __export(meta_exports, {
|
|
|
91
92
|
DomainOriginal: () => Domain,
|
|
92
93
|
DtsDefinitionTypeOriginal: () => DtsDefinitionType,
|
|
93
94
|
EditablePropertiesOriginal: () => EditableProperties,
|
|
95
|
+
EditorTypeOriginal: () => EditorType,
|
|
94
96
|
EffectGroupOriginal: () => EffectGroup,
|
|
95
97
|
ElementDisplayOptionOriginal: () => ElementDisplayOption,
|
|
96
98
|
ElementTypeOriginal: () => ElementType,
|
|
@@ -739,6 +741,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
739
741
|
ComponentType2["LOYALTY_EARN_POINTS_LIMIT"] = "LOYALTY_EARN_POINTS_LIMIT";
|
|
740
742
|
ComponentType2["REALTIME_PERMISSIONS_PROVIDER"] = "REALTIME_PERMISSIONS_PROVIDER";
|
|
741
743
|
ComponentType2["CALENDAR_SEARCH_PROVIDER"] = "CALENDAR_SEARCH_PROVIDER";
|
|
744
|
+
ComponentType2["EDITOR_INSTALLATION"] = "EDITOR_INSTALLATION";
|
|
742
745
|
return ComponentType2;
|
|
743
746
|
})(ComponentType || {});
|
|
744
747
|
var WidgetVertical = /* @__PURE__ */ ((WidgetVertical2) => {
|
|
@@ -3118,6 +3121,11 @@ var SidebarEntityType = /* @__PURE__ */ ((SidebarEntityType2) => {
|
|
|
3118
3121
|
SidebarEntityType2["APP"] = "APP";
|
|
3119
3122
|
return SidebarEntityType2;
|
|
3120
3123
|
})(SidebarEntityType || {});
|
|
3124
|
+
var ComponentToViewOption = /* @__PURE__ */ ((ComponentToViewOption2) => {
|
|
3125
|
+
ComponentToViewOption2["BY_TYPES"] = "BY_TYPES";
|
|
3126
|
+
ComponentToViewOption2["EXISTING_VERSION_OF_COMPONENTS_TO_ENRICH"] = "EXISTING_VERSION_OF_COMPONENTS_TO_ENRICH";
|
|
3127
|
+
return ComponentToViewOption2;
|
|
3128
|
+
})(ComponentToViewOption || {});
|
|
3121
3129
|
var UpdateMode = /* @__PURE__ */ ((UpdateMode2) => {
|
|
3122
3130
|
UpdateMode2["FULL"] = "FULL";
|
|
3123
3131
|
UpdateMode2["PARTIAL"] = "PARTIAL";
|
|
@@ -3254,6 +3262,13 @@ var ScopeType = /* @__PURE__ */ ((ScopeType2) => {
|
|
|
3254
3262
|
ScopeType2["AUTOMATION_ACTION"] = "AUTOMATION_ACTION";
|
|
3255
3263
|
return ScopeType2;
|
|
3256
3264
|
})(ScopeType || {});
|
|
3265
|
+
var EditorType = /* @__PURE__ */ ((EditorType2) => {
|
|
3266
|
+
EditorType2["UNKNOWN_EDITOR_TYPE"] = "UNKNOWN_EDITOR_TYPE";
|
|
3267
|
+
EditorType2["CLASSIC_EDITOR_TYPE"] = "CLASSIC_EDITOR_TYPE";
|
|
3268
|
+
EditorType2["STUDIO_EDITOR_TYPE"] = "STUDIO_EDITOR_TYPE";
|
|
3269
|
+
EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
|
|
3270
|
+
return EditorType2;
|
|
3271
|
+
})(EditorType || {});
|
|
3257
3272
|
var WebhookIdentityType = /* @__PURE__ */ ((WebhookIdentityType2) => {
|
|
3258
3273
|
WebhookIdentityType2["UNKNOWN"] = "UNKNOWN";
|
|
3259
3274
|
WebhookIdentityType2["ANONYMOUS_VISITOR"] = "ANONYMOUS_VISITOR";
|
|
@@ -3406,6 +3421,7 @@ function deleteUserDefinedFields2() {
|
|
|
3406
3421
|
ChannelConfigurationChannelTypeOriginal,
|
|
3407
3422
|
ChannelTypeOriginal,
|
|
3408
3423
|
ColumnSizeOriginal,
|
|
3424
|
+
ComponentToViewOptionOriginal,
|
|
3409
3425
|
ComponentTypeOriginal,
|
|
3410
3426
|
ConfirmationLevelOriginal,
|
|
3411
3427
|
ConnectMethodOriginal,
|
|
@@ -3437,6 +3453,7 @@ function deleteUserDefinedFields2() {
|
|
|
3437
3453
|
DomainOriginal,
|
|
3438
3454
|
DtsDefinitionTypeOriginal,
|
|
3439
3455
|
EditablePropertiesOriginal,
|
|
3456
|
+
EditorTypeOriginal,
|
|
3440
3457
|
EffectGroupOriginal,
|
|
3441
3458
|
ElementDisplayOptionOriginal,
|
|
3442
3459
|
ElementTypeOriginal,
|