@wix/app-extensions 1.0.73 → 1.0.75
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 +11 -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 +11 -2
- package/build/trusted/es/index.mjs +1 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -19369,11 +19369,13 @@ interface FunctionReturnTypeSelectedDataTypeOneOf {
|
|
|
19369
19369
|
declare enum FunctionRole {
|
|
19370
19370
|
UNKNOWN_FUNCTION_ROLE = "UNKNOWN_FUNCTION_ROLE",
|
|
19371
19371
|
/** The function converts between two data types, mostly useful for context providers and function libraries */
|
|
19372
|
-
data_type_conversion = "data_type_conversion"
|
|
19372
|
+
data_type_conversion = "data_type_conversion",
|
|
19373
|
+
/** The function handles loading more items in a paginated list */
|
|
19374
|
+
pagination_load_next_page = "pagination_load_next_page"
|
|
19373
19375
|
}
|
|
19374
19376
|
/** @enumType */
|
|
19375
19377
|
/** @internal */
|
|
19376
|
-
type FunctionRoleWithLiterals = FunctionRole | 'UNKNOWN_FUNCTION_ROLE' | 'data_type_conversion';
|
|
19378
|
+
type FunctionRoleWithLiterals = FunctionRole | 'UNKNOWN_FUNCTION_ROLE' | 'data_type_conversion' | 'pagination_load_next_page';
|
|
19377
19379
|
/** Filter type - declares which items are filterable and which operators each item supports */
|
|
19378
19380
|
/** @internal */
|
|
19379
19381
|
interface FilterDefinition {
|
|
@@ -19411,6 +19413,11 @@ interface InlineFilterItem {
|
|
|
19411
19413
|
* @maxLength 300
|
|
19412
19414
|
*/
|
|
19413
19415
|
description?: string | null;
|
|
19416
|
+
/**
|
|
19417
|
+
* Configures this text filter field as an item-selection field, populated by an items provider implementing the Items
|
|
19418
|
+
* Selection SPI (wix.items_selection.spi_host.v1). provider_key picks the provider; for multi-select use an array item.
|
|
19419
|
+
*/
|
|
19420
|
+
itemSelection?: ItemSelectionConfig;
|
|
19414
19421
|
}
|
|
19415
19422
|
/** @internal */
|
|
19416
19423
|
declare enum FilterOperator {
|
|
@@ -19508,6 +19515,8 @@ interface FilterItem {
|
|
|
19508
19515
|
* @maxSize 10
|
|
19509
19516
|
*/
|
|
19510
19517
|
customOperators?: CustomFilterOperator[];
|
|
19518
|
+
/** Configures this filter item as an item-selection field */
|
|
19519
|
+
itemSelection?: ItemSelectionConfig;
|
|
19511
19520
|
}
|
|
19512
19521
|
/** Sort type - declares which items are available for sorting */
|
|
19513
19522
|
/** @internal */
|
|
@@ -2067,6 +2067,7 @@ var InputType = /* @__PURE__ */ ((InputType2) => {
|
|
|
2067
2067
|
var FunctionRole = /* @__PURE__ */ ((FunctionRole2) => {
|
|
2068
2068
|
FunctionRole2["UNKNOWN_FUNCTION_ROLE"] = "UNKNOWN_FUNCTION_ROLE";
|
|
2069
2069
|
FunctionRole2["data_type_conversion"] = "data_type_conversion";
|
|
2070
|
+
FunctionRole2["pagination_load_next_page"] = "pagination_load_next_page";
|
|
2070
2071
|
return FunctionRole2;
|
|
2071
2072
|
})(FunctionRole || {});
|
|
2072
2073
|
var FilterOperator = /* @__PURE__ */ ((FilterOperator2) => {
|