@wix/app-extensions 1.0.42 → 1.0.43
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 +41 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +3 -2
- package/build/es/index.mjs +37 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +338 -36
- package/build/trusted/cjs/index.js +41 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +338 -36
- package/build/trusted/es/index.mjs +37 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1164,6 +1164,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
1164
1164
|
ComponentType2["REALTIME_PERMISSIONS_PROVIDER"] = "REALTIME_PERMISSIONS_PROVIDER";
|
|
1165
1165
|
ComponentType2["CALENDAR_SEARCH_PROVIDER"] = "CALENDAR_SEARCH_PROVIDER";
|
|
1166
1166
|
ComponentType2["EDITOR_INSTALLATION"] = "EDITOR_INSTALLATION";
|
|
1167
|
+
ComponentType2["APP_ACTIONS"] = "APP_ACTIONS";
|
|
1167
1168
|
return ComponentType2;
|
|
1168
1169
|
})(ComponentType || {});
|
|
1169
1170
|
var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
|
|
@@ -1834,6 +1835,12 @@ var Method = /* @__PURE__ */ ((Method2) => {
|
|
|
1834
1835
|
Method2["CANCEL"] = "CANCEL";
|
|
1835
1836
|
return Method2;
|
|
1836
1837
|
})(Method || {});
|
|
1838
|
+
var ActionsConfigSource = /* @__PURE__ */ ((ActionsConfigSource2) => {
|
|
1839
|
+
ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_UNSPECIFIED"] = "ACTIONS_CONFIG_SOURCE_UNSPECIFIED";
|
|
1840
|
+
ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_POLICIES"] = "ACTIONS_CONFIG_SOURCE_POLICIES";
|
|
1841
|
+
ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_ACTIONS"] = "ACTIONS_CONFIG_SOURCE_ACTIONS";
|
|
1842
|
+
return ActionsConfigSource2;
|
|
1843
|
+
})(ActionsConfigSource || {});
|
|
1837
1844
|
var ParticipantType = /* @__PURE__ */ ((ParticipantType2) => {
|
|
1838
1845
|
ParticipantType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
1839
1846
|
ParticipantType2["WIX_USER"] = "WIX_USER";
|
|
@@ -2840,6 +2847,20 @@ var EditorType = /* @__PURE__ */ ((EditorType2) => {
|
|
|
2840
2847
|
EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
|
|
2841
2848
|
return EditorType2;
|
|
2842
2849
|
})(EditorType || {});
|
|
2850
|
+
var AppExecutionType = /* @__PURE__ */ ((AppExecutionType2) => {
|
|
2851
|
+
AppExecutionType2["UNKNOWN_APP_EXECUTION_TYPE"] = "UNKNOWN_APP_EXECUTION_TYPE";
|
|
2852
|
+
AppExecutionType2["MODAL"] = "MODAL";
|
|
2853
|
+
AppExecutionType2["DASHBOARD"] = "DASHBOARD";
|
|
2854
|
+
AppExecutionType2["EXTERNAL_LINK"] = "EXTERNAL_LINK";
|
|
2855
|
+
AppExecutionType2["DEEPLINK"] = "DEEPLINK";
|
|
2856
|
+
return AppExecutionType2;
|
|
2857
|
+
})(AppExecutionType || {});
|
|
2858
|
+
var DeeplinkFeature = /* @__PURE__ */ ((DeeplinkFeature2) => {
|
|
2859
|
+
DeeplinkFeature2["UNKNOWN_DEEPLINK_FEATURE"] = "UNKNOWN_DEEPLINK_FEATURE";
|
|
2860
|
+
DeeplinkFeature2["ADD_PAGE"] = "ADD_PAGE";
|
|
2861
|
+
DeeplinkFeature2["ADD_PANEL"] = "ADD_PANEL";
|
|
2862
|
+
return DeeplinkFeature2;
|
|
2863
|
+
})(DeeplinkFeature || {});
|
|
2843
2864
|
var Exposure = /* @__PURE__ */ ((Exposure2) => {
|
|
2844
2865
|
Exposure2["NONE_EXPOSURE"] = "NONE_EXPOSURE";
|
|
2845
2866
|
Exposure2["PRIVATE_EXPOSURE"] = "PRIVATE_EXPOSURE";
|
|
@@ -5568,6 +5589,18 @@ function editorInstallation({
|
|
|
5568
5589
|
compData: { editorInstallation: data }
|
|
5569
5590
|
};
|
|
5570
5591
|
}
|
|
5592
|
+
function appActions({
|
|
5593
|
+
id,
|
|
5594
|
+
data,
|
|
5595
|
+
name
|
|
5596
|
+
}) {
|
|
5597
|
+
return {
|
|
5598
|
+
compId: id,
|
|
5599
|
+
compName: name,
|
|
5600
|
+
compType: "APP_ACTIONS" /* APP_ACTIONS */,
|
|
5601
|
+
compData: { appActions: data }
|
|
5602
|
+
};
|
|
5603
|
+
}
|
|
5571
5604
|
export {
|
|
5572
5605
|
A11yAttributes,
|
|
5573
5606
|
AcceptedDirectMessageType,
|
|
@@ -5578,11 +5611,13 @@ export {
|
|
|
5578
5611
|
ActionName,
|
|
5579
5612
|
ActionSPIConfigInterfaceConfigurationType,
|
|
5580
5613
|
ActionType,
|
|
5614
|
+
ActionsConfigSource,
|
|
5581
5615
|
AddressComponentType,
|
|
5582
5616
|
AddressInfoTag,
|
|
5583
5617
|
AlgorithmType,
|
|
5584
5618
|
Alignment,
|
|
5585
5619
|
AndroidStyle,
|
|
5620
|
+
AppExecutionType,
|
|
5586
5621
|
AppType,
|
|
5587
5622
|
AppointmentFormat,
|
|
5588
5623
|
Archetype,
|
|
@@ -5629,6 +5664,7 @@ export {
|
|
|
5629
5664
|
CustomFieldsType,
|
|
5630
5665
|
DataType,
|
|
5631
5666
|
DecorationType,
|
|
5667
|
+
DeeplinkFeature,
|
|
5632
5668
|
Default,
|
|
5633
5669
|
DefaultCountryConfigType,
|
|
5634
5670
|
DefaultTextStyle,
|
|
@@ -5849,6 +5885,7 @@ export {
|
|
|
5849
5885
|
aiAssistantAction,
|
|
5850
5886
|
alertEnricher,
|
|
5851
5887
|
analyticsProductCatalog,
|
|
5888
|
+
appActions,
|
|
5852
5889
|
appConfig,
|
|
5853
5890
|
appRouter,
|
|
5854
5891
|
applicationAutomation,
|