@experts_hub/shared 1.0.424 → 1.0.425
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.
|
@@ -65,6 +65,10 @@ export declare class Job extends BaseEntity {
|
|
|
65
65
|
hideExpectedSalaryFrom: boolean;
|
|
66
66
|
expectedSalaryTo: number;
|
|
67
67
|
hideExpectedSalaryTo: boolean;
|
|
68
|
+
years: string;
|
|
69
|
+
months: string;
|
|
70
|
+
weeks: string;
|
|
71
|
+
days: string;
|
|
68
72
|
tentativeStartDate: Date;
|
|
69
73
|
tentativeEndDate: Date;
|
|
70
74
|
durationType: DurationTypeEnum;
|
package/dist/index.d.mts
CHANGED
|
@@ -490,6 +490,10 @@ declare class JobBasicInformationDto {
|
|
|
490
490
|
hideExpectedSalaryFrom: boolean;
|
|
491
491
|
expectedSalaryTo: number;
|
|
492
492
|
hideExpectedSalaryTo: boolean;
|
|
493
|
+
years: string;
|
|
494
|
+
months: string;
|
|
495
|
+
weeks: string;
|
|
496
|
+
days: string;
|
|
493
497
|
numberOfHours: number;
|
|
494
498
|
candidateCommunicationSkills?: string;
|
|
495
499
|
academicQualification?: string;
|
|
@@ -1244,6 +1248,10 @@ declare class Job extends BaseEntity {
|
|
|
1244
1248
|
hideExpectedSalaryFrom: boolean;
|
|
1245
1249
|
expectedSalaryTo: number;
|
|
1246
1250
|
hideExpectedSalaryTo: boolean;
|
|
1251
|
+
years: string;
|
|
1252
|
+
months: string;
|
|
1253
|
+
weeks: string;
|
|
1254
|
+
days: string;
|
|
1247
1255
|
tentativeStartDate: Date;
|
|
1248
1256
|
tentativeEndDate: Date;
|
|
1249
1257
|
durationType: DurationTypeEnum;
|
package/dist/index.d.ts
CHANGED
|
@@ -490,6 +490,10 @@ declare class JobBasicInformationDto {
|
|
|
490
490
|
hideExpectedSalaryFrom: boolean;
|
|
491
491
|
expectedSalaryTo: number;
|
|
492
492
|
hideExpectedSalaryTo: boolean;
|
|
493
|
+
years: string;
|
|
494
|
+
months: string;
|
|
495
|
+
weeks: string;
|
|
496
|
+
days: string;
|
|
493
497
|
numberOfHours: number;
|
|
494
498
|
candidateCommunicationSkills?: string;
|
|
495
499
|
academicQualification?: string;
|
|
@@ -1244,6 +1248,10 @@ declare class Job extends BaseEntity {
|
|
|
1244
1248
|
hideExpectedSalaryFrom: boolean;
|
|
1245
1249
|
expectedSalaryTo: number;
|
|
1246
1250
|
hideExpectedSalaryTo: boolean;
|
|
1251
|
+
years: string;
|
|
1252
|
+
months: string;
|
|
1253
|
+
weeks: string;
|
|
1254
|
+
days: string;
|
|
1247
1255
|
tentativeStartDate: Date;
|
|
1248
1256
|
tentativeEndDate: Date;
|
|
1249
1257
|
durationType: DurationTypeEnum;
|
package/dist/index.js
CHANGED
|
@@ -1275,6 +1275,18 @@ __decorateClass([
|
|
|
1275
1275
|
__decorateClass([
|
|
1276
1276
|
(0, import_class_validator33.IsOptional)()
|
|
1277
1277
|
], JobBasicInformationDto.prototype, "hideExpectedSalaryTo", 2);
|
|
1278
|
+
__decorateClass([
|
|
1279
|
+
(0, import_class_validator33.IsOptional)()
|
|
1280
|
+
], JobBasicInformationDto.prototype, "years", 2);
|
|
1281
|
+
__decorateClass([
|
|
1282
|
+
(0, import_class_validator33.IsOptional)()
|
|
1283
|
+
], JobBasicInformationDto.prototype, "months", 2);
|
|
1284
|
+
__decorateClass([
|
|
1285
|
+
(0, import_class_validator33.IsOptional)()
|
|
1286
|
+
], JobBasicInformationDto.prototype, "weeks", 2);
|
|
1287
|
+
__decorateClass([
|
|
1288
|
+
(0, import_class_validator33.IsOptional)()
|
|
1289
|
+
], JobBasicInformationDto.prototype, "days", 2);
|
|
1278
1290
|
__decorateClass([
|
|
1279
1291
|
(0, import_class_validator33.IsOptional)(),
|
|
1280
1292
|
(0, import_class_validator33.IsNumber)({}, { message: "Number of hours must be a number" }),
|
|
@@ -3576,6 +3588,18 @@ __decorateClass([
|
|
|
3576
3588
|
default: false
|
|
3577
3589
|
})
|
|
3578
3590
|
], Job.prototype, "hideExpectedSalaryTo", 2);
|
|
3591
|
+
__decorateClass([
|
|
3592
|
+
(0, import_typeorm26.Column)({ name: "years", type: "varchar", nullable: true })
|
|
3593
|
+
], Job.prototype, "years", 2);
|
|
3594
|
+
__decorateClass([
|
|
3595
|
+
(0, import_typeorm26.Column)({ name: "months", type: "varchar", nullable: true })
|
|
3596
|
+
], Job.prototype, "months", 2);
|
|
3597
|
+
__decorateClass([
|
|
3598
|
+
(0, import_typeorm26.Column)({ name: "weeks", type: "varchar", nullable: true })
|
|
3599
|
+
], Job.prototype, "weeks", 2);
|
|
3600
|
+
__decorateClass([
|
|
3601
|
+
(0, import_typeorm26.Column)({ name: "days", type: "varchar", nullable: true })
|
|
3602
|
+
], Job.prototype, "days", 2);
|
|
3579
3603
|
__decorateClass([
|
|
3580
3604
|
(0, import_typeorm26.Column)({ name: "tentative_start_date", type: "date", nullable: true })
|
|
3581
3605
|
], Job.prototype, "tentativeStartDate", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -1078,6 +1078,18 @@ __decorateClass([
|
|
|
1078
1078
|
__decorateClass([
|
|
1079
1079
|
IsOptional12()
|
|
1080
1080
|
], JobBasicInformationDto.prototype, "hideExpectedSalaryTo", 2);
|
|
1081
|
+
__decorateClass([
|
|
1082
|
+
IsOptional12()
|
|
1083
|
+
], JobBasicInformationDto.prototype, "years", 2);
|
|
1084
|
+
__decorateClass([
|
|
1085
|
+
IsOptional12()
|
|
1086
|
+
], JobBasicInformationDto.prototype, "months", 2);
|
|
1087
|
+
__decorateClass([
|
|
1088
|
+
IsOptional12()
|
|
1089
|
+
], JobBasicInformationDto.prototype, "weeks", 2);
|
|
1090
|
+
__decorateClass([
|
|
1091
|
+
IsOptional12()
|
|
1092
|
+
], JobBasicInformationDto.prototype, "days", 2);
|
|
1081
1093
|
__decorateClass([
|
|
1082
1094
|
IsOptional12(),
|
|
1083
1095
|
IsNumber({}, { message: "Number of hours must be a number" }),
|
|
@@ -3506,6 +3518,18 @@ __decorateClass([
|
|
|
3506
3518
|
default: false
|
|
3507
3519
|
})
|
|
3508
3520
|
], Job.prototype, "hideExpectedSalaryTo", 2);
|
|
3521
|
+
__decorateClass([
|
|
3522
|
+
Column26({ name: "years", type: "varchar", nullable: true })
|
|
3523
|
+
], Job.prototype, "years", 2);
|
|
3524
|
+
__decorateClass([
|
|
3525
|
+
Column26({ name: "months", type: "varchar", nullable: true })
|
|
3526
|
+
], Job.prototype, "months", 2);
|
|
3527
|
+
__decorateClass([
|
|
3528
|
+
Column26({ name: "weeks", type: "varchar", nullable: true })
|
|
3529
|
+
], Job.prototype, "weeks", 2);
|
|
3530
|
+
__decorateClass([
|
|
3531
|
+
Column26({ name: "days", type: "varchar", nullable: true })
|
|
3532
|
+
], Job.prototype, "days", 2);
|
|
3509
3533
|
__decorateClass([
|
|
3510
3534
|
Column26({ name: "tentative_start_date", type: "date", nullable: true })
|
|
3511
3535
|
], Job.prototype, "tentativeStartDate", 2);
|
|
@@ -27,6 +27,10 @@ export declare class JobBasicInformationDto {
|
|
|
27
27
|
hideExpectedSalaryFrom: boolean;
|
|
28
28
|
expectedSalaryTo: number;
|
|
29
29
|
hideExpectedSalaryTo: boolean;
|
|
30
|
+
years: string;
|
|
31
|
+
months: string;
|
|
32
|
+
weeks: string;
|
|
33
|
+
days: string;
|
|
30
34
|
numberOfHours: number;
|
|
31
35
|
candidateCommunicationSkills?: string;
|
|
32
36
|
academicQualification?: string;
|