@wix/app-extensions 1.0.86 → 1.0.88

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.
@@ -237,6 +237,7 @@ __export(index_exports, {
237
237
  RegionScopeScope: () => RegionScopeScope,
238
238
  RegionType: () => RegionType,
239
239
  ReplacementType: () => ReplacementType,
240
+ ReplayProtection: () => ReplayProtection,
240
241
  RequiredIndicator: () => RequiredIndicator,
241
242
  RequiredIndicatorPlacement: () => RequiredIndicatorPlacement,
242
243
  ResizeDirection: () => ResizeDirection,
@@ -256,6 +257,8 @@ __export(index_exports, {
256
257
  ScriptType: () => ScriptType,
257
258
  SidebarDataType: () => SidebarDataType,
258
259
  SidebarEntityType: () => SidebarEntityType,
260
+ SignatureEncoding: () => SignatureEncoding,
261
+ SignedPayload: () => SignedPayload,
259
262
  SimpleType: () => SimpleType,
260
263
  SiteMembersSsrCaching: () => SiteMembersSsrCaching,
261
264
  SizingType: () => SizingType,
@@ -297,6 +300,8 @@ __export(index_exports, {
297
300
  ValueConstraintType: () => ValueConstraintType,
298
301
  Variant: () => Variant,
299
302
  VectorArtCategoryTypes: () => VectorArtCategoryTypes,
303
+ VerificationMethod: () => VerificationMethod,
304
+ VerificationSource: () => VerificationSource,
300
305
  Vertical: () => Vertical,
301
306
  VerticalAlignment: () => VerticalAlignment,
302
307
  VerticalAlignmentAlignment: () => VerticalAlignmentAlignment,
@@ -522,6 +527,7 @@ __export(index_exports, {
522
527
  taxExemptGroupsProvider: () => taxExemptGroupsProvider,
523
528
  taxGroupsProvider: () => taxGroupsProvider,
524
529
  textToSpeechActionMessage: () => textToSpeechActionMessage,
530
+ toolsProviderConfig: () => toolsProviderConfig,
525
531
  topology: () => topology,
526
532
  unifiedLightbox: () => unifiedLightbox,
527
533
  unifiedPage: () => unifiedPage,
@@ -1749,6 +1755,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
1749
1755
  ComponentType2["CHANNEL_DATA_PROVIDER"] = "CHANNEL_DATA_PROVIDER";
1750
1756
  ComponentType2["OAUTH_CLIENT_CONFIGURATION"] = "OAUTH_CLIENT_CONFIGURATION";
1751
1757
  ComponentType2["EDITOR_EXPOSURE"] = "EDITOR_EXPOSURE";
1758
+ ComponentType2["TOOLS_PROVIDER_CONFIG"] = "TOOLS_PROVIDER_CONFIG";
1752
1759
  return ComponentType2;
1753
1760
  })(ComponentType || {});
1754
1761
  var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
@@ -3533,6 +3540,41 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
3533
3540
  DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
3534
3541
  return DispatchHttpMethod2;
3535
3542
  })(DispatchHttpMethod || {});
3543
+ var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
3544
+ VerificationMethod2["UNKNOWN_VERIFICATION_METHOD"] = "UNKNOWN_VERIFICATION_METHOD";
3545
+ VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
3546
+ VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
3547
+ VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
3548
+ VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
3549
+ VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
3550
+ return VerificationMethod2;
3551
+ })(VerificationMethod || {});
3552
+ var VerificationSource = /* @__PURE__ */ ((VerificationSource2) => {
3553
+ VerificationSource2["UNKNOWN_VERIFICATION_SOURCE"] = "UNKNOWN_VERIFICATION_SOURCE";
3554
+ VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
3555
+ VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
3556
+ VerificationSource2["UNSIGNED"] = "UNSIGNED";
3557
+ return VerificationSource2;
3558
+ })(VerificationSource || {});
3559
+ var SignatureEncoding = /* @__PURE__ */ ((SignatureEncoding2) => {
3560
+ SignatureEncoding2["UNKNOWN_SIGNATURE_ENCODING"] = "UNKNOWN_SIGNATURE_ENCODING";
3561
+ SignatureEncoding2["HEX"] = "HEX";
3562
+ SignatureEncoding2["BASE64"] = "BASE64";
3563
+ return SignatureEncoding2;
3564
+ })(SignatureEncoding || {});
3565
+ var SignedPayload = /* @__PURE__ */ ((SignedPayload2) => {
3566
+ SignedPayload2["UNKNOWN_SIGNED_PAYLOAD"] = "UNKNOWN_SIGNED_PAYLOAD";
3567
+ SignedPayload2["RAW_BODY"] = "RAW_BODY";
3568
+ SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
3569
+ SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
3570
+ return SignedPayload2;
3571
+ })(SignedPayload || {});
3572
+ var ReplayProtection = /* @__PURE__ */ ((ReplayProtection2) => {
3573
+ ReplayProtection2["UNKNOWN_REPLAY_PROTECTION"] = "UNKNOWN_REPLAY_PROTECTION";
3574
+ ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
3575
+ ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
3576
+ return ReplayProtection2;
3577
+ })(ReplayProtection || {});
3536
3578
  var AuthType = /* @__PURE__ */ ((AuthType2) => {
3537
3579
  AuthType2["UNKNOWN_AUTH_TYPE"] = "UNKNOWN_AUTH_TYPE";
3538
3580
  AuthType2["OAUTH2"] = "OAUTH2";
@@ -6377,6 +6419,18 @@ function editorExposure({
6377
6419
  compData: { editorExposure: data }
6378
6420
  };
6379
6421
  }
6422
+ function toolsProviderConfig({
6423
+ id,
6424
+ data,
6425
+ name
6426
+ }) {
6427
+ return {
6428
+ compId: id,
6429
+ compName: name,
6430
+ compType: "TOOLS_PROVIDER_CONFIG" /* TOOLS_PROVIDER_CONFIG */,
6431
+ compData: { toolsProviderConfig: data }
6432
+ };
6433
+ }
6380
6434
  // Annotate the CommonJS export names for ESM import in node:
6381
6435
  0 && (module.exports = {
6382
6436
  A11yAttributes,
@@ -6596,6 +6650,7 @@ function editorExposure({
6596
6650
  RegionScopeScope,
6597
6651
  RegionType,
6598
6652
  ReplacementType,
6653
+ ReplayProtection,
6599
6654
  RequiredIndicator,
6600
6655
  RequiredIndicatorPlacement,
6601
6656
  ResizeDirection,
@@ -6615,6 +6670,8 @@ function editorExposure({
6615
6670
  ScriptType,
6616
6671
  SidebarDataType,
6617
6672
  SidebarEntityType,
6673
+ SignatureEncoding,
6674
+ SignedPayload,
6618
6675
  SimpleType,
6619
6676
  SiteMembersSsrCaching,
6620
6677
  SizingType,
@@ -6656,6 +6713,8 @@ function editorExposure({
6656
6713
  ValueConstraintType,
6657
6714
  Variant,
6658
6715
  VectorArtCategoryTypes,
6716
+ VerificationMethod,
6717
+ VerificationSource,
6659
6718
  Vertical,
6660
6719
  VerticalAlignment,
6661
6720
  VerticalAlignmentAlignment,
@@ -6881,6 +6940,7 @@ function editorExposure({
6881
6940
  taxExemptGroupsProvider,
6882
6941
  taxGroupsProvider,
6883
6942
  textToSpeechActionMessage,
6943
+ toolsProviderConfig,
6884
6944
  topology,
6885
6945
  unifiedLightbox,
6886
6946
  unifiedPage,