@wix/app-extensions 1.0.65 → 1.0.67

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.
@@ -10939,6 +10939,11 @@ interface HeadlessOAuth {
10939
10939
  * @maxLength 1024
10940
10940
  */
10941
10941
  redirectUrlWixPages?: string | null;
10942
+ /**
10943
+ * The origin from which the OAuth app was created.
10944
+ * @maxLength 256
10945
+ */
10946
+ origin?: string | null;
10942
10947
  }
10943
10948
  /** Types of OAuth application. */
10944
10949
  /** @internal */
@@ -18563,11 +18568,13 @@ declare enum DataType {
18563
18568
  /** A WQL-compliant sort definition for ordering data */
18564
18569
  sort = "sort",
18565
18570
  /** A media type that is ONLY used for binding and not stored in the document store of the site */
18566
- visualMedia = "visualMedia"
18571
+ visualMedia = "visualMedia",
18572
+ /** RicosDocument object type. */
18573
+ ricosDocument = "ricosDocument"
18567
18574
  }
18568
18575
  /** @enumType */
18569
18576
  /** @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';
18577
+ 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
18578
  /** @internal */
18572
18579
  interface Text {
18573
18580
  /** 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) => {