@experts_hub/shared 1.0.279 → 1.0.280

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.
@@ -49,6 +49,9 @@ export declare class Job extends BaseEntity {
49
49
  openings: number;
50
50
  location: JobLocationEnum;
51
51
  typeOfEmployment: TypeOfEmploymentEnum;
52
+ academicQualification: string;
53
+ yearsOfExperience: string;
54
+ businessIndustry: string;
52
55
  currency: string;
53
56
  expectedSalaryFrom: number;
54
57
  expectedSalaryTo: number;
package/dist/index.d.mts CHANGED
@@ -897,6 +897,9 @@ declare class Job extends BaseEntity {
897
897
  openings: number;
898
898
  location: JobLocationEnum;
899
899
  typeOfEmployment: TypeOfEmploymentEnum;
900
+ academicQualification: string;
901
+ yearsOfExperience: string;
902
+ businessIndustry: string;
900
903
  currency: string;
901
904
  expectedSalaryFrom: number;
902
905
  expectedSalaryTo: number;
package/dist/index.d.ts CHANGED
@@ -897,6 +897,9 @@ declare class Job extends BaseEntity {
897
897
  openings: number;
898
898
  location: JobLocationEnum;
899
899
  typeOfEmployment: TypeOfEmploymentEnum;
900
+ academicQualification: string;
901
+ yearsOfExperience: string;
902
+ businessIndustry: string;
900
903
  currency: string;
901
904
  expectedSalaryFrom: number;
902
905
  expectedSalaryTo: number;
package/dist/index.js CHANGED
@@ -2342,6 +2342,15 @@ __decorateClass([
2342
2342
  nullable: true
2343
2343
  })
2344
2344
  ], Job.prototype, "typeOfEmployment", 2);
2345
+ __decorateClass([
2346
+ (0, import_typeorm16.Column)({ name: "academic_qualifictaion", type: "varchar", nullable: true })
2347
+ ], Job.prototype, "academicQualification", 2);
2348
+ __decorateClass([
2349
+ (0, import_typeorm16.Column)({ name: "years_of_experience", type: "varchar", nullable: true })
2350
+ ], Job.prototype, "yearsOfExperience", 2);
2351
+ __decorateClass([
2352
+ (0, import_typeorm16.Column)({ name: "business_industry", type: "varchar", nullable: true })
2353
+ ], Job.prototype, "businessIndustry", 2);
2345
2354
  __decorateClass([
2346
2355
  (0, import_typeorm16.Column)({ name: "currency", type: "varchar", default: "USD" })
2347
2356
  ], Job.prototype, "currency", 2);
package/dist/index.mjs CHANGED
@@ -2305,6 +2305,15 @@ __decorateClass([
2305
2305
  nullable: true
2306
2306
  })
2307
2307
  ], Job.prototype, "typeOfEmployment", 2);
2308
+ __decorateClass([
2309
+ Column16({ name: "academic_qualifictaion", type: "varchar", nullable: true })
2310
+ ], Job.prototype, "academicQualification", 2);
2311
+ __decorateClass([
2312
+ Column16({ name: "years_of_experience", type: "varchar", nullable: true })
2313
+ ], Job.prototype, "yearsOfExperience", 2);
2314
+ __decorateClass([
2315
+ Column16({ name: "business_industry", type: "varchar", nullable: true })
2316
+ ], Job.prototype, "businessIndustry", 2);
2308
2317
  __decorateClass([
2309
2318
  Column16({ name: "currency", type: "varchar", default: "USD" })
2310
2319
  ], Job.prototype, "currency", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.279",
3
+ "version": "1.0.280",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",