@outliant/sunrise-utils 1.2.2 → 1.2.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "editor.formatOnSave": true,
3
3
  "editor.codeActionsOnSave": {
4
- "source.fixAll.eslint": true,
5
- "source.organizeImports": false
4
+ "source.fixAll.eslint": "explicit",
5
+ "source.organizeImports": "never"
6
6
  }
7
7
  }
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.2.3](https://github.com/outliant/sunrise-utils/compare/1.2.2...1.2.3)
8
+
9
+ - chore: updated pause column department validator #86b29g6de [`5fb0258`](https://github.com/outliant/sunrise-utils/commit/5fb025812f3a92c34d4dc733e9454a466f9148a1)
10
+
7
11
  #### [1.2.2](https://github.com/outliant/sunrise-utils/compare/1.2.1...1.2.2)
8
12
 
13
+ > 26 September 2024
14
+
9
15
  - chore: pipeline improvements #86b27p240 [`911f6dd`](https://github.com/outliant/sunrise-utils/commit/911f6dd7bdf2e26986aec0671d1610d18ebe5cfc)
16
+ - chore(release): 1.2.2 [`1683047`](https://github.com/outliant/sunrise-utils/commit/1683047141b96f4c47c95aaf9e22dddd92526aeb)
10
17
 
11
18
  #### [1.2.1](https://github.com/outliant/sunrise-utils/compare/1.2.0...1.2.1)
12
19
 
@@ -46,7 +46,8 @@ module.exports.defaultCustomColumns = [
46
46
  select_fields: ['on_hold']
47
47
  },
48
48
  {
49
- validate: (validator) => validator && validator.isCommercial(),
49
+ validate: (validator) =>
50
+ validator && (validator.isCommercial() || validator.isService()),
50
51
  name: 'Is Paused',
51
52
  value: 'is_paused',
52
53
  type: 'is_paused',
@@ -35,7 +35,8 @@ module.exports.taskStatusOptions = [
35
35
  value: 'overdue'
36
36
  },
37
37
  {
38
- validate: (validator) => validator && validator.isCommercial(),
38
+ validate: (validator) =>
39
+ validator && (validator.isCommercial() || validator.isService()),
39
40
  label: 'Paused',
40
41
  value: 'paused'
41
42
  }
@@ -144,7 +145,8 @@ module.exports.defaultCustomColumns = [
144
145
  select_fields: ['on_hold']
145
146
  },
146
147
  {
147
- validate: (validator) => validator && validator.isCommercial(),
148
+ validate: (validator) =>
149
+ validator && (validator.isCommercial() || validator.isService()),
148
150
  name: 'Is Paused',
149
151
  value: 'is_paused',
150
152
  type: 'is_paused',
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.2.2",
4
+ "version": "1.2.3",
5
5
  "license": "ISC",
6
6
  "author": "Outliant",
7
7
  "main": "index.js",