@wix/app-extensions 1.0.23 → 1.0.24

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.
@@ -110,6 +110,7 @@ __export(index_exports, {
110
110
  FieldType: () => FieldType,
111
111
  FileMediaType: () => FileMediaType,
112
112
  FilterFunction: () => FilterFunction,
113
+ FilterOperator: () => FilterOperator,
113
114
  FilterOptionsType: () => FilterOptionsType,
114
115
  FilterSelectionType: () => FilterSelectionType,
115
116
  FilterValueDefinitionMode: () => FilterValueDefinitionMode,
@@ -2361,6 +2362,8 @@ var DataType = /* @__PURE__ */ ((DataType2) => {
2361
2362
  DataType2["onKeyPress"] = "onKeyPress";
2362
2363
  DataType2["onKeyUp"] = "onKeyUp";
2363
2364
  DataType2["onSubmit"] = "onSubmit";
2365
+ DataType2["filter"] = "filter";
2366
+ DataType2["sort"] = "sort";
2364
2367
  return DataType2;
2365
2368
  })(DataType || {});
2366
2369
  var A11yAttributes = /* @__PURE__ */ ((A11yAttributes2) => {
@@ -2496,6 +2499,24 @@ var InputType = /* @__PURE__ */ ((InputType2) => {
2496
2499
  InputType2["date"] = "date";
2497
2500
  return InputType2;
2498
2501
  })(InputType || {});
2502
+ var FilterOperator = /* @__PURE__ */ ((FilterOperator2) => {
2503
+ FilterOperator2["UNKNOWN_FilterOperator"] = "UNKNOWN_FilterOperator";
2504
+ FilterOperator2["eq"] = "eq";
2505
+ FilterOperator2["ne"] = "ne";
2506
+ FilterOperator2["lt"] = "lt";
2507
+ FilterOperator2["lte"] = "lte";
2508
+ FilterOperator2["gt"] = "gt";
2509
+ FilterOperator2["gte"] = "gte";
2510
+ FilterOperator2["in"] = "in";
2511
+ FilterOperator2["nin"] = "nin";
2512
+ FilterOperator2["exists"] = "exists";
2513
+ FilterOperator2["isEmpty"] = "isEmpty";
2514
+ FilterOperator2["startsWith"] = "startsWith";
2515
+ FilterOperator2["hasAll"] = "hasAll";
2516
+ FilterOperator2["hasSome"] = "hasSome";
2517
+ FilterOperator2["matchItems"] = "matchItems";
2518
+ return FilterOperator2;
2519
+ })(FilterOperator || {});
2499
2520
  var ElementType = /* @__PURE__ */ ((ElementType2) => {
2500
2521
  ElementType2["UNKNOWN_ElementType"] = "UNKNOWN_ElementType";
2501
2522
  ElementType2["inlineElement"] = "inlineElement";
@@ -2917,6 +2938,7 @@ var GroupType = /* @__PURE__ */ ((GroupType2) => {
2917
2938
  GroupType2["presets"] = "presets";
2918
2939
  GroupType2["cssCustomProperties"] = "cssCustomProperties";
2919
2940
  GroupType2["displayGroups"] = "displayGroups";
2941
+ GroupType2["elements"] = "elements";
2920
2942
  GroupType2["background"] = "background";
2921
2943
  GroupType2["margin"] = "margin";
2922
2944
  GroupType2["padding"] = "padding";
@@ -6052,6 +6074,7 @@ function loyaltyPointsAdjustment({
6052
6074
  FieldType,
6053
6075
  FileMediaType,
6054
6076
  FilterFunction,
6077
+ FilterOperator,
6055
6078
  FilterOptionsType,
6056
6079
  FilterSelectionType,
6057
6080
  FilterValueDefinitionMode,