@wix/app-extensions 1.0.42 → 1.0.44
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 +4 -2
- package/build/cjs/index.js +56 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +4 -2
- package/build/es/index.mjs +51 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +369 -36
- package/build/trusted/cjs/index.js +56 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +369 -36
- package/build/trusted/es/index.mjs +51 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1164,6 +1164,8 @@ 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";
|
|
1168
|
+
ComponentType2["ROLLOUT_STEP_EXECUTOR"] = "ROLLOUT_STEP_EXECUTOR";
|
|
1167
1169
|
return ComponentType2;
|
|
1168
1170
|
})(ComponentType || {});
|
|
1169
1171
|
var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
|
|
@@ -1834,6 +1836,12 @@ var Method = /* @__PURE__ */ ((Method2) => {
|
|
|
1834
1836
|
Method2["CANCEL"] = "CANCEL";
|
|
1835
1837
|
return Method2;
|
|
1836
1838
|
})(Method || {});
|
|
1839
|
+
var ActionsConfigSource = /* @__PURE__ */ ((ActionsConfigSource2) => {
|
|
1840
|
+
ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_UNSPECIFIED"] = "ACTIONS_CONFIG_SOURCE_UNSPECIFIED";
|
|
1841
|
+
ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_POLICIES"] = "ACTIONS_CONFIG_SOURCE_POLICIES";
|
|
1842
|
+
ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_ACTIONS"] = "ACTIONS_CONFIG_SOURCE_ACTIONS";
|
|
1843
|
+
return ActionsConfigSource2;
|
|
1844
|
+
})(ActionsConfigSource || {});
|
|
1837
1845
|
var ParticipantType = /* @__PURE__ */ ((ParticipantType2) => {
|
|
1838
1846
|
ParticipantType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
1839
1847
|
ParticipantType2["WIX_USER"] = "WIX_USER";
|
|
@@ -2840,6 +2848,20 @@ var EditorType = /* @__PURE__ */ ((EditorType2) => {
|
|
|
2840
2848
|
EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
|
|
2841
2849
|
return EditorType2;
|
|
2842
2850
|
})(EditorType || {});
|
|
2851
|
+
var AppExecutionType = /* @__PURE__ */ ((AppExecutionType2) => {
|
|
2852
|
+
AppExecutionType2["UNKNOWN_APP_EXECUTION_TYPE"] = "UNKNOWN_APP_EXECUTION_TYPE";
|
|
2853
|
+
AppExecutionType2["MODAL"] = "MODAL";
|
|
2854
|
+
AppExecutionType2["DASHBOARD"] = "DASHBOARD";
|
|
2855
|
+
AppExecutionType2["EXTERNAL_LINK"] = "EXTERNAL_LINK";
|
|
2856
|
+
AppExecutionType2["DEEPLINK"] = "DEEPLINK";
|
|
2857
|
+
return AppExecutionType2;
|
|
2858
|
+
})(AppExecutionType || {});
|
|
2859
|
+
var DeeplinkFeature = /* @__PURE__ */ ((DeeplinkFeature2) => {
|
|
2860
|
+
DeeplinkFeature2["UNKNOWN_DEEPLINK_FEATURE"] = "UNKNOWN_DEEPLINK_FEATURE";
|
|
2861
|
+
DeeplinkFeature2["ADD_PAGE"] = "ADD_PAGE";
|
|
2862
|
+
DeeplinkFeature2["ADD_PANEL"] = "ADD_PANEL";
|
|
2863
|
+
return DeeplinkFeature2;
|
|
2864
|
+
})(DeeplinkFeature || {});
|
|
2843
2865
|
var Exposure = /* @__PURE__ */ ((Exposure2) => {
|
|
2844
2866
|
Exposure2["NONE_EXPOSURE"] = "NONE_EXPOSURE";
|
|
2845
2867
|
Exposure2["PRIVATE_EXPOSURE"] = "PRIVATE_EXPOSURE";
|
|
@@ -5568,6 +5590,30 @@ function editorInstallation({
|
|
|
5568
5590
|
compData: { editorInstallation: data }
|
|
5569
5591
|
};
|
|
5570
5592
|
}
|
|
5593
|
+
function appActions({
|
|
5594
|
+
id,
|
|
5595
|
+
data,
|
|
5596
|
+
name
|
|
5597
|
+
}) {
|
|
5598
|
+
return {
|
|
5599
|
+
compId: id,
|
|
5600
|
+
compName: name,
|
|
5601
|
+
compType: "APP_ACTIONS" /* APP_ACTIONS */,
|
|
5602
|
+
compData: { appActions: data }
|
|
5603
|
+
};
|
|
5604
|
+
}
|
|
5605
|
+
function rolloutStepExecutor({
|
|
5606
|
+
id,
|
|
5607
|
+
data,
|
|
5608
|
+
name
|
|
5609
|
+
}) {
|
|
5610
|
+
return {
|
|
5611
|
+
compId: id,
|
|
5612
|
+
compName: name,
|
|
5613
|
+
compType: "ROLLOUT_STEP_EXECUTOR" /* ROLLOUT_STEP_EXECUTOR */,
|
|
5614
|
+
compData: { rolloutStepExecutor: data }
|
|
5615
|
+
};
|
|
5616
|
+
}
|
|
5571
5617
|
export {
|
|
5572
5618
|
A11yAttributes,
|
|
5573
5619
|
AcceptedDirectMessageType,
|
|
@@ -5578,11 +5624,13 @@ export {
|
|
|
5578
5624
|
ActionName,
|
|
5579
5625
|
ActionSPIConfigInterfaceConfigurationType,
|
|
5580
5626
|
ActionType,
|
|
5627
|
+
ActionsConfigSource,
|
|
5581
5628
|
AddressComponentType,
|
|
5582
5629
|
AddressInfoTag,
|
|
5583
5630
|
AlgorithmType,
|
|
5584
5631
|
Alignment,
|
|
5585
5632
|
AndroidStyle,
|
|
5633
|
+
AppExecutionType,
|
|
5586
5634
|
AppType,
|
|
5587
5635
|
AppointmentFormat,
|
|
5588
5636
|
Archetype,
|
|
@@ -5629,6 +5677,7 @@ export {
|
|
|
5629
5677
|
CustomFieldsType,
|
|
5630
5678
|
DataType,
|
|
5631
5679
|
DecorationType,
|
|
5680
|
+
DeeplinkFeature,
|
|
5632
5681
|
Default,
|
|
5633
5682
|
DefaultCountryConfigType,
|
|
5634
5683
|
DefaultTextStyle,
|
|
@@ -5849,6 +5898,7 @@ export {
|
|
|
5849
5898
|
aiAssistantAction,
|
|
5850
5899
|
alertEnricher,
|
|
5851
5900
|
analyticsProductCatalog,
|
|
5901
|
+
appActions,
|
|
5852
5902
|
appConfig,
|
|
5853
5903
|
appRouter,
|
|
5854
5904
|
applicationAutomation,
|
|
@@ -6020,6 +6070,7 @@ export {
|
|
|
6020
6070
|
reserved,
|
|
6021
6071
|
restaurantsPos,
|
|
6022
6072
|
restaurantsPosProviderSettingsServicePlugin,
|
|
6073
|
+
rolloutStepExecutor,
|
|
6023
6074
|
sdkDefinition,
|
|
6024
6075
|
sdkExports,
|
|
6025
6076
|
seoKeywordsSuggestions,
|