@wix/app-extensions 1.0.65 → 1.0.66

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.
@@ -18563,11 +18563,13 @@ declare enum DataType {
18563
18563
  /** A WQL-compliant sort definition for ordering data */
18564
18564
  sort = "sort",
18565
18565
  /** A media type that is ONLY used for binding and not stored in the document store of the site */
18566
- visualMedia = "visualMedia"
18566
+ visualMedia = "visualMedia",
18567
+ /** RicosDocument object type. */
18568
+ ricosDocument = "ricosDocument"
18567
18569
  }
18568
18570
  /** @enumType */
18569
18571
  /** @internal */
18570
- type DataTypeWithLiterals = DataType | 'UNKNOWN_DataType' | 'text' | 'textEnum' | 'number' | 'booleanValue' | 'a11y' | 'link' | 'image' | 'video' | 'vectorArt' | 'audio' | 'schema' | 'localDate' | 'localTime' | 'localDateTime' | 'webUrl' | 'email' | 'phone' | 'hostname' | 'regex' | 'guid' | 'richText' | 'container' | 'arrayItems' | 'direction' | 'menuItems' | 'data' | 'function' | 'onClick' | 'onChange' | 'onKeyPress' | 'onKeyUp' | 'onSubmit' | 'filter' | 'sort' | 'visualMedia';
18572
+ type DataTypeWithLiterals = DataType | 'UNKNOWN_DataType' | 'text' | 'textEnum' | 'number' | 'booleanValue' | 'a11y' | 'link' | 'image' | 'video' | 'vectorArt' | 'audio' | 'schema' | 'localDate' | 'localTime' | 'localDateTime' | 'webUrl' | 'email' | 'phone' | 'hostname' | 'regex' | 'guid' | 'richText' | 'container' | 'arrayItems' | 'direction' | 'menuItems' | 'data' | 'function' | 'onClick' | 'onChange' | 'onKeyPress' | 'onKeyUp' | 'onSubmit' | 'filter' | 'sort' | 'visualMedia' | 'ricosDocument';
18571
18573
  /** @internal */
18572
18574
  interface Text {
18573
18575
  /** Indicates maximum length allowed for the text */
@@ -1920,6 +1920,7 @@ var DataType = /* @__PURE__ */ ((DataType2) => {
1920
1920
  DataType2["filter"] = "filter";
1921
1921
  DataType2["sort"] = "sort";
1922
1922
  DataType2["visualMedia"] = "visualMedia";
1923
+ DataType2["ricosDocument"] = "ricosDocument";
1923
1924
  return DataType2;
1924
1925
  })(DataType || {});
1925
1926
  var ItemField = /* @__PURE__ */ ((ItemField2) => {