@outliant/sunrise-utils 1.1.18 → 1.1.19

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,9 +4,16 @@ 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.19](https://github.com/outliant/sunrise-utils/compare/1.1.18...1.1.19)
8
+
9
+ - chore: update is_paused filter #863hbxjkt [`#25`](https://github.com/outliant/sunrise-utils/pull/25)
10
+
7
11
  #### [1.1.18](https://github.com/outliant/sunrise-utils/compare/1.1.17...1.1.18)
8
12
 
13
+ > 16 January 2024
14
+
9
15
  - chore: update is_paused query filters #863hbxjkt [`#24`](https://github.com/outliant/sunrise-utils/pull/24)
16
+ - chore(release): 1.1.18 [`8e3f921`](https://github.com/outliant/sunrise-utils/commit/8e3f92138c9e82a04b2ab81f39332b5cf1aca4c9)
10
17
 
11
18
  #### [1.1.17](https://github.com/outliant/sunrise-utils/compare/1.1.16...1.1.17)
12
19
 
package/lib/queries.js CHANGED
@@ -27,19 +27,8 @@ module.exports.getNotIsPausedQuery = () => {
27
27
  bool: {
28
28
  should: [
29
29
  {
30
- bool: {
31
- must: [
32
- {
33
- exists: {
34
- field: 'is_paused'
35
- }
36
- },
37
- {
38
- match: {
39
- is_paused: false
40
- }
41
- }
42
- ]
30
+ match: {
31
+ is_paused: false
43
32
  }
44
33
  },
45
34
  {
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.18",
4
+ "version": "1.1.19",
5
5
  "license": "ISC",
6
6
  "author": "Outliant",
7
7
  "main": "index.js",
@@ -33,19 +33,8 @@ describe('queries', function () {
33
33
  bool: {
34
34
  should: [
35
35
  {
36
- bool: {
37
- must: [
38
- {
39
- exists: {
40
- field: 'is_paused'
41
- }
42
- },
43
- {
44
- match: {
45
- is_paused: false
46
- }
47
- }
48
- ]
36
+ match: {
37
+ is_paused: false
49
38
  }
50
39
  },
51
40
  {