@wix/app-extensions 1.0.153 → 1.0.155
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 +10 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +9 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +35 -3
- package/build/trusted/cjs/index.js +10 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +35 -3
- package/build/trusted/es/index.mjs +9 -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";
|
|
@@ -3621,6 +3629,7 @@ var AssetType = /* @__PURE__ */ ((AssetType2) => {
|
|
|
3621
3629
|
AssetType2["FONT"] = "FONT";
|
|
3622
3630
|
AssetType2["ICONS"] = "ICONS";
|
|
3623
3631
|
AssetType2["STORY"] = "STORY";
|
|
3632
|
+
AssetType2["MODEL_3D"] = "MODEL_3D";
|
|
3624
3633
|
return AssetType2;
|
|
3625
3634
|
})(AssetType || {});
|
|
3626
3635
|
var FileMediaType = /* @__PURE__ */ ((FileMediaType2) => {
|
|
@@ -6834,6 +6843,7 @@ function webhookProviderModule({
|
|
|
6834
6843
|
HookType,
|
|
6835
6844
|
Horizontal,
|
|
6836
6845
|
HorizontalDocking,
|
|
6846
|
+
HorizontalPosition,
|
|
6837
6847
|
HostContainerId,
|
|
6838
6848
|
HttpMethod,
|
|
6839
6849
|
IconType,
|