@wix/app-extensions 1.0.3 → 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
  /**
@@ -2567,6 +2567,18 @@ function genericFunctionActivation({
2567
2567
  compData: { genericFunctionActivation: data }
2568
2568
  };
2569
2569
  }
2570
+ function bookingActionUrlsProvider({
2571
+ id,
2572
+ data,
2573
+ name
2574
+ }) {
2575
+ return {
2576
+ compId: id,
2577
+ compName: name,
2578
+ compType: "BOOKING_ACTION_URLS_PROVIDER" /* BOOKING_ACTION_URLS_PROVIDER */,
2579
+ compData: { bookingActionUrlsProvider: data }
2580
+ };
2581
+ }
2570
2582
  export {
2571
2583
  aiAssistant,
2572
2584
  aiAssistantAction,
@@ -2599,6 +2611,7 @@ export {
2599
2611
  billingSettings,
2600
2612
  billingTaxIdValidator,
2601
2613
  blogPaywallProvider,
2614
+ bookingActionUrlsProvider,
2602
2615
  bookingAutomationsConfiguration,
2603
2616
  bookingPolicyProvider,
2604
2617
  bookingsExternalCalendarProvider,