@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.
@@ -172,6 +172,7 @@ __export(index_exports, {
172
172
  LayoutMode: () => LayoutMode,
173
173
  LayoutType: () => LayoutType,
174
174
  Level: () => Level,
175
+ LineCap: () => LineCap,
175
176
  LineStyle: () => LineStyle,
176
177
  LinkTarget: () => LinkTarget,
177
178
  LinkType: () => LinkType,
@@ -236,6 +237,7 @@ __export(index_exports, {
236
237
  RegionScopeScope: () => RegionScopeScope,
237
238
  RegionType: () => RegionType,
238
239
  ReplacementType: () => ReplacementType,
240
+ ReplayProtection: () => ReplayProtection,
239
241
  RequiredIndicator: () => RequiredIndicator,
240
242
  RequiredIndicatorPlacement: () => RequiredIndicatorPlacement,
241
243
  ResizeDirection: () => ResizeDirection,
@@ -255,6 +257,8 @@ __export(index_exports, {
255
257
  ScriptType: () => ScriptType,
256
258
  SidebarDataType: () => SidebarDataType,
257
259
  SidebarEntityType: () => SidebarEntityType,
260
+ SignatureEncoding: () => SignatureEncoding,
261
+ SignedPayload: () => SignedPayload,
258
262
  SimpleType: () => SimpleType,
259
263
  SiteMembersSsrCaching: () => SiteMembersSsrCaching,
260
264
  SizingType: () => SizingType,
@@ -296,6 +300,8 @@ __export(index_exports, {
296
300
  ValueConstraintType: () => ValueConstraintType,
297
301
  Variant: () => Variant,
298
302
  VectorArtCategoryTypes: () => VectorArtCategoryTypes,
303
+ VerificationMethod: () => VerificationMethod,
304
+ VerificationSource: () => VerificationSource,
299
305
  Vertical: () => Vertical,
300
306
  VerticalAlignment: () => VerticalAlignment,
301
307
  VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
@@ -1171,6 +1177,11 @@ var TextAlignment = /* @__PURE__ */ ((TextAlignment2) => {
1171
1177
  TextAlignment2["JUSTIFY"] = "JUSTIFY";
1172
1178
  return TextAlignment2;
1173
1179
  })(TextAlignment || {});
1180
+ var LineCap = /* @__PURE__ */ ((LineCap2) => {
1181
+ LineCap2["SQUARE"] = "SQUARE";
1182
+ LineCap2["ROUND"] = "ROUND";
1183
+ return LineCap2;
1184
+ })(LineCap || {});
1174
1185
  var LineStyle = /* @__PURE__ */ ((LineStyle2) => {
1175
1186
  LineStyle2["SINGLE"] = "SINGLE";
1176
1187
  LineStyle2["DOUBLE"] = "DOUBLE";
@@ -3527,6 +3538,41 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
3527
3538
  DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
3528
3539
  return DispatchHttpMethod2;
3529
3540
  })(DispatchHttpMethod || {});
3541
+ var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
3542
+ VerificationMethod2["UNKNOWN_VERIFICATION_METHOD"] = "UNKNOWN_VERIFICATION_METHOD";
3543
+ VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
3544
+ VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
3545
+ VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
3546
+ VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
3547
+ VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
3548
+ return VerificationMethod2;
3549
+ })(VerificationMethod || {});
3550
+ var VerificationSource = /* @__PURE__ */ ((VerificationSource2) => {
3551
+ VerificationSource2["UNKNOWN_VERIFICATION_SOURCE"] = "UNKNOWN_VERIFICATION_SOURCE";
3552
+ VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
3553
+ VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
3554
+ VerificationSource2["UNSIGNED"] = "UNSIGNED";
3555
+ return VerificationSource2;
3556
+ })(VerificationSource || {});
3557
+ var SignatureEncoding = /* @__PURE__ */ ((SignatureEncoding2) => {
3558
+ SignatureEncoding2["UNKNOWN_SIGNATURE_ENCODING"] = "UNKNOWN_SIGNATURE_ENCODING";
3559
+ SignatureEncoding2["HEX"] = "HEX";
3560
+ SignatureEncoding2["BASE64"] = "BASE64";
3561
+ return SignatureEncoding2;
3562
+ })(SignatureEncoding || {});
3563
+ var SignedPayload = /* @__PURE__ */ ((SignedPayload2) => {
3564
+ SignedPayload2["UNKNOWN_SIGNED_PAYLOAD"] = "UNKNOWN_SIGNED_PAYLOAD";
3565
+ SignedPayload2["RAW_BODY"] = "RAW_BODY";
3566
+ SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
3567
+ SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
3568
+ return SignedPayload2;
3569
+ })(SignedPayload || {});
3570
+ var ReplayProtection = /* @__PURE__ */ ((ReplayProtection2) => {
3571
+ ReplayProtection2["UNKNOWN_REPLAY_PROTECTION"] = "UNKNOWN_REPLAY_PROTECTION";
3572
+ ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
3573
+ ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
3574
+ return ReplayProtection2;
3575
+ })(ReplayProtection || {});
3530
3576
  var AuthType = /* @__PURE__ */ ((AuthType2) => {
3531
3577
  AuthType2["UNKNOWN_AUTH_TYPE"] = "UNKNOWN_AUTH_TYPE";
3532
3578
  AuthType2["OAUTH2"] = "OAUTH2";
@@ -6525,6 +6571,7 @@ function editorExposure({
6525
6571
  LayoutMode,
6526
6572
  LayoutType,
6527
6573
  Level,
6574
+ LineCap,
6528
6575
  LineStyle,
6529
6576
  LinkTarget,
6530
6577
  LinkType,
@@ -6589,6 +6636,7 @@ function editorExposure({
6589
6636
  RegionScopeScope,
6590
6637
  RegionType,
6591
6638
  ReplacementType,
6639
+ ReplayProtection,
6592
6640
  RequiredIndicator,
6593
6641
  RequiredIndicatorPlacement,
6594
6642
  ResizeDirection,
@@ -6608,6 +6656,8 @@ function editorExposure({
6608
6656
  ScriptType,
6609
6657
  SidebarDataType,
6610
6658
  SidebarEntityType,
6659
+ SignatureEncoding,
6660
+ SignedPayload,
6611
6661
  SimpleType,
6612
6662
  SiteMembersSsrCaching,
6613
6663
  SizingType,
@@ -6649,6 +6699,8 @@ function editorExposure({
6649
6699
  ValueConstraintType,
6650
6700
  Variant,
6651
6701
  VectorArtCategoryTypes,
6702
+ VerificationMethod,
6703
+ VerificationSource,
6652
6704
  Vertical,
6653
6705
  VerticalAlignment,
6654
6706
  VerticalAlignmentAlignment,