@wix/app-extensions 1.0.153 → 1.0.154
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 +9 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +8 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +32 -1
- package/build/trusted/cjs/index.js +9 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +32 -1
- package/build/trusted/es/index.mjs +8 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -149,6 +149,7 @@ __export(index_exports, {
|
|
|
149
149
|
HookType: () => HookType,
|
|
150
150
|
Horizontal: () => Horizontal,
|
|
151
151
|
HorizontalDocking: () => HorizontalDocking,
|
|
152
|
+
HorizontalPosition: () => HorizontalPosition,
|
|
152
153
|
HostContainerId: () => HostContainerId,
|
|
153
154
|
HttpMethod: () => HttpMethod,
|
|
154
155
|
IconType: () => IconType,
|
|
@@ -2538,6 +2539,13 @@ var ImportanceLevel = /* @__PURE__ */ ((ImportanceLevel2) => {
|
|
|
2538
2539
|
ImportanceLevel2["HIGH"] = "HIGH";
|
|
2539
2540
|
return ImportanceLevel2;
|
|
2540
2541
|
})(ImportanceLevel || {});
|
|
2542
|
+
var HorizontalPosition = /* @__PURE__ */ ((HorizontalPosition2) => {
|
|
2543
|
+
HorizontalPosition2["UNKNOWN_HORIZONTAL_POSITION"] = "UNKNOWN_HORIZONTAL_POSITION";
|
|
2544
|
+
HorizontalPosition2["LEFT"] = "LEFT";
|
|
2545
|
+
HorizontalPosition2["CENTER"] = "CENTER";
|
|
2546
|
+
HorizontalPosition2["RIGHT"] = "RIGHT";
|
|
2547
|
+
return HorizontalPosition2;
|
|
2548
|
+
})(HorizontalPosition || {});
|
|
2541
2549
|
var Width = /* @__PURE__ */ ((Width2) => {
|
|
2542
2550
|
Width2["UNKNOWN_WIDTH"] = "UNKNOWN_WIDTH";
|
|
2543
2551
|
Width2["SMALL"] = "SMALL";
|
|
@@ -6834,6 +6842,7 @@ function webhookProviderModule({
|
|
|
6834
6842
|
HookType,
|
|
6835
6843
|
Horizontal,
|
|
6836
6844
|
HorizontalDocking,
|
|
6845
|
+
HorizontalPosition,
|
|
6837
6846
|
HostContainerId,
|
|
6838
6847
|
HttpMethod,
|
|
6839
6848
|
IconType,
|