tango-app-api-trax 3.4.1-activitylog-11 → 3.4.1-activitylog-12

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,6 +1,6 @@
1
1
  {
2
2
  "name": "tango-app-api-trax",
3
- "version": "3.4.1-activitylog-11",
3
+ "version": "3.4.1-activitylog-12",
4
4
  "description": "Trax",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -282,6 +282,7 @@ export async function startChecklist( req, res ) {
282
282
  userType: req.user.userType,
283
283
  };
284
284
  // let insertOS = await insertOpenSearchData( 'test-traxlogs', inserttraxlogs );
285
+ console.log( 'inserttraxlogs =>', inserttraxlogs );
285
286
  insertOpenSearchData( openSearch.traxActivityLog, inserttraxlogs );
286
287
  return res.sendSuccess( getchecklist );
287
288
  } else {
@@ -473,7 +474,7 @@ export async function startTask( req, res ) {
473
474
  userType: req.user.userType,
474
475
  };
475
476
  // let insertOS = await insertOpenSearchData( 'test-traxlogs', inserttraxlogs );
476
- // console.log( 'inserttraxlogs', inserttraxlogs );
477
+ console.log( 'inserttraxlogs =>', inserttraxlogs );
477
478
  insertOpenSearchData( openSearch.traxActivityLog, inserttraxlogs );
478
479
  return res.sendSuccess( getUpdatedTask );
479
480
  } catch ( error ) {
@@ -1903,7 +1904,7 @@ export async function submitChecklist( req, res ) {
1903
1904
  logDetails: {},
1904
1905
  userType: req.user.userType,
1905
1906
  };
1906
- // console.log( 'inserttraxlogs', inserttraxlogs );
1907
+ console.log( 'inserttraxlogs =>', inserttraxlogs );
1907
1908
  insertOpenSearchData( openSearch.traxActivityLog, inserttraxlogs );
1908
1909
  }
1909
1910
 
@@ -2091,7 +2092,7 @@ export async function submitTask( req, res ) {
2091
2092
  logDetails: {},
2092
2093
  userType: req.user.userType,
2093
2094
  };
2094
- // console.log( 'inserttraxlogs', inserttraxlogs );
2095
+ console.log( 'inserttraxlogs =>', inserttraxlogs );
2095
2096
  insertOpenSearchData( openSearch.traxActivityLog, inserttraxlogs );
2096
2097
  }
2097
2098