@wix/app-extensions 1.0.152 → 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 +20 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +18 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +107 -2
- package/build/trusted/cjs/index.js +20 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +107 -2
- package/build/trusted/es/index.mjs +18 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -149,7 +149,9 @@ __export(index_exports, {
|
|
|
149
149
|
HookType: () => HookType,
|
|
150
150
|
Horizontal: () => Horizontal,
|
|
151
151
|
HorizontalDocking: () => HorizontalDocking,
|
|
152
|
+
HorizontalPosition: () => HorizontalPosition,
|
|
152
153
|
HostContainerId: () => HostContainerId,
|
|
154
|
+
HttpMethod: () => HttpMethod,
|
|
153
155
|
IconType: () => IconType,
|
|
154
156
|
IdentityHttpMethod: () => IdentityHttpMethod,
|
|
155
157
|
ImageCategoryTypes: () => ImageCategoryTypes,
|
|
@@ -2537,6 +2539,13 @@ var ImportanceLevel = /* @__PURE__ */ ((ImportanceLevel2) => {
|
|
|
2537
2539
|
ImportanceLevel2["HIGH"] = "HIGH";
|
|
2538
2540
|
return ImportanceLevel2;
|
|
2539
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 || {});
|
|
2540
2549
|
var Width = /* @__PURE__ */ ((Width2) => {
|
|
2541
2550
|
Width2["UNKNOWN_WIDTH"] = "UNKNOWN_WIDTH";
|
|
2542
2551
|
Width2["SMALL"] = "SMALL";
|
|
@@ -3695,6 +3704,15 @@ var IdentityHttpMethod = /* @__PURE__ */ ((IdentityHttpMethod2) => {
|
|
|
3695
3704
|
IdentityHttpMethod2["POST"] = "POST";
|
|
3696
3705
|
return IdentityHttpMethod2;
|
|
3697
3706
|
})(IdentityHttpMethod || {});
|
|
3707
|
+
var HttpMethod = /* @__PURE__ */ ((HttpMethod2) => {
|
|
3708
|
+
HttpMethod2["UNKNOWN_HTTP_METHOD"] = "UNKNOWN_HTTP_METHOD";
|
|
3709
|
+
HttpMethod2["GET"] = "GET";
|
|
3710
|
+
HttpMethod2["POST"] = "POST";
|
|
3711
|
+
HttpMethod2["PUT"] = "PUT";
|
|
3712
|
+
HttpMethod2["PATCH"] = "PATCH";
|
|
3713
|
+
HttpMethod2["DELETE"] = "DELETE";
|
|
3714
|
+
return HttpMethod2;
|
|
3715
|
+
})(HttpMethod || {});
|
|
3698
3716
|
var RevocationHttpMethod = /* @__PURE__ */ ((RevocationHttpMethod2) => {
|
|
3699
3717
|
RevocationHttpMethod2["UNKNOWN_REVOCATION_HTTP_METHOD"] = "UNKNOWN_REVOCATION_HTTP_METHOD";
|
|
3700
3718
|
RevocationHttpMethod2["POST"] = "POST";
|
|
@@ -6824,7 +6842,9 @@ function webhookProviderModule({
|
|
|
6824
6842
|
HookType,
|
|
6825
6843
|
Horizontal,
|
|
6826
6844
|
HorizontalDocking,
|
|
6845
|
+
HorizontalPosition,
|
|
6827
6846
|
HostContainerId,
|
|
6847
|
+
HttpMethod,
|
|
6828
6848
|
IconType,
|
|
6829
6849
|
IdentityHttpMethod,
|
|
6830
6850
|
ImageCategoryTypes,
|