@wix/app-extensions 1.0.152 → 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/build/es/index.mjs
CHANGED
|
@@ -3113,6 +3113,15 @@ var IdentityHttpMethod = /* @__PURE__ */ ((IdentityHttpMethod2) => {
|
|
|
3113
3113
|
IdentityHttpMethod2["POST"] = "POST";
|
|
3114
3114
|
return IdentityHttpMethod2;
|
|
3115
3115
|
})(IdentityHttpMethod || {});
|
|
3116
|
+
var HttpMethod = /* @__PURE__ */ ((HttpMethod2) => {
|
|
3117
|
+
HttpMethod2["UNKNOWN_HTTP_METHOD"] = "UNKNOWN_HTTP_METHOD";
|
|
3118
|
+
HttpMethod2["GET"] = "GET";
|
|
3119
|
+
HttpMethod2["POST"] = "POST";
|
|
3120
|
+
HttpMethod2["PUT"] = "PUT";
|
|
3121
|
+
HttpMethod2["PATCH"] = "PATCH";
|
|
3122
|
+
HttpMethod2["DELETE"] = "DELETE";
|
|
3123
|
+
return HttpMethod2;
|
|
3124
|
+
})(HttpMethod || {});
|
|
3116
3125
|
var RevocationHttpMethod = /* @__PURE__ */ ((RevocationHttpMethod2) => {
|
|
3117
3126
|
RevocationHttpMethod2["UNKNOWN_REVOCATION_HTTP_METHOD"] = "UNKNOWN_REVOCATION_HTTP_METHOD";
|
|
3118
3127
|
RevocationHttpMethod2["POST"] = "POST";
|
|
@@ -6242,6 +6251,7 @@ export {
|
|
|
6242
6251
|
Horizontal,
|
|
6243
6252
|
HorizontalDocking,
|
|
6244
6253
|
HostContainerId,
|
|
6254
|
+
HttpMethod,
|
|
6245
6255
|
IconType,
|
|
6246
6256
|
IdentityHttpMethod,
|
|
6247
6257
|
ImageCategoryTypes,
|