@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.
@@ -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,
@@ -471,6 +475,7 @@ __export(index_exports, {
471
475
  reserved: () => reserved,
472
476
  restaurantsPos: () => restaurantsPos,
473
477
  restaurantsPosProviderSettingsServicePlugin: () => restaurantsPosProviderSettingsServicePlugin,
478
+ rolloutStepExecutor: () => rolloutStepExecutor,
474
479
  sdkDefinition: () => sdkDefinition,
475
480
  sdkExports: () => sdkExports,
476
481
  seoKeywordsSuggestions: () => seoKeywordsSuggestions,
@@ -1690,6 +1695,8 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
1690
1695
  ComponentType2["REALTIME_PERMISSIONS_PROVIDER"] = "REALTIME_PERMISSIONS_PROVIDER";
1691
1696
  ComponentType2["CALENDAR_SEARCH_PROVIDER"] = "CALENDAR_SEARCH_PROVIDER";
1692
1697
  ComponentType2["EDITOR_INSTALLATION"] = "EDITOR_INSTALLATION";
1698
+ ComponentType2["APP_ACTIONS"] = "APP_ACTIONS";
1699
+ ComponentType2["ROLLOUT_STEP_EXECUTOR"] = "ROLLOUT_STEP_EXECUTOR";
1693
1700
  return ComponentType2;
1694
1701
  })(ComponentType || {});
1695
1702
  var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
@@ -2360,6 +2367,12 @@ var Method = /* @__PURE__ */ ((Method2) => {
2360
2367
  Method2["CANCEL"] = "CANCEL";
2361
2368
  return Method2;
2362
2369
  })(Method || {});
2370
+ var ActionsConfigSource = /* @__PURE__ */ ((ActionsConfigSource2) => {
2371
+ ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_UNSPECIFIED"] = "ACTIONS_CONFIG_SOURCE_UNSPECIFIED";
2372
+ ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_POLICIES"] = "ACTIONS_CONFIG_SOURCE_POLICIES";
2373
+ ActionsConfigSource2["ACTIONS_CONFIG_SOURCE_ACTIONS"] = "ACTIONS_CONFIG_SOURCE_ACTIONS";
2374
+ return ActionsConfigSource2;
2375
+ })(ActionsConfigSource || {});
2363
2376
  var ParticipantType = /* @__PURE__ */ ((ParticipantType2) => {
2364
2377
  ParticipantType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
2365
2378
  ParticipantType2["WIX_USER"] = "WIX_USER";
@@ -3366,6 +3379,20 @@ var EditorType = /* @__PURE__ */ ((EditorType2) => {
3366
3379
  EditorType2["HARMONY_EDITOR_TYPE"] = "HARMONY_EDITOR_TYPE";
3367
3380
  return EditorType2;
3368
3381
  })(EditorType || {});
3382
+ var AppExecutionType = /* @__PURE__ */ ((AppExecutionType2) => {
3383
+ AppExecutionType2["UNKNOWN_APP_EXECUTION_TYPE"] = "UNKNOWN_APP_EXECUTION_TYPE";
3384
+ AppExecutionType2["MODAL"] = "MODAL";
3385
+ AppExecutionType2["DASHBOARD"] = "DASHBOARD";
3386
+ AppExecutionType2["EXTERNAL_LINK"] = "EXTERNAL_LINK";
3387
+ AppExecutionType2["DEEPLINK"] = "DEEPLINK";
3388
+ return AppExecutionType2;
3389
+ })(AppExecutionType || {});
3390
+ var DeeplinkFeature = /* @__PURE__ */ ((DeeplinkFeature2) => {
3391
+ DeeplinkFeature2["UNKNOWN_DEEPLINK_FEATURE"] = "UNKNOWN_DEEPLINK_FEATURE";
3392
+ DeeplinkFeature2["ADD_PAGE"] = "ADD_PAGE";
3393
+ DeeplinkFeature2["ADD_PANEL"] = "ADD_PANEL";
3394
+ return DeeplinkFeature2;
3395
+ })(DeeplinkFeature || {});
3369
3396
  var Exposure = /* @__PURE__ */ ((Exposure2) => {
3370
3397
  Exposure2["NONE_EXPOSURE"] = "NONE_EXPOSURE";
3371
3398
  Exposure2["PRIVATE_EXPOSURE"] = "PRIVATE_EXPOSURE";
@@ -6094,6 +6121,30 @@ function editorInstallation({
6094
6121
  compData: { editorInstallation: data }
6095
6122
  };
6096
6123
  }
6124
+ function appActions({
6125
+ id,
6126
+ data,
6127
+ name
6128
+ }) {
6129
+ return {
6130
+ compId: id,
6131
+ compName: name,
6132
+ compType: "APP_ACTIONS" /* APP_ACTIONS */,
6133
+ compData: { appActions: data }
6134
+ };
6135
+ }
6136
+ function rolloutStepExecutor({
6137
+ id,
6138
+ data,
6139
+ name
6140
+ }) {
6141
+ return {
6142
+ compId: id,
6143
+ compName: name,
6144
+ compType: "ROLLOUT_STEP_EXECUTOR" /* ROLLOUT_STEP_EXECUTOR */,
6145
+ compData: { rolloutStepExecutor: data }
6146
+ };
6147
+ }
6097
6148
  // Annotate the CommonJS export names for ESM import in node:
6098
6149
  0 && (module.exports = {
6099
6150
  A11yAttributes,
@@ -6105,11 +6156,13 @@ function editorInstallation({
6105
6156
  ActionName,
6106
6157
  ActionSPIConfigInterfaceConfigurationType,
6107
6158
  ActionType,
6159
+ ActionsConfigSource,
6108
6160
  AddressComponentType,
6109
6161
  AddressInfoTag,
6110
6162
  AlgorithmType,
6111
6163
  Alignment,
6112
6164
  AndroidStyle,
6165
+ AppExecutionType,
6113
6166
  AppType,
6114
6167
  AppointmentFormat,
6115
6168
  Archetype,
@@ -6156,6 +6209,7 @@ function editorInstallation({
6156
6209
  CustomFieldsType,
6157
6210
  DataType,
6158
6211
  DecorationType,
6212
+ DeeplinkFeature,
6159
6213
  Default,
6160
6214
  DefaultCountryConfigType,
6161
6215
  DefaultTextStyle,
@@ -6376,6 +6430,7 @@ function editorInstallation({
6376
6430
  aiAssistantAction,
6377
6431
  alertEnricher,
6378
6432
  analyticsProductCatalog,
6433
+ appActions,
6379
6434
  appConfig,
6380
6435
  appRouter,
6381
6436
  applicationAutomation,
@@ -6547,6 +6602,7 @@ function editorInstallation({
6547
6602
  reserved,
6548
6603
  restaurantsPos,
6549
6604
  restaurantsPosProviderSettingsServicePlugin,
6605
+ rolloutStepExecutor,
6550
6606
  sdkDefinition,
6551
6607
  sdkExports,
6552
6608
  seoKeywordsSuggestions,