@experts_hub/shared 1.0.402 → 1.0.403

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.
@@ -59,11 +59,14 @@ export declare class Job extends BaseEntity {
59
59
  businessIndustry: string;
60
60
  currency: string;
61
61
  expectedSalaryFrom: number;
62
+ hideExpectedSalaryFrom: boolean;
62
63
  expectedSalaryTo: number;
64
+ hideExpectedSalaryTo: boolean;
63
65
  tentativeStartDate: Date;
64
66
  tentativeEndDate: Date;
65
- duration: string;
66
67
  durationType: DurationTypeEnum;
68
+ duration: string;
69
+ numberOfHours: number;
67
70
  description: string;
68
71
  additionalComment: string;
69
72
  onboardingTat: string;
package/dist/index.d.mts CHANGED
@@ -1227,11 +1227,14 @@ declare class Job extends BaseEntity {
1227
1227
  businessIndustry: string;
1228
1228
  currency: string;
1229
1229
  expectedSalaryFrom: number;
1230
+ hideExpectedSalaryFrom: boolean;
1230
1231
  expectedSalaryTo: number;
1232
+ hideExpectedSalaryTo: boolean;
1231
1233
  tentativeStartDate: Date;
1232
1234
  tentativeEndDate: Date;
1233
- duration: string;
1234
1235
  durationType: DurationTypeEnum;
1236
+ duration: string;
1237
+ numberOfHours: number;
1235
1238
  description: string;
1236
1239
  additionalComment: string;
1237
1240
  onboardingTat: string;
package/dist/index.d.ts CHANGED
@@ -1227,11 +1227,14 @@ declare class Job extends BaseEntity {
1227
1227
  businessIndustry: string;
1228
1228
  currency: string;
1229
1229
  expectedSalaryFrom: number;
1230
+ hideExpectedSalaryFrom: boolean;
1230
1231
  expectedSalaryTo: number;
1232
+ hideExpectedSalaryTo: boolean;
1231
1233
  tentativeStartDate: Date;
1232
1234
  tentativeEndDate: Date;
1233
- duration: string;
1234
1235
  durationType: DurationTypeEnum;
1236
+ duration: string;
1237
+ numberOfHours: number;
1235
1238
  description: string;
1236
1239
  additionalComment: string;
1237
1240
  onboardingTat: string;
package/dist/index.js CHANGED
@@ -3524,6 +3524,13 @@ __decorateClass([
3524
3524
  default: 0
3525
3525
  })
3526
3526
  ], Job.prototype, "expectedSalaryFrom", 2);
3527
+ __decorateClass([
3528
+ (0, import_typeorm26.Column)({
3529
+ name: "hide_expected_salary_from",
3530
+ type: "boolean",
3531
+ default: false
3532
+ })
3533
+ ], Job.prototype, "hideExpectedSalaryFrom", 2);
3527
3534
  __decorateClass([
3528
3535
  (0, import_typeorm26.Column)({
3529
3536
  name: "expected_salary_to",
@@ -3533,15 +3540,19 @@ __decorateClass([
3533
3540
  default: 0
3534
3541
  })
3535
3542
  ], Job.prototype, "expectedSalaryTo", 2);
3543
+ __decorateClass([
3544
+ (0, import_typeorm26.Column)({
3545
+ name: "hide_expected_salary_to",
3546
+ type: "boolean",
3547
+ default: false
3548
+ })
3549
+ ], Job.prototype, "hideExpectedSalaryTo", 2);
3536
3550
  __decorateClass([
3537
3551
  (0, import_typeorm26.Column)({ name: "tentative_start_date", type: "date", nullable: true })
3538
3552
  ], Job.prototype, "tentativeStartDate", 2);
3539
3553
  __decorateClass([
3540
3554
  (0, import_typeorm26.Column)({ name: "tentative_end_date", type: "date", nullable: true })
3541
3555
  ], Job.prototype, "tentativeEndDate", 2);
3542
- __decorateClass([
3543
- (0, import_typeorm26.Column)({ name: "duration", type: "varchar", nullable: true })
3544
- ], Job.prototype, "duration", 2);
3545
3556
  __decorateClass([
3546
3557
  (0, import_typeorm26.Column)({
3547
3558
  name: "duration_type",
@@ -3550,6 +3561,18 @@ __decorateClass([
3550
3561
  nullable: true
3551
3562
  })
3552
3563
  ], Job.prototype, "durationType", 2);
3564
+ __decorateClass([
3565
+ (0, import_typeorm26.Column)({ name: "duration", type: "varchar", nullable: true })
3566
+ ], Job.prototype, "duration", 2);
3567
+ __decorateClass([
3568
+ (0, import_typeorm26.Column)({
3569
+ name: "number_of_hours",
3570
+ type: "decimal",
3571
+ precision: 4,
3572
+ scale: 2,
3573
+ default: 0
3574
+ })
3575
+ ], Job.prototype, "numberOfHours", 2);
3553
3576
  __decorateClass([
3554
3577
  (0, import_typeorm26.Column)({ name: "description", type: "varchar", nullable: true })
3555
3578
  ], Job.prototype, "description", 2);
package/dist/index.mjs CHANGED
@@ -3452,6 +3452,13 @@ __decorateClass([
3452
3452
  default: 0
3453
3453
  })
3454
3454
  ], Job.prototype, "expectedSalaryFrom", 2);
3455
+ __decorateClass([
3456
+ Column26({
3457
+ name: "hide_expected_salary_from",
3458
+ type: "boolean",
3459
+ default: false
3460
+ })
3461
+ ], Job.prototype, "hideExpectedSalaryFrom", 2);
3455
3462
  __decorateClass([
3456
3463
  Column26({
3457
3464
  name: "expected_salary_to",
@@ -3461,15 +3468,19 @@ __decorateClass([
3461
3468
  default: 0
3462
3469
  })
3463
3470
  ], Job.prototype, "expectedSalaryTo", 2);
3471
+ __decorateClass([
3472
+ Column26({
3473
+ name: "hide_expected_salary_to",
3474
+ type: "boolean",
3475
+ default: false
3476
+ })
3477
+ ], Job.prototype, "hideExpectedSalaryTo", 2);
3464
3478
  __decorateClass([
3465
3479
  Column26({ name: "tentative_start_date", type: "date", nullable: true })
3466
3480
  ], Job.prototype, "tentativeStartDate", 2);
3467
3481
  __decorateClass([
3468
3482
  Column26({ name: "tentative_end_date", type: "date", nullable: true })
3469
3483
  ], Job.prototype, "tentativeEndDate", 2);
3470
- __decorateClass([
3471
- Column26({ name: "duration", type: "varchar", nullable: true })
3472
- ], Job.prototype, "duration", 2);
3473
3484
  __decorateClass([
3474
3485
  Column26({
3475
3486
  name: "duration_type",
@@ -3478,6 +3489,18 @@ __decorateClass([
3478
3489
  nullable: true
3479
3490
  })
3480
3491
  ], Job.prototype, "durationType", 2);
3492
+ __decorateClass([
3493
+ Column26({ name: "duration", type: "varchar", nullable: true })
3494
+ ], Job.prototype, "duration", 2);
3495
+ __decorateClass([
3496
+ Column26({
3497
+ name: "number_of_hours",
3498
+ type: "decimal",
3499
+ precision: 4,
3500
+ scale: 2,
3501
+ default: 0
3502
+ })
3503
+ ], Job.prototype, "numberOfHours", 2);
3481
3504
  __decorateClass([
3482
3505
  Column26({ name: "description", type: "varchar", nullable: true })
3483
3506
  ], Job.prototype, "description", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.402",
3
+ "version": "1.0.403",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",