@wix/app-extensions 1.0.85 → 1.0.87
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 +52 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +46 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +383 -4
- package/build/trusted/cjs/index.js +52 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +383 -4
- package/build/trusted/es/index.mjs +46 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/es/index.mjs
CHANGED
|
@@ -618,6 +618,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
|
|
|
618
618
|
TextAlignment2["JUSTIFY"] = "JUSTIFY";
|
|
619
619
|
return TextAlignment2;
|
|
620
620
|
})(TextAlignment || {});
|
|
621
|
+
var LineCap = /* @__PURE__ */ ((LineCap2) => {
|
|
622
|
+
LineCap2["SQUARE"] = "SQUARE";
|
|
623
|
+
LineCap2["ROUND"] = "ROUND";
|
|
624
|
+
return LineCap2;
|
|
625
|
+
})(LineCap || {});
|
|
621
626
|
var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
|
|
622
627
|
LineStyle2["SINGLE"] = "SINGLE";
|
|
623
628
|
LineStyle2["DOUBLE"] = "DOUBLE";
|
|
@@ -2974,6 +2979,41 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
|
|
|
2974
2979
|
DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
|
|
2975
2980
|
return DispatchHttpMethod2;
|
|
2976
2981
|
})(DispatchHttpMethod || {});
|
|
2982
|
+
var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
|
|
2983
|
+
VerificationMethod2["UNKNOWN_VERIFICATION_METHOD"] = "UNKNOWN_VERIFICATION_METHOD";
|
|
2984
|
+
VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
|
|
2985
|
+
VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
|
|
2986
|
+
VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
|
|
2987
|
+
VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
|
|
2988
|
+
VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
|
|
2989
|
+
return VerificationMethod2;
|
|
2990
|
+
})(VerificationMethod || {});
|
|
2991
|
+
var VerificationSource = /* @__PURE__ */ ((VerificationSource2) => {
|
|
2992
|
+
VerificationSource2["UNKNOWN_VERIFICATION_SOURCE"] = "UNKNOWN_VERIFICATION_SOURCE";
|
|
2993
|
+
VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
|
|
2994
|
+
VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
|
|
2995
|
+
VerificationSource2["UNSIGNED"] = "UNSIGNED";
|
|
2996
|
+
return VerificationSource2;
|
|
2997
|
+
})(VerificationSource || {});
|
|
2998
|
+
var SignatureEncoding = /* @__PURE__ */ ((SignatureEncoding2) => {
|
|
2999
|
+
SignatureEncoding2["UNKNOWN_SIGNATURE_ENCODING"] = "UNKNOWN_SIGNATURE_ENCODING";
|
|
3000
|
+
SignatureEncoding2["HEX"] = "HEX";
|
|
3001
|
+
SignatureEncoding2["BASE64"] = "BASE64";
|
|
3002
|
+
return SignatureEncoding2;
|
|
3003
|
+
})(SignatureEncoding || {});
|
|
3004
|
+
var SignedPayload = /* @__PURE__ */ ((SignedPayload2) => {
|
|
3005
|
+
SignedPayload2["UNKNOWN_SIGNED_PAYLOAD"] = "UNKNOWN_SIGNED_PAYLOAD";
|
|
3006
|
+
SignedPayload2["RAW_BODY"] = "RAW_BODY";
|
|
3007
|
+
SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
|
|
3008
|
+
SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
|
|
3009
|
+
return SignedPayload2;
|
|
3010
|
+
})(SignedPayload || {});
|
|
3011
|
+
var ReplayProtection = /* @__PURE__ */ ((ReplayProtection2) => {
|
|
3012
|
+
ReplayProtection2["UNKNOWN_REPLAY_PROTECTION"] = "UNKNOWN_REPLAY_PROTECTION";
|
|
3013
|
+
ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
|
|
3014
|
+
ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
|
|
3015
|
+
return ReplayProtection2;
|
|
3016
|
+
})(ReplayProtection || {});
|
|
2977
3017
|
var AuthType = /* @__PURE__ */ ((AuthType2) => {
|
|
2978
3018
|
AuthType2["UNKNOWN_AUTH_TYPE"] = "UNKNOWN_AUTH_TYPE";
|
|
2979
3019
|
AuthType2["OAUTH2"] = "OAUTH2";
|
|
@@ -5971,6 +6011,7 @@ export {
|
|
|
5971
6011
|
LayoutMode,
|
|
5972
6012
|
LayoutType,
|
|
5973
6013
|
Level,
|
|
6014
|
+
LineCap,
|
|
5974
6015
|
LineStyle,
|
|
5975
6016
|
LinkTarget,
|
|
5976
6017
|
LinkType,
|
|
@@ -6035,6 +6076,7 @@ export {
|
|
|
6035
6076
|
RegionScopeScope,
|
|
6036
6077
|
RegionType,
|
|
6037
6078
|
ReplacementType,
|
|
6079
|
+
ReplayProtection,
|
|
6038
6080
|
RequiredIndicator,
|
|
6039
6081
|
RequiredIndicatorPlacement,
|
|
6040
6082
|
ResizeDirection,
|
|
@@ -6054,6 +6096,8 @@ export {
|
|
|
6054
6096
|
ScriptType,
|
|
6055
6097
|
SidebarDataType,
|
|
6056
6098
|
SidebarEntityType,
|
|
6099
|
+
SignatureEncoding,
|
|
6100
|
+
SignedPayload,
|
|
6057
6101
|
SimpleType,
|
|
6058
6102
|
SiteMembersSsrCaching,
|
|
6059
6103
|
SizingType,
|
|
@@ -6095,6 +6139,8 @@ export {
|
|
|
6095
6139
|
ValueConstraintType,
|
|
6096
6140
|
Variant,
|
|
6097
6141
|
VectorArtCategoryTypes,
|
|
6142
|
+
VerificationMethod,
|
|
6143
|
+
VerificationSource,
|
|
6098
6144
|
Vertical,
|
|
6099
6145
|
VerticalAlignment,
|
|
6100
6146
|
VerticalAlignmentAlignment,
|