@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.
- package/build/cjs/index.d.ts +2 -1
- package/build/cjs/index.js +14 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +2 -1
- package/build/es/index.mjs +13 -0
- package/build/es/index.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +30 -3
- package/build/internal/cjs/index.js +14 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/es/index.d.mts +30 -3
- package/build/internal/es/index.mjs +13 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/index.d.mts
CHANGED
|
@@ -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
|
/**
|
package/build/es/index.mjs
CHANGED
|
@@ -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,
|