@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/cjs/index.d.ts
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/cjs/index.js
CHANGED
|
@@ -132,6 +132,7 @@ __export(index_exports, {
|
|
|
132
132
|
functionRecipe: () => functionRecipe,
|
|
133
133
|
functionsAssistantTools: () => functionsAssistantTools,
|
|
134
134
|
functionsShopPriceProvider: () => functionsShopPriceProvider,
|
|
135
|
+
genericFunctionActivation: () => genericFunctionActivation,
|
|
135
136
|
genericHooks: () => genericHooks,
|
|
136
137
|
giftCardsProvider: () => giftCardsProvider,
|
|
137
138
|
googleBusinessProfileFeatureProvider: () => googleBusinessProfileFeatureProvider,
|
|
@@ -2793,6 +2794,18 @@ function shubMarketplaceProvider({
|
|
|
2793
2794
|
compData: { shubMarketplaceProvider: data }
|
|
2794
2795
|
};
|
|
2795
2796
|
}
|
|
2797
|
+
function genericFunctionActivation({
|
|
2798
|
+
id,
|
|
2799
|
+
data,
|
|
2800
|
+
name
|
|
2801
|
+
}) {
|
|
2802
|
+
return {
|
|
2803
|
+
compId: id,
|
|
2804
|
+
compName: name,
|
|
2805
|
+
compType: "GENERIC_FUNCTION_ACTIVATION" /* GENERIC_FUNCTION_ACTIVATION */,
|
|
2806
|
+
compData: { genericFunctionActivation: data }
|
|
2807
|
+
};
|
|
2808
|
+
}
|
|
2796
2809
|
// Annotate the CommonJS export names for ESM import in node:
|
|
2797
2810
|
0 && (module.exports = {
|
|
2798
2811
|
aiAssistant,
|
|
@@ -2907,6 +2920,7 @@ function shubMarketplaceProvider({
|
|
|
2907
2920
|
functionRecipe,
|
|
2908
2921
|
functionsAssistantTools,
|
|
2909
2922
|
functionsShopPriceProvider,
|
|
2923
|
+
genericFunctionActivation,
|
|
2910
2924
|
genericHooks,
|
|
2911
2925
|
giftCardsProvider,
|
|
2912
2926
|
googleBusinessProfileFeatureProvider,
|