@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 */
@@ -2466,6 +2466,7 @@ var DataType = /* @__PURE__ */ ((DataType2) => {
2466
2466
  DataType2["filter"] = "filter";
2467
2467
  DataType2["sort"] = "sort";
2468
2468
  DataType2["visualMedia"] = "visualMedia";
2469
+ DataType2["ricosDocument"] = "ricosDocument";
2469
2470
  return DataType2;
2470
2471
  })(DataType || {});
2471
2472
  var ItemField = /* @__PURE__ */ ((ItemField2) => {