Skip to content

Commit d635fd9

Browse files
committed
Merge branch 'master' into dev
2 parents 187d79d + ce3257d commit d635fd9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

docs/swagger.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ paths:
575575
required: false
576576
schema:
577577
type: string
578-
enum: ['open', 'selected', 'shortlist', 'rejected', 'cancelled']
578+
enum: ['open', 'selected', 'shortlist', 'rejected', 'cancelled', 'interview']
579579
description: The job candidate status.
580580
- in: query
581581
name: externalId
@@ -2079,7 +2079,7 @@ components:
20792079
description: "The user id."
20802080
status:
20812081
type: string
2082-
enum: ['open', 'selected', 'shortlist', 'rejected', 'cancelled']
2082+
enum: ['open', 'selected', 'shortlist', 'rejected', 'cancelled', 'interview']
20832083
description: "The job candidate status."
20842084
externalId:
20852085
type: string
@@ -2136,7 +2136,7 @@ components:
21362136
properties:
21372137
status:
21382138
type: string
2139-
enum: ['open', 'selected', 'shortlist', 'rejected', 'cancelled']
2139+
enum: ['open', 'selected', 'shortlist', 'rejected', 'cancelled', 'interview']
21402140
externalId:
21412141
type: string
21422142
example: "1212"
@@ -2630,7 +2630,7 @@ components:
26302630
description: 'The link for the resume that can be downloaded'
26312631
status:
26322632
type: string
2633-
enum: ['open', 'selected', 'shortlist', 'rejected', 'cancelled']
2633+
enum: ['open', 'selected', 'shortlist', 'rejected', 'cancelled', 'interview']
26342634
description: "The job candidate status."
26352635
skills:
26362636
type: array

src/bootstrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Joi.perPage = () => Joi.number().integer().min(1).default(20)
88
Joi.rateType = () => Joi.string().valid('hourly', 'daily', 'weekly', 'monthly')
99
Joi.jobStatus = () => Joi.string().valid('sourcing', 'in-review', 'assigned', 'closed', 'cancelled')
1010
Joi.workload = () => Joi.string().valid('full-time', 'fractional')
11-
Joi.jobCandidateStatus = () => Joi.string().valid('open', 'selected', 'shortlist', 'rejected', 'cancelled')
11+
Joi.jobCandidateStatus = () => Joi.string().valid('open', 'selected', 'shortlist', 'rejected', 'cancelled', 'interview')
1212
Joi.title = () => Joi.string().max(128)
1313
// Empty string is not allowed by Joi by default and must be enabled with allow('').
1414
// See https://joi.dev/api/?v=17.3.0#string fro details why it's like this.

0 commit comments

Comments
 (0)