@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.
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +9 -2
- package/build/trusted/cjs/index.js +1 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +9 -2
- package/build/trusted/es/index.mjs +1 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -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 */
|
|
@@ -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) => {
|