@wix/app-extensions 1.0.0 → 1.0.1

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.
@@ -1727,7 +1727,8 @@ declare enum ComponentType {
1727
1727
  BOOKINGS_VALIDATION_PROVIDER = "BOOKINGS_VALIDATION_PROVIDER",
1728
1728
  APP_ROUTER = "APP_ROUTER",
1729
1729
  WIXEL_BINDING = "WIXEL_BINDING",
1730
- SHUB_MARKETPLACE_PROVIDER = "SHUB_MARKETPLACE_PROVIDER"
1730
+ SHUB_MARKETPLACE_PROVIDER = "SHUB_MARKETPLACE_PROVIDER",
1731
+ GENERIC_FUNCTION_ACTIVATION = "GENERIC_FUNCTION_ACTIVATION"
1731
1732
  }
1732
1733
  interface CustomChargesConfig {
1733
1734
  /**
@@ -2555,6 +2555,18 @@ function shubMarketplaceProvider({
2555
2555
  compData: { shubMarketplaceProvider: data }
2556
2556
  };
2557
2557
  }
2558
+ function genericFunctionActivation({
2559
+ id,
2560
+ data,
2561
+ name
2562
+ }) {
2563
+ return {
2564
+ compId: id,
2565
+ compName: name,
2566
+ compType: "GENERIC_FUNCTION_ACTIVATION" /* GENERIC_FUNCTION_ACTIVATION */,
2567
+ compData: { genericFunctionActivation: data }
2568
+ };
2569
+ }
2558
2570
  export {
2559
2571
  aiAssistant,
2560
2572
  aiAssistantAction,
@@ -2668,6 +2680,7 @@ export {
2668
2680
  functionRecipe,
2669
2681
  functionsAssistantTools,
2670
2682
  functionsShopPriceProvider,
2683
+ genericFunctionActivation,
2671
2684
  genericHooks,
2672
2685
  giftCardsProvider,
2673
2686
  googleBusinessProfileFeatureProvider,