tango-app-api-trax 3.9.69 → 3.9.70
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
|
@@ -4216,6 +4216,7 @@ export async function questionList( req, res ) {
|
|
|
4216
4216
|
findQuery.push( {
|
|
4217
4217
|
$project: {
|
|
4218
4218
|
checkListName: { $ifNull: [ '$checkListName', '' ] },
|
|
4219
|
+
checkListDescription: { $ifNull: [ '$checkListDescription', '' ] },
|
|
4219
4220
|
scheduleStartTime: { $ifNull: [ '$scheduleStartTime', '' ] },
|
|
4220
4221
|
scheduleStartTime_iso: { $ifNull: [ '$scheduleStartTime_iso', '' ] },
|
|
4221
4222
|
scheduleEndTime: { $ifNull: [ '$scheduleEndTime', '' ] },
|
|
@@ -4599,6 +4600,7 @@ export async function taskQuestionList( req, res ) {
|
|
|
4599
4600
|
findQuery.push( {
|
|
4600
4601
|
$project: {
|
|
4601
4602
|
checkListName: { $ifNull: [ '$checkListName', '' ] },
|
|
4603
|
+
checkListDescription: { $ifNull: [ '$checkListDescription', '' ] },
|
|
4602
4604
|
scheduleStartTime: { $ifNull: [ '$scheduleStartTime', '' ] },
|
|
4603
4605
|
scheduleStartTime_iso: { $ifNull: [ '$scheduleStartTime_iso', '' ] },
|
|
4604
4606
|
scheduleEndTime: { $ifNull: [ '$scheduleEndTime', '' ] },
|
|
@@ -5244,6 +5246,7 @@ export async function questionListV1( req, res ) {
|
|
|
5244
5246
|
findQuery.push( {
|
|
5245
5247
|
$project: {
|
|
5246
5248
|
checkListName: { $ifNull: [ '$checkListName', '' ] },
|
|
5249
|
+
checkListDescription: { $ifNull: [ '$checkListDescription', '' ] },
|
|
5247
5250
|
scheduleStartTime: { $ifNull: [ '$scheduleStartTime', '' ] },
|
|
5248
5251
|
scheduleStartTime_iso: { $ifNull: [ '$scheduleStartTime_iso', '' ] },
|
|
5249
5252
|
scheduleEndTime: { $ifNull: [ '$scheduleEndTime', '' ] },
|