@wix/app-extensions 1.0.137 → 1.0.138
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.js +15 -7
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +14 -7
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +57 -4
- package/build/trusted/cjs/index.js +15 -7
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +57 -4
- package/build/trusted/es/index.mjs +14 -7
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -136,6 +136,7 @@ __export(index_exports, {
|
|
|
136
136
|
Format: () => Format,
|
|
137
137
|
FunctionRole: () => FunctionRole,
|
|
138
138
|
GIFType: () => GIFType,
|
|
139
|
+
GenericHookConfigHookType: () => GenericHookConfigHookType,
|
|
139
140
|
GradientType: () => GradientType,
|
|
140
141
|
GroupType: () => GroupType,
|
|
141
142
|
HTMLDataSource: () => HTMLDataSource,
|
|
@@ -874,13 +875,13 @@ var Default = /* @__PURE__ */ ((Default2) => {
|
|
|
874
875
|
Default2["POS"] = "POS";
|
|
875
876
|
return Default2;
|
|
876
877
|
})(Default || {});
|
|
877
|
-
var
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
return
|
|
883
|
-
})(
|
|
878
|
+
var GenericHookConfigHookType = /* @__PURE__ */ ((GenericHookConfigHookType2) => {
|
|
879
|
+
GenericHookConfigHookType2["UNDEFINED"] = "UNDEFINED";
|
|
880
|
+
GenericHookConfigHookType2["BEFORE_BLOCKING"] = "BEFORE_BLOCKING";
|
|
881
|
+
GenericHookConfigHookType2["BEFORE"] = "BEFORE";
|
|
882
|
+
GenericHookConfigHookType2["AFTER"] = "AFTER";
|
|
883
|
+
return GenericHookConfigHookType2;
|
|
884
|
+
})(GenericHookConfigHookType || {});
|
|
884
885
|
var ActionSPIConfigInterfaceConfigurationType = /* @__PURE__ */ ((ActionSPIConfigInterfaceConfigurationType2) => {
|
|
885
886
|
ActionSPIConfigInterfaceConfigurationType2["UNKNOWN_TYPE"] = "UNKNOWN_TYPE";
|
|
886
887
|
ActionSPIConfigInterfaceConfigurationType2["WIDGET_COMPONENT"] = "WIDGET_COMPONENT";
|
|
@@ -3412,6 +3413,12 @@ var Horizontal = /* @__PURE__ */ ((Horizontal2) => {
|
|
|
3412
3413
|
Horizontal2["RIGHT"] = "RIGHT";
|
|
3413
3414
|
return Horizontal2;
|
|
3414
3415
|
})(Horizontal || {});
|
|
3416
|
+
var HookType = /* @__PURE__ */ ((HookType2) => {
|
|
3417
|
+
HookType2["UNKNOWN_HOOK_TYPE"] = "UNKNOWN_HOOK_TYPE";
|
|
3418
|
+
HookType2["BEFORE"] = "BEFORE";
|
|
3419
|
+
HookType2["AFTER"] = "AFTER";
|
|
3420
|
+
return HookType2;
|
|
3421
|
+
})(HookType || {});
|
|
3415
3422
|
var RestrictionLevel = /* @__PURE__ */ ((RestrictionLevel2) => {
|
|
3416
3423
|
RestrictionLevel2["UNKNOWN_RESTRICTION_TYPE"] = "UNKNOWN_RESTRICTION_TYPE";
|
|
3417
3424
|
RestrictionLevel2["WARNING"] = "WARNING";
|
|
@@ -6741,6 +6748,7 @@ function componentsDeletionHookProvider({
|
|
|
6741
6748
|
Format,
|
|
6742
6749
|
FunctionRole,
|
|
6743
6750
|
GIFType,
|
|
6751
|
+
GenericHookConfigHookType,
|
|
6744
6752
|
GradientType,
|
|
6745
6753
|
GroupType,
|
|
6746
6754
|
HTMLDataSource,
|