tango-app-api-task 3.5.0-alpha-4 → 3.5.0-alpha-5
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
|
@@ -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 );
|
|
@@ -33074,6 +33075,7 @@ export async function createAiTask( req, res ) {
|
|
|
33074
33075
|
checkListName: data.checkListName,
|
|
33075
33076
|
client_id: inputBody.clientId,
|
|
33076
33077
|
userId: userId,
|
|
33078
|
+
assignId: storeDetails?._id,
|
|
33077
33079
|
};
|
|
33078
33080
|
|
|
33079
33081
|
await taskAssignService.create( userDetails );
|
|
@@ -33841,6 +33843,7 @@ export async function commonAiTask( req, res ) {
|
|
|
33841
33843
|
checkListName: data.checkListName,
|
|
33842
33844
|
client_id: inputBody.clientId,
|
|
33843
33845
|
userId: userId,
|
|
33846
|
+
assignId: storeDetails?._id,
|
|
33844
33847
|
};
|
|
33845
33848
|
await taskAssignService.create( userDetails );
|
|
33846
33849
|
await insertSingleProcessData( response?._id );
|
|
@@ -34037,6 +34040,7 @@ export async function taskcreation( req, res ) {
|
|
|
34037
34040
|
checkListName: data.checkListName,
|
|
34038
34041
|
client_id: inputBody.clientId,
|
|
34039
34042
|
userId: userId,
|
|
34043
|
+
assignId: storeDetails?._id,
|
|
34040
34044
|
};
|
|
34041
34045
|
await taskAssignService.create( userDetails );
|
|
34042
34046
|
await insertSingleProcessData( response?._id );
|