@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
|
@@ -29,11 +29,13 @@ __export(index_exports, {
|
|
|
29
29
|
ActionName: () => ActionName,
|
|
30
30
|
ActionSPIConfigInterfaceConfigurationType: () => ActionSPIConfigInterfaceConfigurationType,
|
|
31
31
|
ActionType: () => ActionType,
|
|
32
|
+
ActionsConfigSource: () => ActionsConfigSource,
|
|
32
33
|
AddressComponentType: () => AddressComponentType,
|
|
33
34
|
AddressInfoTag: () => AddressInfoTag,
|
|
34
35
|
AlgorithmType: () => AlgorithmType,
|
|
35
36
|
Alignment: () => Alignment,
|
|
36
37
|
AndroidStyle: () => AndroidStyle,
|
|
38
|
+
AppExecutionType: () => AppExecutionType,
|
|
37
39
|
AppType: () => AppType,
|
|
38
40
|
AppointmentFormat: () => AppointmentFormat,
|
|
39
41
|
Archetype: () => Archetype,
|
|
@@ -80,6 +82,7 @@ __export(index_exports, {
|
|
|
80
82
|
CustomFieldsType: () => CustomFieldsType,
|
|
81
83
|
DataType: () => DataType,
|
|
82
84
|
DecorationType: () => DecorationType,
|
|
85
|
+
DeeplinkFeature: () => DeeplinkFeature,
|
|
83
86
|
Default: () => Default,
|
|
84
87
|
DefaultCountryConfigType: () => DefaultCountryConfigType,
|
|
85
88
|
DefaultTextStyle: () => DefaultTextStyle,
|
|
@@ -300,6 +303,7 @@ __export(index_exports, {
|
|
|
300
303
|
aiAssistantAction: () => aiAssistantAction,
|
|
301
304
|
alertEnricher: () => alertEnricher,
|
|
302
305
|
analyticsProductCatalog: () => analyticsProductCatalog,
|
|
306
|
+
appActions: () => appActions,
|
|
303
307
|
appConfig: () => appConfig,
|
|
304
308
|
appRouter: () => appRouter,
|
|
305
309
|
applicationAutomation: () => applicationAutomation,
|
|
@@ -1690,6 +1694,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
|
|
|
1690
1694
|
ComponentType2["REALTIME_PERMISSIONS_PROVIDER"] = "REALTIME_PERMISSIONS_PROVIDER";
|
|
1691
1695
|
ComponentType2["CALENDAR_SEARCH_PROVIDER"] = "CALENDAR_SEARCH_PROVIDER";
|
|
1692
1696
|
ComponentType2["EDITOR_INSTALLATION"] = "EDITOR_INSTALLATION";
|
|
1697
|
+
ComponentType2["APP_ACTIONS"] = "APP_ACTIONS";
|
|
1693
1698
|
return ComponentType2;
|
|
1694
1699
|
})(ComponentType || {});
|
|
1695
1700
|
var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
|
|
@@ -2360,6 +2365,12 @@ var Method = /* @__PURE__ */ ((Method2) => {
|
|
|
2360
2365
|
Method2["CANCEL"] = "CANCEL";
|
|
2361
2366
|
return Method2;
|
|
2362
2367
|
})(Method || {});
|
|
2368
|
+
var ActionsConfigSource = /* @__PURE__ */ ((ActionsConfigSource2) => {
|
|
2369
|
+
ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_UNSPECIFIED"] = "ACTIONS_CONFIG_SOURCE_UNSPECIFIED";
|
|
2370
|
+
ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_POLICIES"] = "ACTIONS_CONFIG_SOURCE_POLICIES";
|
|
2371
|
+
ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_ACTIONS"] = "ACTIONS_CONFIG_SOURCE_ACTIONS";
|
|
2372
|
+
return ActionsConfigSource2;
|
|
2373
|
+
})(ActionsConfigSource || {});
|
|
2363
2374
|
var ParticipantType = /* @__PURE__ */ ((ParticipantType2) => {
|
|
2364
2375
|
ParticipantType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
2365
2376
|
ParticipantType2["WIX_USER"] = "WIX_USER";
|
|
@@ -3366,6 +3377,20 @@ var EditorType = /* @__PURE__ */ ((EditorType2) => {
|
|
|
3366
3377
|
EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
|
|
3367
3378
|
return EditorType2;
|
|
3368
3379
|
})(EditorType || {});
|
|
3380
|
+
var AppExecutionType = /* @__PURE__ */ ((AppExecutionType2) => {
|
|
3381
|
+
AppExecutionType2["UNKNOWN_APP_EXECUTION_TYPE"] = "UNKNOWN_APP_EXECUTION_TYPE";
|
|
3382
|
+
AppExecutionType2["MODAL"] = "MODAL";
|
|
3383
|
+
AppExecutionType2["DASHBOARD"] = "DASHBOARD";
|
|
3384
|
+
AppExecutionType2["EXTERNAL_LINK"] = "EXTERNAL_LINK";
|
|
3385
|
+
AppExecutionType2["DEEPLINK"] = "DEEPLINK";
|
|
3386
|
+
return AppExecutionType2;
|
|
3387
|
+
})(AppExecutionType || {});
|
|
3388
|
+
var DeeplinkFeature = /* @__PURE__ */ ((DeeplinkFeature2) => {
|
|
3389
|
+
DeeplinkFeature2["UNKNOWN_DEEPLINK_FEATURE"] = "UNKNOWN_DEEPLINK_FEATURE";
|
|
3390
|
+
DeeplinkFeature2["ADD_PAGE"] = "ADD_PAGE";
|
|
3391
|
+
DeeplinkFeature2["ADD_PANEL"] = "ADD_PANEL";
|
|
3392
|
+
return DeeplinkFeature2;
|
|
3393
|
+
})(DeeplinkFeature || {});
|
|
3369
3394
|
var Exposure = /* @__PURE__ */ ((Exposure2) => {
|
|
3370
3395
|
Exposure2["NONE_EXPOSURE"] = "NONE_EXPOSURE";
|
|
3371
3396
|
Exposure2["PRIVATE_EXPOSURE"] = "PRIVATE_EXPOSURE";
|
|
@@ -6094,6 +6119,18 @@ function editorInstallation({
|
|
|
6094
6119
|
compData: { editorInstallation: data }
|
|
6095
6120
|
};
|
|
6096
6121
|
}
|
|
6122
|
+
function appActions({
|
|
6123
|
+
id,
|
|
6124
|
+
data,
|
|
6125
|
+
name
|
|
6126
|
+
}) {
|
|
6127
|
+
return {
|
|
6128
|
+
compId: id,
|
|
6129
|
+
compName: name,
|
|
6130
|
+
compType: "APP_ACTIONS" /* APP_ACTIONS */,
|
|
6131
|
+
compData: { appActions: data }
|
|
6132
|
+
};
|
|
6133
|
+
}
|
|
6097
6134
|
// Annotate the CommonJS export names for ESM import in node:
|
|
6098
6135
|
0 && (module.exports = {
|
|
6099
6136
|
A11yAttributes,
|
|
@@ -6105,11 +6142,13 @@ function editorInstallation({
|
|
|
6105
6142
|
ActionName,
|
|
6106
6143
|
ActionSPIConfigInterfaceConfigurationType,
|
|
6107
6144
|
ActionType,
|
|
6145
|
+
ActionsConfigSource,
|
|
6108
6146
|
AddressComponentType,
|
|
6109
6147
|
AddressInfoTag,
|
|
6110
6148
|
AlgorithmType,
|
|
6111
6149
|
Alignment,
|
|
6112
6150
|
AndroidStyle,
|
|
6151
|
+
AppExecutionType,
|
|
6113
6152
|
AppType,
|
|
6114
6153
|
AppointmentFormat,
|
|
6115
6154
|
Archetype,
|
|
@@ -6156,6 +6195,7 @@ function editorInstallation({
|
|
|
6156
6195
|
CustomFieldsType,
|
|
6157
6196
|
DataType,
|
|
6158
6197
|
DecorationType,
|
|
6198
|
+
DeeplinkFeature,
|
|
6159
6199
|
Default,
|
|
6160
6200
|
DefaultCountryConfigType,
|
|
6161
6201
|
DefaultTextStyle,
|
|
@@ -6376,6 +6416,7 @@ function editorInstallation({
|
|
|
6376
6416
|
aiAssistantAction,
|
|
6377
6417
|
alertEnricher,
|
|
6378
6418
|
analyticsProductCatalog,
|
|
6419
|
+
appActions,
|
|
6379
6420
|
appConfig,
|
|
6380
6421
|
appRouter,
|
|
6381
6422
|
applicationAutomation,
|