@qite/tide-client 1.1.34 → 1.1.35

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-client",
3
- "version": "1.1.34",
3
+ "version": "1.1.35",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {
@@ -143,6 +143,11 @@ const getColumnFilter = (
143
143
  case "dateRange":
144
144
  return `${columnName} ge ${columnValue[0].toISOString()} and ${columnName} le ${columnValue[1].toISOString()}`;
145
145
 
146
+ case "inList":
147
+ return `(${columnValue
148
+ .map((value: any) => `${columnName} eq ${value}`)
149
+ .join(" or ")})`;
150
+
146
151
  default:
147
152
  return "";
148
153
  }