@wix/app-extensions 1.0.39 → 1.0.40
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 +3 -2
- package/build/cjs/index.js +32 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +3 -2
- package/build/es/index.mjs +29 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +269 -58
- package/build/trusted/cjs/index.js +32 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +269 -58
- package/build/trusted/es/index.mjs +29 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -61,6 +61,7 @@ __export(index_exports, {
|
|
|
61
61
|
ChannelType: () => ChannelType,
|
|
62
62
|
ColumnSize: () => ColumnSize,
|
|
63
63
|
ComponentPresent: () => ComponentPresent,
|
|
64
|
+
ComponentToViewOption: () => ComponentToViewOption,
|
|
64
65
|
ComponentType: () => ComponentType,
|
|
65
66
|
ConfirmationLevel: () => ConfirmationLevel,
|
|
66
67
|
ConnectMethod: () => ConnectMethod,
|
|
@@ -91,6 +92,7 @@ __export(index_exports, {
|
|
|
91
92
|
Domain: () => Domain,
|
|
92
93
|
DtsDefinitionType: () => DtsDefinitionType,
|
|
93
94
|
EditableProperties: () => EditableProperties,
|
|
95
|
+
EditorType: () => EditorType,
|
|
94
96
|
EffectGroup: () => EffectGroup,
|
|
95
97
|
ElementDisplayOption: () => ElementDisplayOption,
|
|
96
98
|
ElementType: () => ElementType,
|
|
@@ -388,6 +390,7 @@ __export(index_exports, {
|
|
|
388
390
|
editorAppPreviewsPoc: () => editorAppPreviewsPoc,
|
|
389
391
|
editorContextProvider: () => editorContextProvider,
|
|
390
392
|
editorFunctionLibrary: () => editorFunctionLibrary,
|
|
393
|
+
editorInstallation: () => editorInstallation,
|
|
391
394
|
editorReactComponent: () => editorReactComponent,
|
|
392
395
|
embeddedScript: () => embeddedScript,
|
|
393
396
|
eventTimeSlotsConfigurationProvider: () => eventTimeSlotsConfigurationProvider,
|
|
@@ -1675,6 +1678,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
1675
1678
|
ComponentType2["LOYALTY_EARN_POINTS_LIMIT"] = "LOYALTY_EARN_POINTS_LIMIT";
|
|
1676
1679
|
ComponentType2["REALTIME_PERMISSIONS_PROVIDER"] = "REALTIME_PERMISSIONS_PROVIDER";
|
|
1677
1680
|
ComponentType2["CALENDAR_SEARCH_PROVIDER"] = "CALENDAR_SEARCH_PROVIDER";
|
|
1681
|
+
ComponentType2["EDITOR_INSTALLATION"] = "EDITOR_INSTALLATION";
|
|
1678
1682
|
return ComponentType2;
|
|
1679
1683
|
})(ComponentType || {});
|
|
1680
1684
|
var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
|
|
@@ -3192,6 +3196,12 @@ var SidebarEntityType = /* @__PURE__ */ ((SidebarEntityType2) => {
|
|
|
3192
3196
|
SidebarEntityType2["APP"] = "APP";
|
|
3193
3197
|
return SidebarEntityType2;
|
|
3194
3198
|
})(SidebarEntityType || {});
|
|
3199
|
+
var ComponentToViewOption = /* @__PURE__ */ ((ComponentToViewOption2) => {
|
|
3200
|
+
ComponentToViewOption2["UNKNOWN_COMPONENT_TO_VIEW_OPTION"] = "UNKNOWN_COMPONENT_TO_VIEW_OPTION";
|
|
3201
|
+
ComponentToViewOption2["BY_TYPES"] = "BY_TYPES";
|
|
3202
|
+
ComponentToViewOption2["EXISTING_VERSION_OF_COMPONENTS_TO_ENRICH"] = "EXISTING_VERSION_OF_COMPONENTS_TO_ENRICH";
|
|
3203
|
+
return ComponentToViewOption2;
|
|
3204
|
+
})(ComponentToViewOption || {});
|
|
3195
3205
|
var UpdateMode = /* @__PURE__ */ ((UpdateMode2) => {
|
|
3196
3206
|
UpdateMode2["UNKNOWN_UPDATE_MODE"] = "UNKNOWN_UPDATE_MODE";
|
|
3197
3207
|
UpdateMode2["FULL"] = "FULL";
|
|
@@ -3338,6 +3348,13 @@ var ScopeType = /* @__PURE__ */ ((ScopeType2) => {
|
|
|
3338
3348
|
ScopeType2["AUTOMATION_ACTION"] = "AUTOMATION_ACTION";
|
|
3339
3349
|
return ScopeType2;
|
|
3340
3350
|
})(ScopeType || {});
|
|
3351
|
+
var EditorType = /* @__PURE__ */ ((EditorType2) => {
|
|
3352
|
+
EditorType2["UNKNOWN_EDITOR_TYPE"] = "UNKNOWN_EDITOR_TYPE";
|
|
3353
|
+
EditorType2["CLASSIC_EDITOR_TYPE"] = "CLASSIC_EDITOR_TYPE";
|
|
3354
|
+
EditorType2["STUDIO_EDITOR_TYPE"] = "STUDIO_EDITOR_TYPE";
|
|
3355
|
+
EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
|
|
3356
|
+
return EditorType2;
|
|
3357
|
+
})(EditorType || {});
|
|
3341
3358
|
var Exposure = /* @__PURE__ */ ((Exposure2) => {
|
|
3342
3359
|
Exposure2["NONE_EXPOSURE"] = "NONE_EXPOSURE";
|
|
3343
3360
|
Exposure2["PRIVATE_EXPOSURE"] = "PRIVATE_EXPOSURE";
|
|
@@ -6054,6 +6071,18 @@ function calendarSearchProvider({
|
|
|
6054
6071
|
compData: { calendarSearchProvider: data }
|
|
6055
6072
|
};
|
|
6056
6073
|
}
|
|
6074
|
+
function editorInstallation({
|
|
6075
|
+
id,
|
|
6076
|
+
data,
|
|
6077
|
+
name
|
|
6078
|
+
}) {
|
|
6079
|
+
return {
|
|
6080
|
+
compId: id,
|
|
6081
|
+
compName: name,
|
|
6082
|
+
compType: "EDITOR_INSTALLATION" /* EDITOR_INSTALLATION */,
|
|
6083
|
+
compData: { editorInstallation: data }
|
|
6084
|
+
};
|
|
6085
|
+
}
|
|
6057
6086
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6058
6087
|
0 && (module.exports = {
|
|
6059
6088
|
A11yAttributes,
|
|
@@ -6097,6 +6126,7 @@ function calendarSearchProvider({
|
|
|
6097
6126
|
ChannelType,
|
|
6098
6127
|
ColumnSize,
|
|
6099
6128
|
ComponentPresent,
|
|
6129
|
+
ComponentToViewOption,
|
|
6100
6130
|
ComponentType,
|
|
6101
6131
|
ConfirmationLevel,
|
|
6102
6132
|
ConnectMethod,
|
|
@@ -6127,6 +6157,7 @@ function calendarSearchProvider({
|
|
|
6127
6157
|
Domain,
|
|
6128
6158
|
DtsDefinitionType,
|
|
6129
6159
|
EditableProperties,
|
|
6160
|
+
EditorType,
|
|
6130
6161
|
EffectGroup,
|
|
6131
6162
|
ElementDisplayOption,
|
|
6132
6163
|
ElementType,
|
|
@@ -6424,6 +6455,7 @@ function calendarSearchProvider({
|
|
|
6424
6455
|
editorAppPreviewsPoc,
|
|
6425
6456
|
editorContextProvider,
|
|
6426
6457
|
editorFunctionLibrary,
|
|
6458
|
+
editorInstallation,
|
|
6427
6459
|
editorReactComponent,
|
|
6428
6460
|
embeddedScript,
|
|
6429
6461
|
eventTimeSlotsConfigurationProvider,
|