@thejob/schema 1.0.49 → 1.0.50
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.
|
@@ -137,7 +137,7 @@ exports.JobSchema = (0, yup_extended_1.object)({
|
|
|
137
137
|
* It is useful for providing detailed information about the job responsibilities, requirements, and other relevant details.
|
|
138
138
|
* It is recommended to use a Markdown editor to write the job description.
|
|
139
139
|
*/
|
|
140
|
-
description: (0, yup_extended_1.string)().required().min(250).max(
|
|
140
|
+
description: (0, yup_extended_1.string)().required().min(250).max(50000).label("Description"),
|
|
141
141
|
/*
|
|
142
142
|
* This field is required and can be used to specify the job description.
|
|
143
143
|
* It is useful for providing detailed information about the job responsibilities, requirements, and other relevant details.
|
|
@@ -134,7 +134,7 @@ export const JobSchema = object({
|
|
|
134
134
|
* It is useful for providing detailed information about the job responsibilities, requirements, and other relevant details.
|
|
135
135
|
* It is recommended to use a Markdown editor to write the job description.
|
|
136
136
|
*/
|
|
137
|
-
description: string().required().min(250).max(
|
|
137
|
+
description: string().required().min(250).max(50000).label("Description"),
|
|
138
138
|
/*
|
|
139
139
|
* This field is required and can be used to specify the job description.
|
|
140
140
|
* It is useful for providing detailed information about the job responsibilities, requirements, and other relevant details.
|