tango-app-api-task 3.5.0-alpha-4 → 3.5.0-alpha-6

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-task",
3
- "version": "3.5.0-alpha-4",
3
+ "version": "3.5.0-alpha-6",
4
4
  "description": "Task",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -32429,6 +32429,7 @@ export async function createAiChecklist( req, res ) {
32429
32429
  checkListName: data.checkListName,
32430
32430
  client_id: inputBody.clientId,
32431
32431
  userId: userId,
32432
+ assignId: storeDetails?._id,
32432
32433
  };
32433
32434
  await taskAssignService.create( userDetails );
32434
32435
  await insertSingleProcessData( response?._id );
@@ -32653,6 +32654,8 @@ export async function StoreHygienetask( req, res ) {
32653
32654
  checkListName: data.checkListName,
32654
32655
  client_id: inputBody.clientId,
32655
32656
  userId: userId,
32657
+ assignId: storeDetails?._id,
32658
+
32656
32659
  };
32657
32660
  await taskAssignService.create( userDetails );
32658
32661
  await insertSingleProcessData( response?._id );
@@ -33074,6 +33077,7 @@ export async function createAiTask( req, res ) {
33074
33077
  checkListName: data.checkListName,
33075
33078
  client_id: inputBody.clientId,
33076
33079
  userId: userId,
33080
+ assignId: storeDetails?._id,
33077
33081
  };
33078
33082
 
33079
33083
  await taskAssignService.create( userDetails );
@@ -33841,6 +33845,7 @@ export async function commonAiTask( req, res ) {
33841
33845
  checkListName: data.checkListName,
33842
33846
  client_id: inputBody.clientId,
33843
33847
  userId: userId,
33848
+ assignId: storeDetails?._id,
33844
33849
  };
33845
33850
  await taskAssignService.create( userDetails );
33846
33851
  await insertSingleProcessData( response?._id );
@@ -34037,6 +34042,7 @@ export async function taskcreation( req, res ) {
34037
34042
  checkListName: data.checkListName,
34038
34043
  client_id: inputBody.clientId,
34039
34044
  userId: userId,
34045
+ assignId: storeDetails?._id,
34040
34046
  };
34041
34047
  await taskAssignService.create( userDetails );
34042
34048
  await insertSingleProcessData( response?._id );