@wix/app-extensions 1.0.2 → 1.0.4

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.
@@ -1728,7 +1728,8 @@ declare enum ComponentType {
1728
1728
  APP_ROUTER = "APP_ROUTER",
1729
1729
  WIXEL_BINDING = "WIXEL_BINDING",
1730
1730
  SHUB_MARKETPLACE_PROVIDER = "SHUB_MARKETPLACE_PROVIDER",
1731
- GENERIC_FUNCTION_ACTIVATION = "GENERIC_FUNCTION_ACTIVATION"
1731
+ GENERIC_FUNCTION_ACTIVATION = "GENERIC_FUNCTION_ACTIVATION",
1732
+ BOOKING_ACTION_URLS_PROVIDER = "BOOKING_ACTION_URLS_PROVIDER"
1732
1733
  }
1733
1734
  interface CustomChargesConfig {
1734
1735
  /**
@@ -51,6 +51,7 @@ __export(index_exports, {
51
51
  billingSettings: () => billingSettings,
52
52
  billingTaxIdValidator: () => billingTaxIdValidator,
53
53
  blogPaywallProvider: () => blogPaywallProvider,
54
+ bookingActionUrlsProvider: () => bookingActionUrlsProvider,
54
55
  bookingAutomationsConfiguration: () => bookingAutomationsConfiguration,
55
56
  bookingPolicyProvider: () => bookingPolicyProvider,
56
57
  bookingsExternalCalendarProvider: () => bookingsExternalCalendarProvider,
@@ -2806,6 +2807,18 @@ function genericFunctionActivation({
2806
2807
  compData: { genericFunctionActivation: data }
2807
2808
  };
2808
2809
  }
2810
+ function bookingActionUrlsProvider({
2811
+ id,
2812
+ data,
2813
+ name
2814
+ }) {
2815
+ return {
2816
+ compId: id,
2817
+ compName: name,
2818
+ compType: "BOOKING_ACTION_URLS_PROVIDER" /* BOOKING_ACTION_URLS_PROVIDER */,
2819
+ compData: { bookingActionUrlsProvider: data }
2820
+ };
2821
+ }
2809
2822
  // Annotate the CommonJS export names for ESM import in node:
2810
2823
  0 && (module.exports = {
2811
2824
  aiAssistant,
@@ -2839,6 +2852,7 @@ function genericFunctionActivation({
2839
2852
  billingSettings,
2840
2853
  billingTaxIdValidator,
2841
2854
  blogPaywallProvider,
2855
+ bookingActionUrlsProvider,
2842
2856
  bookingAutomationsConfiguration,
2843
2857
  bookingPolicyProvider,
2844
2858
  bookingsExternalCalendarProvider,