@wix/app-extensions 1.0.78 → 1.0.80
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 +21 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +19 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +110 -18
- package/build/trusted/cjs/index.js +21 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +110 -18
- package/build/trusted/es/index.mjs +19 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/index.mjs
CHANGED
|
@@ -2939,6 +2939,12 @@ var PremiumProviderFailurePolicy = /* @__PURE__ */ ((PremiumProviderFailurePolic
|
|
|
2939
2939
|
PremiumProviderFailurePolicy2["FAIL_CLOSED"] = "FAIL_CLOSED";
|
|
2940
2940
|
return PremiumProviderFailurePolicy2;
|
|
2941
2941
|
})(PremiumProviderFailurePolicy || {});
|
|
2942
|
+
var IdentityHttpMethod = /* @__PURE__ */ ((IdentityHttpMethod2) => {
|
|
2943
|
+
IdentityHttpMethod2["UNKNOWN_IDENTITY_HTTP_METHOD"] = "UNKNOWN_IDENTITY_HTTP_METHOD";
|
|
2944
|
+
IdentityHttpMethod2["GET"] = "GET";
|
|
2945
|
+
IdentityHttpMethod2["POST"] = "POST";
|
|
2946
|
+
return IdentityHttpMethod2;
|
|
2947
|
+
})(IdentityHttpMethod || {});
|
|
2942
2948
|
var ScopeSeparator = /* @__PURE__ */ ((ScopeSeparator2) => {
|
|
2943
2949
|
ScopeSeparator2["UNKNOWN_SCOPE_SEPARATOR"] = "UNKNOWN_SCOPE_SEPARATOR";
|
|
2944
2950
|
ScopeSeparator2["SPACE"] = "SPACE";
|
|
@@ -2951,6 +2957,17 @@ var TokenEndpointAuthMethod = /* @__PURE__ */ ((TokenEndpointAuthMethod2) => {
|
|
|
2951
2957
|
TokenEndpointAuthMethod2["CLIENT_SECRET_BASIC"] = "CLIENT_SECRET_BASIC";
|
|
2952
2958
|
return TokenEndpointAuthMethod2;
|
|
2953
2959
|
})(TokenEndpointAuthMethod || {});
|
|
2960
|
+
var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
|
|
2961
|
+
DispatchHttpMethod2["UNKNOWN_DISPATCH_HTTP_METHOD"] = "UNKNOWN_DISPATCH_HTTP_METHOD";
|
|
2962
|
+
DispatchHttpMethod2["GET"] = "GET";
|
|
2963
|
+
DispatchHttpMethod2["POST"] = "POST";
|
|
2964
|
+
DispatchHttpMethod2["PUT"] = "PUT";
|
|
2965
|
+
DispatchHttpMethod2["PATCH"] = "PATCH";
|
|
2966
|
+
DispatchHttpMethod2["DELETE"] = "DELETE";
|
|
2967
|
+
DispatchHttpMethod2["HEAD"] = "HEAD";
|
|
2968
|
+
DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
|
|
2969
|
+
return DispatchHttpMethod2;
|
|
2970
|
+
})(DispatchHttpMethod || {});
|
|
2954
2971
|
var AuthType = /* @__PURE__ */ ((AuthType2) => {
|
|
2955
2972
|
AuthType2["UNKNOWN_AUTH_TYPE"] = "UNKNOWN_AUTH_TYPE";
|
|
2956
2973
|
AuthType2["OAUTH2"] = "OAUTH2";
|
|
@@ -5869,6 +5886,7 @@ export {
|
|
|
5869
5886
|
DefaultTextStyle,
|
|
5870
5887
|
DesignTarget,
|
|
5871
5888
|
Direction,
|
|
5889
|
+
DispatchHttpMethod,
|
|
5872
5890
|
DisplayFieldType,
|
|
5873
5891
|
DisplayValueEnumDisplayValue,
|
|
5874
5892
|
DividerDataAlignment,
|
|
@@ -5918,6 +5936,7 @@ export {
|
|
|
5918
5936
|
HorizontalDocking,
|
|
5919
5937
|
HostContainerId,
|
|
5920
5938
|
IconType,
|
|
5939
|
+
IdentityHttpMethod,
|
|
5921
5940
|
ImageCategoryTypes,
|
|
5922
5941
|
ImageFit,
|
|
5923
5942
|
ImagePosition,
|