@outliant/sunrise-utils 1.3.6 → 1.3.7
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 +7 -0
- package/helpers/taskFilter/index.js +3 -0
- package/package.json +1 -1
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.3.7](https://github.com/outliant/sunrise-utils/compare/1.3.6...1.3.7)
|
|
8
|
+
|
|
9
|
+
- chore: task pipeline filter update [`61dfa2b`](https://github.com/outliant/sunrise-utils/commit/61dfa2b351e0e9a62bd34c50ccdb24aeac55cc56)
|
|
10
|
+
|
|
7
11
|
#### [1.3.6](https://github.com/outliant/sunrise-utils/compare/1.3.5...1.3.6)
|
|
8
12
|
|
|
13
|
+
> 18 March 2025
|
|
14
|
+
|
|
9
15
|
- chore: update project global search #86b428rnf [`#45`](https://github.com/outliant/sunrise-utils/pull/45)
|
|
16
|
+
- chore(release): 1.3.6 [`db08eb9`](https://github.com/outliant/sunrise-utils/commit/db08eb91e9863fcec2671189726b3f5ff6ef9fa9)
|
|
10
17
|
|
|
11
18
|
#### [1.3.5](https://github.com/outliant/sunrise-utils/compare/1.3.4...1.3.5)
|
|
12
19
|
|
|
@@ -382,6 +382,9 @@ module.exports.buildTaskPipelineFilter = (filter, starredTaskIds) => {
|
|
|
382
382
|
case 'dealinformation':
|
|
383
383
|
case 'contactinformation':
|
|
384
384
|
case 'ticketinformation':
|
|
385
|
+
case 'dealPropertyMappings':
|
|
386
|
+
case 'ticketPropertyMappings':
|
|
387
|
+
case 'contactPropertyMappings':
|
|
385
388
|
case 'taskfield':
|
|
386
389
|
return buildProjectFieldFilter(filter);
|
|
387
390
|
case 'is_starred':
|