@experts_hub/shared 1.0.281 → 1.0.283

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.
@@ -68,4 +68,5 @@ export declare class FreelancerProfile extends BaseEntity {
68
68
  profileCompletedPercentage: Record<string, number>;
69
69
  serviceAgreementUrl: string;
70
70
  serviceAggrementSignedOn: Date;
71
+ isExpertshubVerified: boolean;
71
72
  }
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 {
@@ -732,6 +735,7 @@ declare class FreelancerProfile extends BaseEntity {
732
735
  profileCompletedPercentage: Record<string, number>;
733
736
  serviceAgreementUrl: string;
734
737
  serviceAggrementSignedOn: Date;
738
+ isExpertshubVerified: boolean;
735
739
  }
736
740
 
737
741
  declare enum KindOfHire {
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 {
@@ -732,6 +735,7 @@ declare class FreelancerProfile extends BaseEntity {
732
735
  profileCompletedPercentage: Record<string, number>;
733
736
  serviceAgreementUrl: string;
734
737
  serviceAggrementSignedOn: Date;
738
+ isExpertshubVerified: boolean;
735
739
  }
736
740
 
737
741
  declare enum KindOfHire {
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");
@@ -1850,6 +1862,9 @@ __decorateClass([
1850
1862
  __decorateClass([
1851
1863
  (0, import_typeorm8.Column)({ name: "service_agreement_signed_on", type: "timestamp with time zone", nullable: true })
1852
1864
  ], FreelancerProfile.prototype, "serviceAggrementSignedOn", 2);
1865
+ __decorateClass([
1866
+ (0, import_typeorm8.Column)({ name: "is_expertshub_verified", type: "boolean", default: false })
1867
+ ], FreelancerProfile.prototype, "isExpertshubVerified", 2);
1853
1868
  FreelancerProfile = __decorateClass([
1854
1869
  (0, import_typeorm8.Entity)("freelancer_profiles")
1855
1870
  ], FreelancerProfile);
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";
@@ -1793,6 +1805,9 @@ __decorateClass([
1793
1805
  __decorateClass([
1794
1806
  Column8({ name: "service_agreement_signed_on", type: "timestamp with time zone", nullable: true })
1795
1807
  ], FreelancerProfile.prototype, "serviceAggrementSignedOn", 2);
1808
+ __decorateClass([
1809
+ Column8({ name: "is_expertshub_verified", type: "boolean", default: false })
1810
+ ], FreelancerProfile.prototype, "isExpertshubVerified", 2);
1796
1811
  FreelancerProfile = __decorateClass([
1797
1812
  Entity7("freelancer_profiles")
1798
1813
  ], FreelancerProfile);
@@ -25,4 +25,7 @@ export declare class JobBasicInformationDto {
25
25
  tentativeEndDate: string;
26
26
  onboardingTat?: string;
27
27
  candidateCommunicationSkills?: string;
28
+ academicQualification?: string;
29
+ yearsOfExperience?: string;
30
+ businessIndustry?: string;
28
31
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.281",
3
+ "version": "1.0.283",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",