@experts_hub/shared 1.0.281 → 1.0.282
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/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +12 -0
- package/dist/index.mjs +12 -0
- package/dist/modules/job/dto/job-basic-information.dto.d.ts +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -448,6 +448,9 @@ declare class JobBasicInformationDto {
|
|
|
448
448
|
tentativeEndDate: string;
|
|
449
449
|
onboardingTat?: string;
|
|
450
450
|
candidateCommunicationSkills?: string;
|
|
451
|
+
academicQualification?: string;
|
|
452
|
+
yearsOfExperience?: string;
|
|
453
|
+
businessIndustry?: string;
|
|
451
454
|
}
|
|
452
455
|
|
|
453
456
|
declare class JobAdditionalCommentDto {
|
package/dist/index.d.ts
CHANGED
|
@@ -448,6 +448,9 @@ declare class JobBasicInformationDto {
|
|
|
448
448
|
tentativeEndDate: string;
|
|
449
449
|
onboardingTat?: string;
|
|
450
450
|
candidateCommunicationSkills?: string;
|
|
451
|
+
academicQualification?: string;
|
|
452
|
+
yearsOfExperience?: string;
|
|
453
|
+
businessIndustry?: string;
|
|
451
454
|
}
|
|
452
455
|
|
|
453
456
|
declare class JobAdditionalCommentDto {
|
package/dist/index.js
CHANGED
|
@@ -1023,6 +1023,18 @@ __decorateClass([
|
|
|
1023
1023
|
(0, import_class_validator29.IsString)({ message: "Candidate communication skills must be a string" }),
|
|
1024
1024
|
(0, import_class_validator29.IsOptional)()
|
|
1025
1025
|
], JobBasicInformationDto.prototype, "candidateCommunicationSkills", 2);
|
|
1026
|
+
__decorateClass([
|
|
1027
|
+
(0, import_class_validator29.IsNotEmpty)({ message: "Please enter the academic qualification" }),
|
|
1028
|
+
(0, import_class_validator29.IsString)({ message: "Academic qualification must be a string" })
|
|
1029
|
+
], JobBasicInformationDto.prototype, "academicQualification", 2);
|
|
1030
|
+
__decorateClass([
|
|
1031
|
+
(0, import_class_validator29.IsNotEmpty)({ message: "Please enter the years of experience" }),
|
|
1032
|
+
(0, import_class_validator29.IsString)({ message: "Years of experience must be a string" })
|
|
1033
|
+
], JobBasicInformationDto.prototype, "yearsOfExperience", 2);
|
|
1034
|
+
__decorateClass([
|
|
1035
|
+
(0, import_class_validator29.IsNotEmpty)({ message: "Please enter the business industry" }),
|
|
1036
|
+
(0, import_class_validator29.IsString)({ message: "Business industry must be a string" })
|
|
1037
|
+
], JobBasicInformationDto.prototype, "businessIndustry", 2);
|
|
1026
1038
|
|
|
1027
1039
|
// src/modules/job/dto/job-additional-comment.dto.ts
|
|
1028
1040
|
var import_class_validator30 = require("class-validator");
|
package/dist/index.mjs
CHANGED
|
@@ -878,6 +878,18 @@ __decorateClass([
|
|
|
878
878
|
IsString11({ message: "Candidate communication skills must be a string" }),
|
|
879
879
|
IsOptional5()
|
|
880
880
|
], JobBasicInformationDto.prototype, "candidateCommunicationSkills", 2);
|
|
881
|
+
__decorateClass([
|
|
882
|
+
IsNotEmpty26({ message: "Please enter the academic qualification" }),
|
|
883
|
+
IsString11({ message: "Academic qualification must be a string" })
|
|
884
|
+
], JobBasicInformationDto.prototype, "academicQualification", 2);
|
|
885
|
+
__decorateClass([
|
|
886
|
+
IsNotEmpty26({ message: "Please enter the years of experience" }),
|
|
887
|
+
IsString11({ message: "Years of experience must be a string" })
|
|
888
|
+
], JobBasicInformationDto.prototype, "yearsOfExperience", 2);
|
|
889
|
+
__decorateClass([
|
|
890
|
+
IsNotEmpty26({ message: "Please enter the business industry" }),
|
|
891
|
+
IsString11({ message: "Business industry must be a string" })
|
|
892
|
+
], JobBasicInformationDto.prototype, "businessIndustry", 2);
|
|
881
893
|
|
|
882
894
|
// src/modules/job/dto/job-additional-comment.dto.ts
|
|
883
895
|
import { IsOptional as IsOptional6, IsString as IsString12, MaxLength as MaxLength5 } from "class-validator";
|