@outliant/sunrise-utils 1.1.31 → 1.1.32

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/CHANGELOG.md CHANGED
@@ -4,12 +4,18 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [1.1.32](https://github.com/outliant/sunrise-utils/compare/1.1.31...1.1.32)
8
+
9
+ - chore add is_any_of filter to user_select field condition #86b0b3k2r [`#42`](https://github.com/outliant/sunrise-utils/pull/42)
10
+
7
11
  #### [1.1.31](https://github.com/outliant/sunrise-utils/compare/1.1.29...1.1.31)
8
12
 
13
+ > 2 July 2024
14
+
9
15
  - Feature: Added Greater than N days ago filter #86b09hc0u [`#40`](https://github.com/outliant/sunrise-utils/pull/40)
10
16
  - feature: Added Greater than N days ago filter #86b09hc0u [`7c917aa`](https://github.com/outliant/sunrise-utils/commit/7c917aa02896b008114aa1791eee4598ab115bdb)
17
+ - chore(release): 1.1.31 [`115a927`](https://github.com/outliant/sunrise-utils/commit/115a927d4008489cda57aa99b40cd460b50f3a49)
11
18
  - chore(release): 1.1.30 [`d738803`](https://github.com/outliant/sunrise-utils/commit/d738803831b98a9dca0f1b65c37943ed64911f24)
12
- - chore(release): 1.1.30 [`ba31d9b`](https://github.com/outliant/sunrise-utils/commit/ba31d9b3d14596fe4d632dc0a7989622ede49ec3)
13
19
 
14
20
  #### [1.1.29](https://github.com/outliant/sunrise-utils/compare/1.1.28...1.1.29)
15
21
 
@@ -215,6 +215,10 @@ module.exports.conditions = {
215
215
  {
216
216
  label: 'Is None Of',
217
217
  value: 'is_none_of'
218
+ },
219
+ {
220
+ label: 'Is any of',
221
+ value: 'is_any_of'
218
222
  }
219
223
  ],
220
224
  boolean: [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@outliant/sunrise-utils",
3
3
  "description": "Helper functions for project Sunrise",
4
- "version": "1.1.31",
4
+ "version": "1.1.32",
5
5
  "license": "ISC",
6
6
  "author": "Outliant",
7
7
  "main": "index.js",