@wix/app-extensions 1.0.41 → 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.
@@ -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,
@@ -46,6 +48,7 @@ __export(index_exports, {
46
48
  BackdropType: () => BackdropType,
47
49
  BackgroundModeEnum: () => BackgroundModeEnum,
48
50
  BackgroundType: () => BackgroundType,
51
+ BannerPosition: () => BannerPosition,
49
52
  BarAlignmentSelected: () => BarAlignmentSelected,
50
53
  BlockType: () => BlockType,
51
54
  BooleanComponentType: () => BooleanComponentType,
@@ -79,6 +82,7 @@ __export(index_exports, {
79
82
  CustomFieldsType: () => CustomFieldsType,
80
83
  DataType: () => DataType,
81
84
  DecorationType: () => DecorationType,
85
+ DeeplinkFeature: () => DeeplinkFeature,
82
86
  Default: () => Default,
83
87
  DefaultCountryConfigType: () => DefaultCountryConfigType,
84
88
  DefaultTextStyle: () => DefaultTextStyle,
@@ -299,6 +303,7 @@ __export(index_exports, {
299
303
  aiAssistantAction: () => aiAssistantAction,
300
304
  alertEnricher: () => alertEnricher,
301
305
  analyticsProductCatalog: () => analyticsProductCatalog,
306
+ appActions: () => appActions,
302
307
  appConfig: () => appConfig,
303
308
  appRouter: () => appRouter,
304
309
  applicationAutomation: () => applicationAutomation,
@@ -1357,6 +1362,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
1357
1362
  Origin2["LAYOUT"] = "LAYOUT";
1358
1363
  return Origin2;
1359
1364
  })(Origin || {});
1365
+ var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
1366
+ BannerPosition2["TOP"] = "TOP";
1367
+ BannerPosition2["BOTTOM"] = "BOTTOM";
1368
+ return BannerPosition2;
1369
+ })(BannerPosition || {});
1360
1370
  var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
1361
1371
  LayoutDataBackgroundType2["COLOR"] = "COLOR";
1362
1372
  LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
@@ -1436,6 +1446,11 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
1436
1446
  SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
1437
1447
  SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
1438
1448
  SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
1449
+ SmartBlockDataType2["TIMELINE"] = "TIMELINE";
1450
+ SmartBlockDataType2["MINIMAL_TIMELINE"] = "MINIMAL_TIMELINE";
1451
+ SmartBlockDataType2["PILLS"] = "PILLS";
1452
+ SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
1453
+ SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
1439
1454
  return SmartBlockDataType2;
1440
1455
  })(SmartBlockDataType || {});
1441
1456
  var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
@@ -1679,6 +1694,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
1679
1694
  ComponentType2["REALTIME_PERMISSIONS_PROVIDER"] = "REALTIME_PERMISSIONS_PROVIDER";
1680
1695
  ComponentType2["CALENDAR_SEARCH_PROVIDER"] = "CALENDAR_SEARCH_PROVIDER";
1681
1696
  ComponentType2["EDITOR_INSTALLATION"] = "EDITOR_INSTALLATION";
1697
+ ComponentType2["APP_ACTIONS"] = "APP_ACTIONS";
1682
1698
  return ComponentType2;
1683
1699
  })(ComponentType || {});
1684
1700
  var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
@@ -2349,6 +2365,12 @@ var Method = /* @__PURE__ */ ((Method2) => {
2349
2365
  Method2["CANCEL"] = "CANCEL";
2350
2366
  return Method2;
2351
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 || {});
2352
2374
  var ParticipantType = /* @__PURE__ */ ((ParticipantType2) => {
2353
2375
  ParticipantType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
2354
2376
  ParticipantType2["WIX_USER"] = "WIX_USER";
@@ -3355,6 +3377,20 @@ var EditorType = /* @__PURE__ */ ((EditorType2) => {
3355
3377
  EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
3356
3378
  return EditorType2;
3357
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 || {});
3358
3394
  var Exposure = /* @__PURE__ */ ((Exposure2) => {
3359
3395
  Exposure2["NONE_EXPOSURE"] = "NONE_EXPOSURE";
3360
3396
  Exposure2["PRIVATE_EXPOSURE"] = "PRIVATE_EXPOSURE";
@@ -6083,6 +6119,18 @@ function editorInstallation({
6083
6119
  compData: { editorInstallation: data }
6084
6120
  };
6085
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
+ }
6086
6134
  // Annotate the CommonJS export names for ESM import in node:
6087
6135
  0 && (module.exports = {
6088
6136
  A11yAttributes,
@@ -6094,11 +6142,13 @@ function editorInstallation({
6094
6142
  ActionName,
6095
6143
  ActionSPIConfigInterfaceConfigurationType,
6096
6144
  ActionType,
6145
+ ActionsConfigSource,
6097
6146
  AddressComponentType,
6098
6147
  AddressInfoTag,
6099
6148
  AlgorithmType,
6100
6149
  Alignment,
6101
6150
  AndroidStyle,
6151
+ AppExecutionType,
6102
6152
  AppType,
6103
6153
  AppointmentFormat,
6104
6154
  Archetype,
@@ -6111,6 +6161,7 @@ function editorInstallation({
6111
6161
  BackdropType,
6112
6162
  BackgroundModeEnum,
6113
6163
  BackgroundType,
6164
+ BannerPosition,
6114
6165
  BarAlignmentSelected,
6115
6166
  BlockType,
6116
6167
  BooleanComponentType,
@@ -6144,6 +6195,7 @@ function editorInstallation({
6144
6195
  CustomFieldsType,
6145
6196
  DataType,
6146
6197
  DecorationType,
6198
+ DeeplinkFeature,
6147
6199
  Default,
6148
6200
  DefaultCountryConfigType,
6149
6201
  DefaultTextStyle,
@@ -6364,6 +6416,7 @@ function editorInstallation({
6364
6416
  aiAssistantAction,
6365
6417
  alertEnricher,
6366
6418
  analyticsProductCatalog,
6419
+ appActions,
6367
6420
  appConfig,
6368
6421
  appRouter,
6369
6422
  applicationAutomation,