@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/es/index.mjs
CHANGED
|
@@ -1955,6 +1955,13 @@ var ImportanceLevel = /* @__PURE__ */ ((ImportanceLevel2) => {
|
|
|
1955
1955
|
ImportanceLevel2["HIGH"] = "HIGH";
|
|
1956
1956
|
return ImportanceLevel2;
|
|
1957
1957
|
})(ImportanceLevel || {});
|
|
1958
|
+
var HorizontalPosition = /* @__PURE__ */ ((HorizontalPosition2) => {
|
|
1959
|
+
HorizontalPosition2["UNKNOWN_HORIZONTAL_POSITION"] = "UNKNOWN_HORIZONTAL_POSITION";
|
|
1960
|
+
HorizontalPosition2["LEFT"] = "LEFT";
|
|
1961
|
+
HorizontalPosition2["CENTER"] = "CENTER";
|
|
1962
|
+
HorizontalPosition2["RIGHT"] = "RIGHT";
|
|
1963
|
+
return HorizontalPosition2;
|
|
1964
|
+
})(HorizontalPosition || {});
|
|
1958
1965
|
var Width = /* @__PURE__ */ ((Width2) => {
|
|
1959
1966
|
Width2["UNKNOWN_WIDTH"] = "UNKNOWN_WIDTH";
|
|
1960
1967
|
Width2["SMALL"] = "SMALL";
|
|
@@ -3113,6 +3120,15 @@ var IdentityHttpMethod = /* @__PURE__ */ ((IdentityHttpMethod2) => {
|
|
|
3113
3120
|
IdentityHttpMethod2["POST"] = "POST";
|
|
3114
3121
|
return IdentityHttpMethod2;
|
|
3115
3122
|
})(IdentityHttpMethod || {});
|
|
3123
|
+
var HttpMethod = /* @__PURE__ */ ((HttpMethod2) => {
|
|
3124
|
+
HttpMethod2["UNKNOWN_HTTP_METHOD"] = "UNKNOWN_HTTP_METHOD";
|
|
3125
|
+
HttpMethod2["GET"] = "GET";
|
|
3126
|
+
HttpMethod2["POST"] = "POST";
|
|
3127
|
+
HttpMethod2["PUT"] = "PUT";
|
|
3128
|
+
HttpMethod2["PATCH"] = "PATCH";
|
|
3129
|
+
HttpMethod2["DELETE"] = "DELETE";
|
|
3130
|
+
return HttpMethod2;
|
|
3131
|
+
})(HttpMethod || {});
|
|
3116
3132
|
var RevocationHttpMethod = /* @__PURE__ */ ((RevocationHttpMethod2) => {
|
|
3117
3133
|
RevocationHttpMethod2["UNKNOWN_REVOCATION_HTTP_METHOD"] = "UNKNOWN_REVOCATION_HTTP_METHOD";
|
|
3118
3134
|
RevocationHttpMethod2["POST"] = "POST";
|
|
@@ -6241,7 +6257,9 @@ export {
|
|
|
6241
6257
|
HookType,
|
|
6242
6258
|
Horizontal,
|
|
6243
6259
|
HorizontalDocking,
|
|
6260
|
+
HorizontalPosition,
|
|
6244
6261
|
HostContainerId,
|
|
6262
|
+
HttpMethod,
|
|
6245
6263
|
IconType,
|
|
6246
6264
|
IdentityHttpMethod,
|
|
6247
6265
|
ImageCategoryTypes,
|