@outliant/sunrise-utils 1.3.0 → 1.3.3

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,30 @@ 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.3.3](https://github.com/outliant/sunrise-utils/compare/1.3.2...1.3.3)
8
+
9
+ - chore: minor change [`95894aa`](https://github.com/outliant/sunrise-utils/commit/95894aae6027fddfa63c4c7cd283452ad2846805)
10
+
11
+ #### [1.3.2](https://github.com/outliant/sunrise-utils/compare/1.3.1...1.3.2)
12
+
13
+ > 12 March 2025
14
+
15
+ - chore(release): 1.3.2 [`f8322c3`](https://github.com/outliant/sunrise-utils/commit/f8322c32ff03f81469c56bcc015a8de7744819fb)
16
+ - chore: task pipeline default filters update [`ab9fd5e`](https://github.com/outliant/sunrise-utils/commit/ab9fd5ef8c592f2c101795a45c6deb26f557dc1e)
17
+
18
+ #### [1.3.1](https://github.com/outliant/sunrise-utils/compare/1.3.0...1.3.1)
19
+
20
+ > 7 March 2025
21
+
22
+ - chore(release): 1.3.1 [`aee0993`](https://github.com/outliant/sunrise-utils/commit/aee099336af241e0e29d3fe33978caca4abe1aea)
23
+ - chore: fix boolean columns [`6109e6b`](https://github.com/outliant/sunrise-utils/commit/6109e6b97617a3fc315fcbd5fa0dd6a663d74c82)
24
+
7
25
  #### [1.3.0](https://github.com/outliant/sunrise-utils/compare/1.2.5...1.3.0)
8
26
 
27
+ > 7 March 2025
28
+
9
29
  - chore: fix boolean columns [`17269be`](https://github.com/outliant/sunrise-utils/commit/17269be8df001b5f625a98a85fc045eb85d916ce)
30
+ - chore(release): 1.3.0 [`295fa92`](https://github.com/outliant/sunrise-utils/commit/295fa924bce5121ca1451cc6bd9db38e1a61f7b4)
10
31
 
11
32
  #### [1.2.5](https://github.com/outliant/sunrise-utils/compare/1.2.4...1.2.5)
12
33
 
@@ -71,7 +71,6 @@ module.exports.defaultCustomColumns = [
71
71
  value: 'is_generated',
72
72
  type: 'is_generated',
73
73
  field_type: 'boolean',
74
- // Not used anymore
75
74
  select_fields: ['is_generated']
76
75
  },
77
76
  {
@@ -44,7 +44,7 @@ module.exports.isNotEqual = () => {
44
44
  };
45
45
  };
46
46
 
47
- exports.isTrue = () => {
47
+ module.exports.isTrue = () => {
48
48
  return {
49
49
  bool: {
50
50
  must: [
@@ -76,7 +76,7 @@ module.exports.defaultCustomColumns = [
76
76
  select_fields: ['user_id', 'team_id']
77
77
  },
78
78
  {
79
- name: 'Age',
79
+ name: 'Ready At',
80
80
  value: 'ready_at',
81
81
  type: 'ready_at',
82
82
  field_type: 'date',
@@ -114,7 +114,7 @@ module.exports.defaultCustomColumns = [
114
114
  value: 'status',
115
115
  type: 'status',
116
116
  field_type: 'select',
117
- options: [],
117
+ options: module.exports.taskStatusOptions,
118
118
  select_fields: ['is_complete', 'is_ready', 'deleted']
119
119
  },
120
120
  {
@@ -267,6 +267,14 @@ module.exports.defaultCustomColumns = [
267
267
  type: 'is_starred',
268
268
  field_type: 'boolean',
269
269
  select_fields: ['is_starred']
270
+ },
271
+ {
272
+ name: 'Age',
273
+ value: 'age',
274
+ type: 'age',
275
+ field_type: 'select',
276
+ options: module.exports.taskAgeColorOptions,
277
+ select_fields: []
270
278
  }
271
279
  ];
272
280
 
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.3.0",
4
+ "version": "1.3.3",
5
5
  "license": "ISC",
6
6
  "author": "Outliant",
7
7
  "main": "index.js",