File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,8 @@ esIndexPropertyMapping[config.get('esConfig.ES_INDEX_JOB_CANDIDATE')] = {
109
109
createdAt : { type : 'date' } ,
110
110
createdBy : { type : 'keyword' } ,
111
111
updatedAt : { type : 'date' } ,
112
- updatedBy : { type : 'keyword' }
112
+ updatedBy : { type : 'keyword' } ,
113
+ deletedAt : { type : 'date' }
113
114
}
114
115
} ,
115
116
createdAt : { type : 'date' } ,
Original file line number Diff line number Diff line change @@ -368,7 +368,8 @@ partiallyUpdateInterviewByRound.schema = Joi.object().keys({
368
368
guestNames : Joi . array ( ) . items ( Joi . string ( ) ) . allow ( null ) ,
369
369
guestEmails : Joi . array ( ) . items ( Joi . string ( ) . email ( ) ) . allow ( null ) ,
370
370
status : Joi . interviewStatus ( ) ,
371
- rescheduleUrl : Joi . string ( ) . allow ( null )
371
+ rescheduleUrl : Joi . string ( ) . allow ( null ) ,
372
+ deletedAt : Joi . date ( ) . allow ( null )
372
373
} ) . required ( ) . min ( 1 ) // at least one key - i.e. don't allow empty object
373
374
} ) . required ( )
374
375
@@ -438,7 +439,8 @@ partiallyUpdateInterviewById.schema = Joi.object().keys({
438
439
guestNames : Joi . array ( ) . items ( Joi . string ( ) ) . allow ( null ) ,
439
440
guestEmails : Joi . array ( ) . items ( Joi . string ( ) . email ( ) ) . allow ( null ) ,
440
441
status : Joi . interviewStatus ( ) ,
441
- rescheduleUrl : Joi . string ( ) . allow ( null )
442
+ rescheduleUrl : Joi . string ( ) . allow ( null ) ,
443
+ deletedAt : Joi . date ( ) . allow ( null )
442
444
} ) . required ( ) . min ( 1 ) // at least one key - i.e. don't allow empty object
443
445
} ) . required ( )
444
446
You can’t perform that action at this time.
0 commit comments