@experts_hub/shared 1.0.203 → 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.
@@ -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);
@@ -2583,7 +2592,7 @@ __decorateClass([
2583
2592
  })
2584
2593
  ], AssessmentAnswer.prototype, "selectedAnswerType", 2);
2585
2594
  __decorateClass([
2586
- (0, import_typeorm30.Column)({ name: "score", type: "integer" })
2595
+ (0, import_typeorm30.Column)({ name: "score", type: "float" })
2587
2596
  ], AssessmentAnswer.prototype, "score", 2);
2588
2597
  AssessmentAnswer = __decorateClass([
2589
2598
  (0, import_typeorm30.Entity)("assessment_answers")
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);
@@ -2652,7 +2661,7 @@ __decorateClass([
2652
2661
  })
2653
2662
  ], AssessmentAnswer.prototype, "selectedAnswerType", 2);
2654
2663
  __decorateClass([
2655
- Column30({ name: "score", type: "integer" })
2664
+ Column30({ name: "score", type: "float" })
2656
2665
  ], AssessmentAnswer.prototype, "score", 2);
2657
2666
  AssessmentAnswer = __decorateClass([
2658
2667
  Entity29("assessment_answers")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.203",
3
+ "version": "1.0.205",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",