@experts_hub/shared 1.0.423 → 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
@@ -328,6 +328,7 @@ interface IAttachPermissionsToSubAdminResponse {
328
328
  }
329
329
 
330
330
  declare const CLIENT_PROFILE_PATTERN: {
331
+ fetchClientProfileQuestions: string;
331
332
  fetchClientProfile: string;
332
333
  fetchClientPublicProfile: string;
333
334
  updateClientProfile: string;
@@ -489,6 +490,10 @@ declare class JobBasicInformationDto {
489
490
  hideExpectedSalaryFrom: boolean;
490
491
  expectedSalaryTo: number;
491
492
  hideExpectedSalaryTo: boolean;
493
+ years: string;
494
+ months: string;
495
+ weeks: string;
496
+ days: string;
492
497
  numberOfHours: number;
493
498
  candidateCommunicationSkills?: string;
494
499
  academicQualification?: string;
@@ -1243,6 +1248,10 @@ declare class Job extends BaseEntity {
1243
1248
  hideExpectedSalaryFrom: boolean;
1244
1249
  expectedSalaryTo: number;
1245
1250
  hideExpectedSalaryTo: boolean;
1251
+ years: string;
1252
+ months: string;
1253
+ weeks: string;
1254
+ days: string;
1246
1255
  tentativeStartDate: Date;
1247
1256
  tentativeEndDate: Date;
1248
1257
  durationType: DurationTypeEnum;
package/dist/index.d.ts CHANGED
@@ -328,6 +328,7 @@ interface IAttachPermissionsToSubAdminResponse {
328
328
  }
329
329
 
330
330
  declare const CLIENT_PROFILE_PATTERN: {
331
+ fetchClientProfileQuestions: string;
331
332
  fetchClientProfile: string;
332
333
  fetchClientPublicProfile: string;
333
334
  updateClientProfile: string;
@@ -489,6 +490,10 @@ declare class JobBasicInformationDto {
489
490
  hideExpectedSalaryFrom: boolean;
490
491
  expectedSalaryTo: number;
491
492
  hideExpectedSalaryTo: boolean;
493
+ years: string;
494
+ months: string;
495
+ weeks: string;
496
+ days: string;
492
497
  numberOfHours: number;
493
498
  candidateCommunicationSkills?: string;
494
499
  academicQualification?: string;
@@ -1243,6 +1248,10 @@ declare class Job extends BaseEntity {
1243
1248
  hideExpectedSalaryFrom: boolean;
1244
1249
  expectedSalaryTo: number;
1245
1250
  hideExpectedSalaryTo: boolean;
1251
+ years: string;
1252
+ months: string;
1253
+ weeks: string;
1254
+ days: string;
1246
1255
  tentativeStartDate: Date;
1247
1256
  tentativeEndDate: Date;
1248
1257
  durationType: DurationTypeEnum;
package/dist/index.js CHANGED
@@ -1051,6 +1051,7 @@ __decorateClass([
1051
1051
 
1052
1052
  // src/modules/user/client-profile/pattern/pattern.ts
1053
1053
  var CLIENT_PROFILE_PATTERN = {
1054
+ fetchClientProfileQuestions: "fetch.client.profile.questions",
1054
1055
  fetchClientProfile: "fetch.client.profile",
1055
1056
  fetchClientPublicProfile: "fetch.client.public.profile",
1056
1057
  updateClientProfile: "update.client.profile",
@@ -1274,6 +1275,18 @@ __decorateClass([
1274
1275
  __decorateClass([
1275
1276
  (0, import_class_validator33.IsOptional)()
1276
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);
1277
1290
  __decorateClass([
1278
1291
  (0, import_class_validator33.IsOptional)(),
1279
1292
  (0, import_class_validator33.IsNumber)({}, { message: "Number of hours must be a number" }),
@@ -3575,6 +3588,18 @@ __decorateClass([
3575
3588
  default: false
3576
3589
  })
3577
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);
3578
3603
  __decorateClass([
3579
3604
  (0, import_typeorm26.Column)({ name: "tentative_start_date", type: "date", nullable: true })
3580
3605
  ], Job.prototype, "tentativeStartDate", 2);
package/dist/index.mjs CHANGED
@@ -825,6 +825,7 @@ __decorateClass([
825
825
 
826
826
  // src/modules/user/client-profile/pattern/pattern.ts
827
827
  var CLIENT_PROFILE_PATTERN = {
828
+ fetchClientProfileQuestions: "fetch.client.profile.questions",
828
829
  fetchClientProfile: "fetch.client.profile",
829
830
  fetchClientPublicProfile: "fetch.client.public.profile",
830
831
  updateClientProfile: "update.client.profile",
@@ -1077,6 +1078,18 @@ __decorateClass([
1077
1078
  __decorateClass([
1078
1079
  IsOptional12()
1079
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);
1080
1093
  __decorateClass([
1081
1094
  IsOptional12(),
1082
1095
  IsNumber({}, { message: "Number of hours must be a number" }),
@@ -3505,6 +3518,18 @@ __decorateClass([
3505
3518
  default: false
3506
3519
  })
3507
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);
3508
3533
  __decorateClass([
3509
3534
  Column26({ name: "tentative_start_date", type: "date", nullable: true })
3510
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;
@@ -1,4 +1,5 @@
1
1
  export declare const CLIENT_PROFILE_PATTERN: {
2
+ fetchClientProfileQuestions: string;
2
3
  fetchClientProfile: string;
3
4
  fetchClientPublicProfile: string;
4
5
  updateClientProfile: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.423",
3
+ "version": "1.0.425",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",