@experts_hub/shared 1.0.314 → 1.0.315
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/entities/freelancer-profile.entity.d.ts +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -752,6 +752,8 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
752
752
|
serviceAgreementUrl: string;
|
|
753
753
|
serviceAggrementSignedOn: Date;
|
|
754
754
|
isExpertshubVerified: boolean;
|
|
755
|
+
resumeData: string;
|
|
756
|
+
processedResumeData: string;
|
|
755
757
|
}
|
|
756
758
|
|
|
757
759
|
declare enum KindOfHire {
|
package/dist/index.d.ts
CHANGED
|
@@ -752,6 +752,8 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
752
752
|
serviceAgreementUrl: string;
|
|
753
753
|
serviceAggrementSignedOn: Date;
|
|
754
754
|
isExpertshubVerified: boolean;
|
|
755
|
+
resumeData: string;
|
|
756
|
+
processedResumeData: string;
|
|
755
757
|
}
|
|
756
758
|
|
|
757
759
|
declare enum KindOfHire {
|
package/dist/index.js
CHANGED
|
@@ -2047,6 +2047,12 @@ __decorateClass([
|
|
|
2047
2047
|
__decorateClass([
|
|
2048
2048
|
(0, import_typeorm8.Column)({ name: "is_expertshub_verified", type: "boolean", default: false })
|
|
2049
2049
|
], FreelancerProfile.prototype, "isExpertshubVerified", 2);
|
|
2050
|
+
__decorateClass([
|
|
2051
|
+
(0, import_typeorm8.Column)({ name: "resume_data", type: "jsonb", nullable: true })
|
|
2052
|
+
], FreelancerProfile.prototype, "resumeData", 2);
|
|
2053
|
+
__decorateClass([
|
|
2054
|
+
(0, import_typeorm8.Column)({ name: "processed_resume_data", type: "jsonb", nullable: true })
|
|
2055
|
+
], FreelancerProfile.prototype, "processedResumeData", 2);
|
|
2050
2056
|
FreelancerProfile = __decorateClass([
|
|
2051
2057
|
(0, import_typeorm8.Entity)("freelancer_profiles")
|
|
2052
2058
|
], FreelancerProfile);
|
package/dist/index.mjs
CHANGED
|
@@ -1987,6 +1987,12 @@ __decorateClass([
|
|
|
1987
1987
|
__decorateClass([
|
|
1988
1988
|
Column8({ name: "is_expertshub_verified", type: "boolean", default: false })
|
|
1989
1989
|
], FreelancerProfile.prototype, "isExpertshubVerified", 2);
|
|
1990
|
+
__decorateClass([
|
|
1991
|
+
Column8({ name: "resume_data", type: "jsonb", nullable: true })
|
|
1992
|
+
], FreelancerProfile.prototype, "resumeData", 2);
|
|
1993
|
+
__decorateClass([
|
|
1994
|
+
Column8({ name: "processed_resume_data", type: "jsonb", nullable: true })
|
|
1995
|
+
], FreelancerProfile.prototype, "processedResumeData", 2);
|
|
1990
1996
|
FreelancerProfile = __decorateClass([
|
|
1991
1997
|
Entity7("freelancer_profiles")
|
|
1992
1998
|
], FreelancerProfile);
|