@experts_hub/shared 1.0.348 → 1.0.350

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.
@@ -7,5 +7,9 @@ export declare class JobRecommendation {
7
7
  clientId: number;
8
8
  matchScore: number;
9
9
  matchScoreSummary?: Record<string, any>;
10
+ matchingSkills: string[];
11
+ matchingSkillsCount: number;
12
+ requiredSkills: string[];
13
+ requiredSkillsCount: number;
10
14
  lastCalculatedAt: Date;
11
15
  }
package/dist/index.d.mts CHANGED
@@ -999,6 +999,10 @@ declare class JobRecommendation {
999
999
  clientId: number;
1000
1000
  matchScore: number;
1001
1001
  matchScoreSummary?: Record<string, any>;
1002
+ matchingSkills: string[];
1003
+ matchingSkillsCount: number;
1004
+ requiredSkills: string[];
1005
+ requiredSkillsCount: number;
1002
1006
  lastCalculatedAt: Date;
1003
1007
  }
1004
1008
 
@@ -2188,7 +2192,7 @@ declare class CreateF2FInterviewRescheduleRequestDto {
2188
2192
  f2FInterviewId: string;
2189
2193
  rescheduledDate: string;
2190
2194
  rescheduledSlot: string;
2191
- freelancerReason: string;
2195
+ freelancerRequestReason: string;
2192
2196
  }
2193
2197
 
2194
2198
  declare const UserTCPAdapter: () => MicroserviceOptions;
package/dist/index.d.ts CHANGED
@@ -999,6 +999,10 @@ declare class JobRecommendation {
999
999
  clientId: number;
1000
1000
  matchScore: number;
1001
1001
  matchScoreSummary?: Record<string, any>;
1002
+ matchingSkills: string[];
1003
+ matchingSkillsCount: number;
1004
+ requiredSkills: string[];
1005
+ requiredSkillsCount: number;
1002
1006
  lastCalculatedAt: Date;
1003
1007
  }
1004
1008
 
@@ -2188,7 +2192,7 @@ declare class CreateF2FInterviewRescheduleRequestDto {
2188
2192
  f2FInterviewId: string;
2189
2193
  rescheduledDate: string;
2190
2194
  rescheduledSlot: string;
2191
- freelancerReason: string;
2195
+ freelancerRequestReason: string;
2192
2196
  }
2193
2197
 
2194
2198
  declare const UserTCPAdapter: () => MicroserviceOptions;
package/dist/index.js CHANGED
@@ -2871,6 +2871,28 @@ __decorateClass([
2871
2871
  __decorateClass([
2872
2872
  (0, import_typeorm20.Column)({ name: "match_score_summary", type: "jsonb", nullable: true })
2873
2873
  ], JobRecommendation.prototype, "matchScoreSummary", 2);
2874
+ __decorateClass([
2875
+ (0, import_typeorm20.Column)({
2876
+ name: "matching_skills",
2877
+ type: "text",
2878
+ array: true,
2879
+ nullable: true
2880
+ })
2881
+ ], JobRecommendation.prototype, "matchingSkills", 2);
2882
+ __decorateClass([
2883
+ (0, import_typeorm20.Column)({ name: "matching_skills_count", type: "int", nullable: true })
2884
+ ], JobRecommendation.prototype, "matchingSkillsCount", 2);
2885
+ __decorateClass([
2886
+ (0, import_typeorm20.Column)({
2887
+ name: "required_skills",
2888
+ type: "text",
2889
+ array: true,
2890
+ nullable: true
2891
+ })
2892
+ ], JobRecommendation.prototype, "requiredSkills", 2);
2893
+ __decorateClass([
2894
+ (0, import_typeorm20.Column)({ name: "required_skills_count", type: "int", nullable: true })
2895
+ ], JobRecommendation.prototype, "requiredSkillsCount", 2);
2874
2896
  __decorateClass([
2875
2897
  (0, import_typeorm20.Column)({
2876
2898
  name: "last_calculated_at",
@@ -5350,7 +5372,7 @@ __decorateClass([
5350
5372
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "rescheduledSlot", 2);
5351
5373
  __decorateClass([
5352
5374
  (0, import_class_validator67.IsString)({ message: "Freelancer reason must be a string." })
5353
- ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerReason", 2);
5375
+ ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerRequestReason", 2);
5354
5376
 
5355
5377
  // src/adapters/tcp/user.tcp.adapter.ts
5356
5378
  var import_dotenv = require("dotenv");
package/dist/index.mjs CHANGED
@@ -2803,7 +2803,14 @@ Interview = __decorateClass([
2803
2803
  ], Interview);
2804
2804
 
2805
2805
  // src/entities/job-recommendation.entity.ts
2806
- import { Entity as Entity19, Column as Column20, Index as Index13, ManyToOne as ManyToOne18, JoinColumn as JoinColumn18, PrimaryGeneratedColumn as PrimaryGeneratedColumn5 } from "typeorm";
2806
+ import {
2807
+ Entity as Entity19,
2808
+ Column as Column20,
2809
+ Index as Index13,
2810
+ ManyToOne as ManyToOne18,
2811
+ JoinColumn as JoinColumn18,
2812
+ PrimaryGeneratedColumn as PrimaryGeneratedColumn5
2813
+ } from "typeorm";
2807
2814
  var JobRecommendation = class {
2808
2815
  };
2809
2816
  __decorateClass([
@@ -2831,6 +2838,28 @@ __decorateClass([
2831
2838
  __decorateClass([
2832
2839
  Column20({ name: "match_score_summary", type: "jsonb", nullable: true })
2833
2840
  ], JobRecommendation.prototype, "matchScoreSummary", 2);
2841
+ __decorateClass([
2842
+ Column20({
2843
+ name: "matching_skills",
2844
+ type: "text",
2845
+ array: true,
2846
+ nullable: true
2847
+ })
2848
+ ], JobRecommendation.prototype, "matchingSkills", 2);
2849
+ __decorateClass([
2850
+ Column20({ name: "matching_skills_count", type: "int", nullable: true })
2851
+ ], JobRecommendation.prototype, "matchingSkillsCount", 2);
2852
+ __decorateClass([
2853
+ Column20({
2854
+ name: "required_skills",
2855
+ type: "text",
2856
+ array: true,
2857
+ nullable: true
2858
+ })
2859
+ ], JobRecommendation.prototype, "requiredSkills", 2);
2860
+ __decorateClass([
2861
+ Column20({ name: "required_skills_count", type: "int", nullable: true })
2862
+ ], JobRecommendation.prototype, "requiredSkillsCount", 2);
2834
2863
  __decorateClass([
2835
2864
  Column20({
2836
2865
  name: "last_calculated_at",
@@ -5503,7 +5532,7 @@ __decorateClass([
5503
5532
  ], CreateF2FInterviewRescheduleRequestDto.prototype, "rescheduledSlot", 2);
5504
5533
  __decorateClass([
5505
5534
  IsString39({ message: "Freelancer reason must be a string." })
5506
- ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerReason", 2);
5535
+ ], CreateF2FInterviewRescheduleRequestDto.prototype, "freelancerRequestReason", 2);
5507
5536
 
5508
5537
  // src/adapters/tcp/user.tcp.adapter.ts
5509
5538
  import { config } from "dotenv";
@@ -2,5 +2,5 @@ export declare class CreateF2FInterviewRescheduleRequestDto {
2
2
  f2FInterviewId: string;
3
3
  rescheduledDate: string;
4
4
  rescheduledSlot: string;
5
- freelancerReason: string;
5
+ freelancerRequestReason: string;
6
6
  }
@@ -1,3 +1,3 @@
1
1
  export declare class RejectF2FInterviewRescheduleRequestDto {
2
- clientReason: string;
2
+ clientRejectReason: string;
3
3
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.348",
3
+ "version": "1.0.350",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",