@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.
@@ -1195,6 +1195,7 @@ var ComponentType = /* @__PURE__ */ ((ComponentType2) => {
1195
1195
  ComponentType2["CHANNEL_DATA_PROVIDER"] = "CHANNEL_DATA_PROVIDER";
1196
1196
  ComponentType2["OAUTH_CLIENT_CONFIGURATION"] = "OAUTH_CLIENT_CONFIGURATION";
1197
1197
  ComponentType2["EDITOR_EXPOSURE"] = "EDITOR_EXPOSURE";
1198
+ ComponentType2["TOOLS_PROVIDER_CONFIG"] = "TOOLS_PROVIDER_CONFIG";
1198
1199
  return ComponentType2;
1199
1200
  })(ComponentType || {});
1200
1201
  var CalendarType = /* @__PURE__ */ ((CalendarType2) => {
@@ -2979,6 +2980,41 @@ var DispatchHttpMethod = /* @__PURE__ */ ((DispatchHttpMethod2) => {
2979
2980
  DispatchHttpMethod2["OPTIONS"] = "OPTIONS";
2980
2981
  return DispatchHttpMethod2;
2981
2982
  })(DispatchHttpMethod || {});
2983
+ var VerificationMethod = /* @__PURE__ */ ((VerificationMethod2) => {
2984
+ VerificationMethod2["UNKNOWN_VERIFICATION_METHOD"] = "UNKNOWN_VERIFICATION_METHOD";
2985
+ VerificationMethod2["HMAC_SHA256"] = "HMAC_SHA256";
2986
+ VerificationMethod2["HMAC_SHA1"] = "HMAC_SHA1";
2987
+ VerificationMethod2["PUBLIC_KEY"] = "PUBLIC_KEY";
2988
+ VerificationMethod2["CALLBACK_TOKEN"] = "CALLBACK_TOKEN";
2989
+ VerificationMethod2["NO_VERIFICATION"] = "NO_VERIFICATION";
2990
+ return VerificationMethod2;
2991
+ })(VerificationMethod || {});
2992
+ var VerificationSource = /* @__PURE__ */ ((VerificationSource2) => {
2993
+ VerificationSource2["UNKNOWN_VERIFICATION_SOURCE"] = "UNKNOWN_VERIFICATION_SOURCE";
2994
+ VerificationSource2["CONNECTOR_WIDE"] = "CONNECTOR_WIDE";
2995
+ VerificationSource2["PER_REGISTRATION"] = "PER_REGISTRATION";
2996
+ VerificationSource2["UNSIGNED"] = "UNSIGNED";
2997
+ return VerificationSource2;
2998
+ })(VerificationSource || {});
2999
+ var SignatureEncoding = /* @__PURE__ */ ((SignatureEncoding2) => {
3000
+ SignatureEncoding2["UNKNOWN_SIGNATURE_ENCODING"] = "UNKNOWN_SIGNATURE_ENCODING";
3001
+ SignatureEncoding2["HEX"] = "HEX";
3002
+ SignatureEncoding2["BASE64"] = "BASE64";
3003
+ return SignatureEncoding2;
3004
+ })(SignatureEncoding || {});
3005
+ var SignedPayload = /* @__PURE__ */ ((SignedPayload2) => {
3006
+ SignedPayload2["UNKNOWN_SIGNED_PAYLOAD"] = "UNKNOWN_SIGNED_PAYLOAD";
3007
+ SignedPayload2["RAW_BODY"] = "RAW_BODY";
3008
+ SignedPayload2["TIMESTAMP_DOT_RAW_BODY"] = "TIMESTAMP_DOT_RAW_BODY";
3009
+ SignedPayload2["VERSION_TIMESTAMP_BODY"] = "VERSION_TIMESTAMP_BODY";
3010
+ return SignedPayload2;
3011
+ })(SignedPayload || {});
3012
+ var ReplayProtection = /* @__PURE__ */ ((ReplayProtection2) => {
3013
+ ReplayProtection2["UNKNOWN_REPLAY_PROTECTION"] = "UNKNOWN_REPLAY_PROTECTION";
3014
+ ReplayProtection2["DELIVERY_ID_HEADER"] = "DELIVERY_ID_HEADER";
3015
+ ReplayProtection2["BODY_HASH_WITHIN_TIMESTAMP_WINDOW"] = "BODY_HASH_WITHIN_TIMESTAMP_WINDOW";
3016
+ return ReplayProtection2;
3017
+ })(ReplayProtection || {});
2982
3018
  var AuthType = /* @__PURE__ */ ((AuthType2) => {
2983
3019
  AuthType2["UNKNOWN_AUTH_TYPE"] = "UNKNOWN_AUTH_TYPE";
2984
3020
  AuthType2["OAUTH2"] = "OAUTH2";
@@ -5823,6 +5859,18 @@ function editorExposure({
5823
5859
  compData: { editorExposure: data }
5824
5860
  };
5825
5861
  }
5862
+ function toolsProviderConfig({
5863
+ id,
5864
+ data,
5865
+ name
5866
+ }) {
5867
+ return {
5868
+ compId: id,
5869
+ compName: name,
5870
+ compType: "TOOLS_PROVIDER_CONFIG" /* TOOLS_PROVIDER_CONFIG */,
5871
+ compData: { toolsProviderConfig: data }
5872
+ };
5873
+ }
5826
5874
  export {
5827
5875
  A11yAttributes,
5828
5876
  AcceptedDirectMessageType,
@@ -6041,6 +6089,7 @@ export {
6041
6089
  RegionScopeScope,
6042
6090
  RegionType,
6043
6091
  ReplacementType,
6092
+ ReplayProtection,
6044
6093
  RequiredIndicator,
6045
6094
  RequiredIndicatorPlacement,
6046
6095
  ResizeDirection,
@@ -6060,6 +6109,8 @@ export {
6060
6109
  ScriptType,
6061
6110
  SidebarDataType,
6062
6111
  SidebarEntityType,
6112
+ SignatureEncoding,
6113
+ SignedPayload,
6063
6114
  SimpleType,
6064
6115
  SiteMembersSsrCaching,
6065
6116
  SizingType,
@@ -6101,6 +6152,8 @@ export {
6101
6152
  ValueConstraintType,
6102
6153
  Variant,
6103
6154
  VectorArtCategoryTypes,
6155
+ VerificationMethod,
6156
+ VerificationSource,
6104
6157
  Vertical,
6105
6158
  VerticalAlignment,
6106
6159
  VerticalAlignmentAlignment,
@@ -6326,6 +6379,7 @@ export {
6326
6379
  taxExemptGroupsProvider,
6327
6380
  taxGroupsProvider,
6328
6381
  textToSpeechActionMessage,
6382
+ toolsProviderConfig,
6329
6383
  topology,
6330
6384
  unifiedLightbox,
6331
6385
  unifiedPage,