tango-app-api-task 3.7.12 → 3.7.13
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/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tango-app-api-task",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.13",
|
|
4
4
|
"description": "Task",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"scripts": {
|
|
8
|
-
"start": "nodemon --exec \"eslint --fix . && node
|
|
8
|
+
"start": "nodemon --exec \"eslint --fix . && node app.js\""
|
|
9
9
|
},
|
|
10
10
|
"engines": {
|
|
11
11
|
"node": ">=18.10.0"
|
|
@@ -6575,6 +6575,8 @@ async function insertAItaskSingleProcessedTask( checkTask, inputBody, date, time
|
|
|
6575
6575
|
newData.zoneName = inputBody.zoneName || '';
|
|
6576
6576
|
newData.checkListType = 'task' || '';
|
|
6577
6577
|
let insertprocessdata = await taskProcessedService.insert( newData );
|
|
6578
|
+
await taskProcessedConfigService.insert( newData );
|
|
6579
|
+
console.log( '🚀 ~ insertAItaskSingleProcessedTask ~ insertprocessdata:', insertprocessdata );
|
|
6578
6580
|
if ( insertprocessdata ) {
|
|
6579
6581
|
if ( uniqueUsers && uniqueUsers.length>0 ) {
|
|
6580
6582
|
// updated Task Approver//
|