@experts_hub/shared 1.0.204 → 1.0.205
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 +3 -0
- package/dist/index.d.mts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +9 -0
- package/dist/index.mjs +9 -0
- package/package.json +1 -1
|
@@ -25,6 +25,9 @@ export declare class FreelancerProfile extends BaseEntity {
|
|
|
25
25
|
talentId: string;
|
|
26
26
|
resumeUrl: string;
|
|
27
27
|
resumeData: string;
|
|
28
|
+
processedResumeData: string;
|
|
29
|
+
resumeEligibility: string;
|
|
30
|
+
resumeScore: string;
|
|
28
31
|
isDeveloper: boolean;
|
|
29
32
|
natureOfWork: NatureOfWork;
|
|
30
33
|
currency: string;
|
package/dist/index.d.mts
CHANGED
|
@@ -621,6 +621,9 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
621
621
|
talentId: string;
|
|
622
622
|
resumeUrl: string;
|
|
623
623
|
resumeData: string;
|
|
624
|
+
processedResumeData: string;
|
|
625
|
+
resumeEligibility: string;
|
|
626
|
+
resumeScore: string;
|
|
624
627
|
isDeveloper: boolean;
|
|
625
628
|
natureOfWork: NatureOfWork;
|
|
626
629
|
currency: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -621,6 +621,9 @@ declare class FreelancerProfile extends BaseEntity {
|
|
|
621
621
|
talentId: string;
|
|
622
622
|
resumeUrl: string;
|
|
623
623
|
resumeData: string;
|
|
624
|
+
processedResumeData: string;
|
|
625
|
+
resumeEligibility: string;
|
|
626
|
+
resumeScore: string;
|
|
624
627
|
isDeveloper: boolean;
|
|
625
628
|
natureOfWork: NatureOfWork;
|
|
626
629
|
currency: string;
|
package/dist/index.js
CHANGED
|
@@ -1371,6 +1371,15 @@ __decorateClass([
|
|
|
1371
1371
|
__decorateClass([
|
|
1372
1372
|
(0, import_typeorm5.Column)({ name: "resume_data", type: "jsonb", nullable: true })
|
|
1373
1373
|
], FreelancerProfile.prototype, "resumeData", 2);
|
|
1374
|
+
__decorateClass([
|
|
1375
|
+
(0, import_typeorm5.Column)({ name: "resume_data", type: "jsonb", nullable: true })
|
|
1376
|
+
], FreelancerProfile.prototype, "processedResumeData", 2);
|
|
1377
|
+
__decorateClass([
|
|
1378
|
+
(0, import_typeorm5.Column)({ name: "resume_eligibility", type: "varchar", nullable: true })
|
|
1379
|
+
], FreelancerProfile.prototype, "resumeEligibility", 2);
|
|
1380
|
+
__decorateClass([
|
|
1381
|
+
(0, import_typeorm5.Column)({ name: "resume_score", type: "jsonb", nullable: true })
|
|
1382
|
+
], FreelancerProfile.prototype, "resumeScore", 2);
|
|
1374
1383
|
__decorateClass([
|
|
1375
1384
|
(0, import_typeorm5.Column)({ name: "is_developer", type: "boolean", default: false })
|
|
1376
1385
|
], FreelancerProfile.prototype, "isDeveloper", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -1322,6 +1322,15 @@ __decorateClass([
|
|
|
1322
1322
|
__decorateClass([
|
|
1323
1323
|
Column5({ name: "resume_data", type: "jsonb", nullable: true })
|
|
1324
1324
|
], FreelancerProfile.prototype, "resumeData", 2);
|
|
1325
|
+
__decorateClass([
|
|
1326
|
+
Column5({ name: "resume_data", type: "jsonb", nullable: true })
|
|
1327
|
+
], FreelancerProfile.prototype, "processedResumeData", 2);
|
|
1328
|
+
__decorateClass([
|
|
1329
|
+
Column5({ name: "resume_eligibility", type: "varchar", nullable: true })
|
|
1330
|
+
], FreelancerProfile.prototype, "resumeEligibility", 2);
|
|
1331
|
+
__decorateClass([
|
|
1332
|
+
Column5({ name: "resume_score", type: "jsonb", nullable: true })
|
|
1333
|
+
], FreelancerProfile.prototype, "resumeScore", 2);
|
|
1325
1334
|
__decorateClass([
|
|
1326
1335
|
Column5({ name: "is_developer", type: "boolean", default: false })
|
|
1327
1336
|
], FreelancerProfile.prototype, "isDeveloper", 2);
|