@wix/app-extensions 1.0.151 → 1.0.153
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 +11 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +10 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +76 -2
- package/build/trusted/cjs/index.js +11 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +76 -2
- package/build/trusted/es/index.mjs +10 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
- package/README.md +0 -20
package/build/cjs/index.js
CHANGED
|
@@ -150,6 +150,7 @@ __export(index_exports, {
|
|
|
150
150
|
Horizontal: () => Horizontal,
|
|
151
151
|
HorizontalDocking: () => HorizontalDocking,
|
|
152
152
|
HostContainerId: () => HostContainerId,
|
|
153
|
+
HttpMethod: () => HttpMethod,
|
|
153
154
|
IconType: () => IconType,
|
|
154
155
|
IdentityHttpMethod: () => IdentityHttpMethod,
|
|
155
156
|
ImageCategoryTypes: () => ImageCategoryTypes,
|
|
@@ -3695,6 +3696,15 @@ var IdentityHttpMethod = /* @__PURE__ */ ((IdentityHttpMethod2) => {
|
|
|
3695
3696
|
IdentityHttpMethod2["POST"] = "POST";
|
|
3696
3697
|
return IdentityHttpMethod2;
|
|
3697
3698
|
})(IdentityHttpMethod || {});
|
|
3699
|
+
var HttpMethod = /* @__PURE__ */ ((HttpMethod2) => {
|
|
3700
|
+
HttpMethod2["UNKNOWN_HTTP_METHOD"] = "UNKNOWN_HTTP_METHOD";
|
|
3701
|
+
HttpMethod2["GET"] = "GET";
|
|
3702
|
+
HttpMethod2["POST"] = "POST";
|
|
3703
|
+
HttpMethod2["PUT"] = "PUT";
|
|
3704
|
+
HttpMethod2["PATCH"] = "PATCH";
|
|
3705
|
+
HttpMethod2["DELETE"] = "DELETE";
|
|
3706
|
+
return HttpMethod2;
|
|
3707
|
+
})(HttpMethod || {});
|
|
3698
3708
|
var RevocationHttpMethod = /* @__PURE__ */ ((RevocationHttpMethod2) => {
|
|
3699
3709
|
RevocationHttpMethod2["UNKNOWN_REVOCATION_HTTP_METHOD"] = "UNKNOWN_REVOCATION_HTTP_METHOD";
|
|
3700
3710
|
RevocationHttpMethod2["POST"] = "POST";
|
|
@@ -6825,6 +6835,7 @@ function webhookProviderModule({
|
|
|
6825
6835
|
Horizontal,
|
|
6826
6836
|
HorizontalDocking,
|
|
6827
6837
|
HostContainerId,
|
|
6838
|
+
HttpMethod,
|
|
6828
6839
|
IconType,
|
|
6829
6840
|
IdentityHttpMethod,
|
|
6830
6841
|
ImageCategoryTypes,
|