@experts_hub/shared 1.0.360 → 1.0.362
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
CHANGED
|
@@ -203,8 +203,7 @@ declare class ClientProfileQuestionDto {
|
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
declare class ClientCreateAccountDto {
|
|
206
|
-
|
|
207
|
-
lastName: string;
|
|
206
|
+
fullName: string;
|
|
208
207
|
email: string;
|
|
209
208
|
companyName: string;
|
|
210
209
|
onBoardedBy: string;
|
|
@@ -749,6 +748,7 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
749
748
|
country: Country;
|
|
750
749
|
talentId: string;
|
|
751
750
|
resumeUrl: string;
|
|
751
|
+
resumeUploadedOn: Date;
|
|
752
752
|
resumeEligibility: string;
|
|
753
753
|
resumeScore: string;
|
|
754
754
|
mcqStatus: McqStatusEnum;
|
package/dist/index.d.ts
CHANGED
|
@@ -203,8 +203,7 @@ declare class ClientProfileQuestionDto {
|
|
|
203
203
|
}
|
|
204
204
|
|
|
205
205
|
declare class ClientCreateAccountDto {
|
|
206
|
-
|
|
207
|
-
lastName: string;
|
|
206
|
+
fullName: string;
|
|
208
207
|
email: string;
|
|
209
208
|
companyName: string;
|
|
210
209
|
onBoardedBy: string;
|
|
@@ -749,6 +748,7 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
749
748
|
country: Country;
|
|
750
749
|
talentId: string;
|
|
751
750
|
resumeUrl: string;
|
|
751
|
+
resumeUploadedOn: Date;
|
|
752
752
|
resumeEligibility: string;
|
|
753
753
|
resumeScore: string;
|
|
754
754
|
mcqStatus: McqStatusEnum;
|
package/dist/index.js
CHANGED
|
@@ -907,13 +907,9 @@ var import_class_validator26 = require("class-validator");
|
|
|
907
907
|
var ClientCreateAccountDto = class {
|
|
908
908
|
};
|
|
909
909
|
__decorateClass([
|
|
910
|
-
(0, import_class_validator26.IsNotEmpty)({ message: "Please enter
|
|
911
|
-
(0, import_class_validator26.IsString)({ message: "Please enter valid
|
|
912
|
-
], ClientCreateAccountDto.prototype, "
|
|
913
|
-
__decorateClass([
|
|
914
|
-
(0, import_class_validator26.IsNotEmpty)({ message: "Please enter last name." }),
|
|
915
|
-
(0, import_class_validator26.IsString)({ message: "Please enter valid last name." })
|
|
916
|
-
], ClientCreateAccountDto.prototype, "lastName", 2);
|
|
910
|
+
(0, import_class_validator26.IsNotEmpty)({ message: "Please enter full name." }),
|
|
911
|
+
(0, import_class_validator26.IsString)({ message: "Please enter valid full name." })
|
|
912
|
+
], ClientCreateAccountDto.prototype, "fullName", 2);
|
|
917
913
|
__decorateClass([
|
|
918
914
|
(0, import_class_validator26.IsNotEmpty)({ message: "Please enter email." }),
|
|
919
915
|
(0, import_class_validator26.IsEmail)(),
|
|
@@ -1977,6 +1973,9 @@ __decorateClass([
|
|
|
1977
1973
|
__decorateClass([
|
|
1978
1974
|
(0, import_typeorm8.Column)({ name: "resume_url", type: "text", nullable: true })
|
|
1979
1975
|
], FreelancerProfile.prototype, "resumeUrl", 2);
|
|
1976
|
+
__decorateClass([
|
|
1977
|
+
(0, import_typeorm8.Column)({ name: "resume_uploaded_on", type: "timestamp with time zone", nullable: true })
|
|
1978
|
+
], FreelancerProfile.prototype, "resumeUploadedOn", 2);
|
|
1980
1979
|
__decorateClass([
|
|
1981
1980
|
(0, import_typeorm8.Column)({ name: "resume_eligibility", type: "varchar", nullable: true })
|
|
1982
1981
|
], FreelancerProfile.prototype, "resumeEligibility", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -708,13 +708,9 @@ import {
|
|
|
708
708
|
var ClientCreateAccountDto = class {
|
|
709
709
|
};
|
|
710
710
|
__decorateClass([
|
|
711
|
-
IsNotEmpty23({ message: "Please enter
|
|
712
|
-
IsString8({ message: "Please enter valid
|
|
713
|
-
], ClientCreateAccountDto.prototype, "
|
|
714
|
-
__decorateClass([
|
|
715
|
-
IsNotEmpty23({ message: "Please enter last name." }),
|
|
716
|
-
IsString8({ message: "Please enter valid last name." })
|
|
717
|
-
], ClientCreateAccountDto.prototype, "lastName", 2);
|
|
711
|
+
IsNotEmpty23({ message: "Please enter full name." }),
|
|
712
|
+
IsString8({ message: "Please enter valid full name." })
|
|
713
|
+
], ClientCreateAccountDto.prototype, "fullName", 2);
|
|
718
714
|
__decorateClass([
|
|
719
715
|
IsNotEmpty23({ message: "Please enter email." }),
|
|
720
716
|
IsEmail3(),
|
|
@@ -1890,6 +1886,9 @@ __decorateClass([
|
|
|
1890
1886
|
__decorateClass([
|
|
1891
1887
|
Column8({ name: "resume_url", type: "text", nullable: true })
|
|
1892
1888
|
], FreelancerProfile.prototype, "resumeUrl", 2);
|
|
1889
|
+
__decorateClass([
|
|
1890
|
+
Column8({ name: "resume_uploaded_on", type: "timestamp with time zone", nullable: true })
|
|
1891
|
+
], FreelancerProfile.prototype, "resumeUploadedOn", 2);
|
|
1893
1892
|
__decorateClass([
|
|
1894
1893
|
Column8({ name: "resume_eligibility", type: "varchar", nullable: true })
|
|
1895
1894
|
], FreelancerProfile.prototype, "resumeEligibility", 2);
|