@experts_hub/shared 1.0.277 → 1.0.279

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.
@@ -42,8 +42,6 @@ export declare class FreelancerProfile extends BaseEntity {
42
42
  country: Country;
43
43
  talentId: string;
44
44
  resumeUrl: string;
45
- resumeData: string;
46
- processedResumeData: string;
47
45
  resumeEligibility: string;
48
46
  resumeScore: string;
49
47
  mcqStatus: McqStatusEnum;
@@ -6,7 +6,7 @@ export * from './senseloaf-log.entity';
6
6
  export * from './question.entity';
7
7
  export * from './otp.entity';
8
8
  export * from './freelancer-profile.entity';
9
- export * from './freelancer-resumes.entity';
9
+ export * from './freelancer-resume.entity';
10
10
  export * from './freelancer-assessment.entity';
11
11
  export * from './freelancer-experience.entity';
12
12
  export * from './freelancer-education.entity';
@@ -23,7 +23,7 @@ import { CompanyMemberRole } from "./company-members-roles.entity";
23
23
  import { AssessmentAnswer } from "./assessment-answer.entity";
24
24
  import { CompanySkill } from "./company-skill.entity";
25
25
  import { AdminUserRole } from "./admin-user-role.entity";
26
- import { FreelancerResume } from "./freelancer-resumes.entity";
26
+ import { FreelancerResume } from "./freelancer-resume.entity";
27
27
  export declare enum AccountType {
28
28
  ADMIN = "ADMIN",
29
29
  SUB_ADMIN = "SUB_ADMIN",
package/dist/index.d.mts CHANGED
@@ -704,8 +704,6 @@ declare class FreelancerProfile extends BaseEntity {
704
704
  country: Country;
705
705
  talentId: string;
706
706
  resumeUrl: string;
707
- resumeData: string;
708
- processedResumeData: string;
709
707
  resumeEligibility: string;
710
708
  resumeScore: string;
711
709
  mcqStatus: McqStatusEnum;
package/dist/index.d.ts CHANGED
@@ -704,8 +704,6 @@ declare class FreelancerProfile extends BaseEntity {
704
704
  country: Country;
705
705
  talentId: string;
706
706
  resumeUrl: string;
707
- resumeData: string;
708
- processedResumeData: string;
709
707
  resumeEligibility: string;
710
708
  resumeScore: string;
711
709
  mcqStatus: McqStatusEnum;
package/dist/index.js CHANGED
@@ -1720,12 +1720,6 @@ __decorateClass([
1720
1720
  __decorateClass([
1721
1721
  (0, import_typeorm8.Column)({ name: "resume_url", type: "text", nullable: true })
1722
1722
  ], FreelancerProfile.prototype, "resumeUrl", 2);
1723
- __decorateClass([
1724
- (0, import_typeorm8.Column)({ name: "resume_data", type: "jsonb", nullable: true })
1725
- ], FreelancerProfile.prototype, "resumeData", 2);
1726
- __decorateClass([
1727
- (0, import_typeorm8.Column)({ name: "processed_resume_data", type: "jsonb", nullable: true })
1728
- ], FreelancerProfile.prototype, "processedResumeData", 2);
1729
1723
  __decorateClass([
1730
1724
  (0, import_typeorm8.Column)({ name: "resume_eligibility", type: "varchar", nullable: true })
1731
1725
  ], FreelancerProfile.prototype, "resumeEligibility", 2);
@@ -3219,7 +3213,7 @@ AdminUserRole = __decorateClass([
3219
3213
  (0, import_typeorm39.Entity)("admin_user_roles")
3220
3214
  ], AdminUserRole);
3221
3215
 
3222
- // src/entities/freelancer-resumes.entity.ts
3216
+ // src/entities/freelancer-resume.entity.ts
3223
3217
  var import_typeorm40 = require("typeorm");
3224
3218
  var FreelancerResume = class extends BaseEntity {
3225
3219
  };
package/dist/index.mjs CHANGED
@@ -1663,12 +1663,6 @@ __decorateClass([
1663
1663
  __decorateClass([
1664
1664
  Column8({ name: "resume_url", type: "text", nullable: true })
1665
1665
  ], FreelancerProfile.prototype, "resumeUrl", 2);
1666
- __decorateClass([
1667
- Column8({ name: "resume_data", type: "jsonb", nullable: true })
1668
- ], FreelancerProfile.prototype, "resumeData", 2);
1669
- __decorateClass([
1670
- Column8({ name: "processed_resume_data", type: "jsonb", nullable: true })
1671
- ], FreelancerProfile.prototype, "processedResumeData", 2);
1672
1666
  __decorateClass([
1673
1667
  Column8({ name: "resume_eligibility", type: "varchar", nullable: true })
1674
1668
  ], FreelancerProfile.prototype, "resumeEligibility", 2);
@@ -3280,7 +3274,7 @@ AdminUserRole = __decorateClass([
3280
3274
  Entity38("admin_user_roles")
3281
3275
  ], AdminUserRole);
3282
3276
 
3283
- // src/entities/freelancer-resumes.entity.ts
3277
+ // src/entities/freelancer-resume.entity.ts
3284
3278
  import {
3285
3279
  Entity as Entity39,
3286
3280
  Column as Column40,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.277",
3
+ "version": "1.0.279",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",