@experts_hub/shared 1.0.402 → 1.0.404

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.
@@ -18,7 +18,9 @@ export declare enum JobLocationEnum {
18
18
  export declare enum TypeOfEmploymentEnum {
19
19
  FULLTIME = "FULLTIME",
20
20
  PARTTIME = "PARTTIME",
21
- BOTH = "BOTH"
21
+ BOTH = "BOTH",
22
+ HOURLY = "HOURLY",
23
+ FTE = "FTE"
22
24
  }
23
25
  export declare enum Step {
24
26
  BASIC_INFORMATION = "BASIC_INFORMATION",
@@ -59,11 +61,14 @@ export declare class Job extends BaseEntity {
59
61
  businessIndustry: string;
60
62
  currency: string;
61
63
  expectedSalaryFrom: number;
64
+ hideExpectedSalaryFrom: boolean;
62
65
  expectedSalaryTo: number;
66
+ hideExpectedSalaryTo: boolean;
63
67
  tentativeStartDate: Date;
64
68
  tentativeEndDate: Date;
65
- duration: string;
66
69
  durationType: DurationTypeEnum;
70
+ duration: string;
71
+ numberOfHours: number;
67
72
  description: string;
68
73
  additionalComment: string;
69
74
  onboardingTat: string;
package/dist/index.d.mts CHANGED
@@ -1186,7 +1186,9 @@ declare enum JobLocationEnum {
1186
1186
  declare enum TypeOfEmploymentEnum {
1187
1187
  FULLTIME = "FULLTIME",
1188
1188
  PARTTIME = "PARTTIME",
1189
- BOTH = "BOTH"
1189
+ BOTH = "BOTH",
1190
+ HOURLY = "HOURLY",
1191
+ FTE = "FTE"
1190
1192
  }
1191
1193
  declare enum Step {
1192
1194
  BASIC_INFORMATION = "BASIC_INFORMATION",
@@ -1227,11 +1229,14 @@ declare class Job extends BaseEntity {
1227
1229
  businessIndustry: string;
1228
1230
  currency: string;
1229
1231
  expectedSalaryFrom: number;
1232
+ hideExpectedSalaryFrom: boolean;
1230
1233
  expectedSalaryTo: number;
1234
+ hideExpectedSalaryTo: boolean;
1231
1235
  tentativeStartDate: Date;
1232
1236
  tentativeEndDate: Date;
1233
- duration: string;
1234
1237
  durationType: DurationTypeEnum;
1238
+ duration: string;
1239
+ numberOfHours: number;
1235
1240
  description: string;
1236
1241
  additionalComment: string;
1237
1242
  onboardingTat: string;
package/dist/index.d.ts CHANGED
@@ -1186,7 +1186,9 @@ declare enum JobLocationEnum {
1186
1186
  declare enum TypeOfEmploymentEnum {
1187
1187
  FULLTIME = "FULLTIME",
1188
1188
  PARTTIME = "PARTTIME",
1189
- BOTH = "BOTH"
1189
+ BOTH = "BOTH",
1190
+ HOURLY = "HOURLY",
1191
+ FTE = "FTE"
1190
1192
  }
1191
1193
  declare enum Step {
1192
1194
  BASIC_INFORMATION = "BASIC_INFORMATION",
@@ -1227,11 +1229,14 @@ declare class Job extends BaseEntity {
1227
1229
  businessIndustry: string;
1228
1230
  currency: string;
1229
1231
  expectedSalaryFrom: number;
1232
+ hideExpectedSalaryFrom: boolean;
1230
1233
  expectedSalaryTo: number;
1234
+ hideExpectedSalaryTo: boolean;
1231
1235
  tentativeStartDate: Date;
1232
1236
  tentativeEndDate: Date;
1233
- duration: string;
1234
1237
  durationType: DurationTypeEnum;
1238
+ duration: string;
1239
+ numberOfHours: number;
1235
1240
  description: string;
1236
1241
  additionalComment: string;
1237
1242
  onboardingTat: string;
package/dist/index.js CHANGED
@@ -3417,6 +3417,8 @@ var TypeOfEmploymentEnum = /* @__PURE__ */ ((TypeOfEmploymentEnum2) => {
3417
3417
  TypeOfEmploymentEnum2["FULLTIME"] = "FULLTIME";
3418
3418
  TypeOfEmploymentEnum2["PARTTIME"] = "PARTTIME";
3419
3419
  TypeOfEmploymentEnum2["BOTH"] = "BOTH";
3420
+ TypeOfEmploymentEnum2["HOURLY"] = "HOURLY";
3421
+ TypeOfEmploymentEnum2["FTE"] = "FTE";
3420
3422
  return TypeOfEmploymentEnum2;
3421
3423
  })(TypeOfEmploymentEnum || {});
3422
3424
  var Step = /* @__PURE__ */ ((Step2) => {
@@ -3524,6 +3526,13 @@ __decorateClass([
3524
3526
  default: 0
3525
3527
  })
3526
3528
  ], Job.prototype, "expectedSalaryFrom", 2);
3529
+ __decorateClass([
3530
+ (0, import_typeorm26.Column)({
3531
+ name: "hide_expected_salary_from",
3532
+ type: "boolean",
3533
+ default: false
3534
+ })
3535
+ ], Job.prototype, "hideExpectedSalaryFrom", 2);
3527
3536
  __decorateClass([
3528
3537
  (0, import_typeorm26.Column)({
3529
3538
  name: "expected_salary_to",
@@ -3533,15 +3542,19 @@ __decorateClass([
3533
3542
  default: 0
3534
3543
  })
3535
3544
  ], Job.prototype, "expectedSalaryTo", 2);
3545
+ __decorateClass([
3546
+ (0, import_typeorm26.Column)({
3547
+ name: "hide_expected_salary_to",
3548
+ type: "boolean",
3549
+ default: false
3550
+ })
3551
+ ], Job.prototype, "hideExpectedSalaryTo", 2);
3536
3552
  __decorateClass([
3537
3553
  (0, import_typeorm26.Column)({ name: "tentative_start_date", type: "date", nullable: true })
3538
3554
  ], Job.prototype, "tentativeStartDate", 2);
3539
3555
  __decorateClass([
3540
3556
  (0, import_typeorm26.Column)({ name: "tentative_end_date", type: "date", nullable: true })
3541
3557
  ], Job.prototype, "tentativeEndDate", 2);
3542
- __decorateClass([
3543
- (0, import_typeorm26.Column)({ name: "duration", type: "varchar", nullable: true })
3544
- ], Job.prototype, "duration", 2);
3545
3558
  __decorateClass([
3546
3559
  (0, import_typeorm26.Column)({
3547
3560
  name: "duration_type",
@@ -3550,6 +3563,18 @@ __decorateClass([
3550
3563
  nullable: true
3551
3564
  })
3552
3565
  ], Job.prototype, "durationType", 2);
3566
+ __decorateClass([
3567
+ (0, import_typeorm26.Column)({ name: "duration", type: "varchar", nullable: true })
3568
+ ], Job.prototype, "duration", 2);
3569
+ __decorateClass([
3570
+ (0, import_typeorm26.Column)({
3571
+ name: "number_of_hours",
3572
+ type: "decimal",
3573
+ precision: 4,
3574
+ scale: 2,
3575
+ default: 0
3576
+ })
3577
+ ], Job.prototype, "numberOfHours", 2);
3553
3578
  __decorateClass([
3554
3579
  (0, import_typeorm26.Column)({ name: "description", type: "varchar", nullable: true })
3555
3580
  ], Job.prototype, "description", 2);
package/dist/index.mjs CHANGED
@@ -3345,6 +3345,8 @@ var TypeOfEmploymentEnum = /* @__PURE__ */ ((TypeOfEmploymentEnum2) => {
3345
3345
  TypeOfEmploymentEnum2["FULLTIME"] = "FULLTIME";
3346
3346
  TypeOfEmploymentEnum2["PARTTIME"] = "PARTTIME";
3347
3347
  TypeOfEmploymentEnum2["BOTH"] = "BOTH";
3348
+ TypeOfEmploymentEnum2["HOURLY"] = "HOURLY";
3349
+ TypeOfEmploymentEnum2["FTE"] = "FTE";
3348
3350
  return TypeOfEmploymentEnum2;
3349
3351
  })(TypeOfEmploymentEnum || {});
3350
3352
  var Step = /* @__PURE__ */ ((Step2) => {
@@ -3452,6 +3454,13 @@ __decorateClass([
3452
3454
  default: 0
3453
3455
  })
3454
3456
  ], Job.prototype, "expectedSalaryFrom", 2);
3457
+ __decorateClass([
3458
+ Column26({
3459
+ name: "hide_expected_salary_from",
3460
+ type: "boolean",
3461
+ default: false
3462
+ })
3463
+ ], Job.prototype, "hideExpectedSalaryFrom", 2);
3455
3464
  __decorateClass([
3456
3465
  Column26({
3457
3466
  name: "expected_salary_to",
@@ -3461,15 +3470,19 @@ __decorateClass([
3461
3470
  default: 0
3462
3471
  })
3463
3472
  ], Job.prototype, "expectedSalaryTo", 2);
3473
+ __decorateClass([
3474
+ Column26({
3475
+ name: "hide_expected_salary_to",
3476
+ type: "boolean",
3477
+ default: false
3478
+ })
3479
+ ], Job.prototype, "hideExpectedSalaryTo", 2);
3464
3480
  __decorateClass([
3465
3481
  Column26({ name: "tentative_start_date", type: "date", nullable: true })
3466
3482
  ], Job.prototype, "tentativeStartDate", 2);
3467
3483
  __decorateClass([
3468
3484
  Column26({ name: "tentative_end_date", type: "date", nullable: true })
3469
3485
  ], Job.prototype, "tentativeEndDate", 2);
3470
- __decorateClass([
3471
- Column26({ name: "duration", type: "varchar", nullable: true })
3472
- ], Job.prototype, "duration", 2);
3473
3486
  __decorateClass([
3474
3487
  Column26({
3475
3488
  name: "duration_type",
@@ -3478,6 +3491,18 @@ __decorateClass([
3478
3491
  nullable: true
3479
3492
  })
3480
3493
  ], Job.prototype, "durationType", 2);
3494
+ __decorateClass([
3495
+ Column26({ name: "duration", type: "varchar", nullable: true })
3496
+ ], Job.prototype, "duration", 2);
3497
+ __decorateClass([
3498
+ Column26({
3499
+ name: "number_of_hours",
3500
+ type: "decimal",
3501
+ precision: 4,
3502
+ scale: 2,
3503
+ default: 0
3504
+ })
3505
+ ], Job.prototype, "numberOfHours", 2);
3481
3506
  __decorateClass([
3482
3507
  Column26({ name: "description", type: "varchar", nullable: true })
3483
3508
  ], 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.404",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",