@thejob/schema 1.0.78 → 1.0.79
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.
|
@@ -148,7 +148,7 @@ exports.JobSchema = (0, yup_extended_1.object)({
|
|
|
148
148
|
* It is useful for providing detailed information about the job responsibilities, requirements, and other relevant details.
|
|
149
149
|
* It is recommended to use a Markdown editor to write the job description.
|
|
150
150
|
*/
|
|
151
|
-
description: (0, yup_extended_1.string)().required().min(
|
|
151
|
+
description: (0, yup_extended_1.string)().required().min(100).max(50000).label("Description"),
|
|
152
152
|
/*
|
|
153
153
|
* This field is required and can be used to specify the job description.
|
|
154
154
|
* It is useful for providing detailed information about the job responsibilities, requirements, and other relevant details.
|
|
@@ -145,7 +145,7 @@ export const JobSchema = object({
|
|
|
145
145
|
* It is useful for providing detailed information about the job responsibilities, requirements, and other relevant details.
|
|
146
146
|
* It is recommended to use a Markdown editor to write the job description.
|
|
147
147
|
*/
|
|
148
|
-
description: string().required().min(
|
|
148
|
+
description: string().required().min(100).max(50000).label("Description"),
|
|
149
149
|
/*
|
|
150
150
|
* This field is required and can be used to specify the job description.
|
|
151
151
|
* It is useful for providing detailed information about the job responsibilities, requirements, and other relevant details.
|