@experts_hub/shared 1.0.501 → 1.0.503

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.
@@ -20,6 +20,8 @@ export declare class AiInterview extends BaseEntity {
20
20
  interviewId: number;
21
21
  interview: Interview;
22
22
  inviteId: number;
23
+ candidateInterviewId: string;
24
+ candidateInterviewLink: string;
23
25
  status: AiInterviewStatusEnum;
24
26
  isF2fInterviewScheduled: boolean;
25
27
  isContractSent: boolean;
@@ -17,9 +17,12 @@ export declare class InterviewInvite extends BaseEntity {
17
17
  job: Job;
18
18
  fullName: string;
19
19
  email: string;
20
+ mobileCode: string;
21
+ mobile: string;
20
22
  status: InterviewInviteStatusEnum;
21
23
  sentAt: Date;
22
24
  expiresAt: Date;
23
25
  respondedAt?: Date;
24
26
  token: string;
27
+ talentId: string;
25
28
  }
package/dist/index.d.mts CHANGED
@@ -958,11 +958,14 @@ declare class InterviewInvite extends BaseEntity {
958
958
  job: Job;
959
959
  fullName: string;
960
960
  email: string;
961
+ mobileCode: string;
962
+ mobile: string;
961
963
  status: InterviewInviteStatusEnum;
962
964
  sentAt: Date;
963
965
  expiresAt: Date;
964
966
  respondedAt?: Date;
965
967
  token: string;
968
+ talentId: string;
966
969
  }
967
970
 
968
971
  declare enum AiInterviewStatusEnum {
@@ -984,6 +987,8 @@ declare class AiInterview extends BaseEntity {
984
987
  interviewId: number;
985
988
  interview: Interview;
986
989
  inviteId: number;
990
+ candidateInterviewId: string;
991
+ candidateInterviewLink: string;
987
992
  status: AiInterviewStatusEnum;
988
993
  isF2fInterviewScheduled: boolean;
989
994
  isContractSent: boolean;
package/dist/index.d.ts CHANGED
@@ -958,11 +958,14 @@ declare class InterviewInvite extends BaseEntity {
958
958
  job: Job;
959
959
  fullName: string;
960
960
  email: string;
961
+ mobileCode: string;
962
+ mobile: string;
961
963
  status: InterviewInviteStatusEnum;
962
964
  sentAt: Date;
963
965
  expiresAt: Date;
964
966
  respondedAt?: Date;
965
967
  token: string;
968
+ talentId: string;
966
969
  }
967
970
 
968
971
  declare enum AiInterviewStatusEnum {
@@ -984,6 +987,8 @@ declare class AiInterview extends BaseEntity {
984
987
  interviewId: number;
985
988
  interview: Interview;
986
989
  inviteId: number;
990
+ candidateInterviewId: string;
991
+ candidateInterviewLink: string;
987
992
  status: AiInterviewStatusEnum;
988
993
  isF2fInterviewScheduled: boolean;
989
994
  isContractSent: boolean;
package/dist/index.js CHANGED
@@ -2771,6 +2771,13 @@ __decorateClass([
2771
2771
  }),
2772
2772
  (0, import_typeorm14.Index)()
2773
2773
  ], InterviewInvite.prototype, "email", 2);
2774
+ __decorateClass([
2775
+ (0, import_typeorm14.Column)({ name: "mobile_code", type: "varchar", nullable: true })
2776
+ ], InterviewInvite.prototype, "mobileCode", 2);
2777
+ __decorateClass([
2778
+ (0, import_typeorm14.Column)({ name: "mobile", type: "varchar", comment: "Candidate's mobile number (must be unique per invite)", nullable: true }),
2779
+ (0, import_typeorm14.Index)()
2780
+ ], InterviewInvite.prototype, "mobile", 2);
2774
2781
  __decorateClass([
2775
2782
  (0, import_typeorm14.Column)({
2776
2783
  name: "status",
@@ -2814,6 +2821,14 @@ __decorateClass([
2814
2821
  }),
2815
2822
  (0, import_typeorm14.Index)()
2816
2823
  ], InterviewInvite.prototype, "token", 2);
2824
+ __decorateClass([
2825
+ (0, import_typeorm14.Column)({
2826
+ name: "talent_id",
2827
+ type: "varchar",
2828
+ nullable: true
2829
+ }),
2830
+ (0, import_typeorm14.Index)()
2831
+ ], InterviewInvite.prototype, "talentId", 2);
2817
2832
  InterviewInvite = __decorateClass([
2818
2833
  (0, import_typeorm14.Entity)("interview_invites")
2819
2834
  ], InterviewInvite);
@@ -2860,6 +2875,21 @@ __decorateClass([
2860
2875
  __decorateClass([
2861
2876
  (0, import_typeorm15.Column)({ name: "invite_id", type: "integer", nullable: true })
2862
2877
  ], AiInterview.prototype, "inviteId", 2);
2878
+ __decorateClass([
2879
+ (0, import_typeorm15.Column)({
2880
+ name: "candidate_interview_id",
2881
+ type: "varchar",
2882
+ nullable: true
2883
+ })
2884
+ ], AiInterview.prototype, "candidateInterviewId", 2);
2885
+ __decorateClass([
2886
+ (0, import_typeorm15.Column)({
2887
+ name: "candidate_interview_link",
2888
+ type: "varchar",
2889
+ nullable: true
2890
+ }),
2891
+ (0, import_typeorm15.Index)()
2892
+ ], AiInterview.prototype, "candidateInterviewLink", 2);
2863
2893
  __decorateClass([
2864
2894
  (0, import_typeorm15.Column)({
2865
2895
  name: "status",
package/dist/index.mjs CHANGED
@@ -2653,6 +2653,13 @@ __decorateClass([
2653
2653
  }),
2654
2654
  Index9()
2655
2655
  ], InterviewInvite.prototype, "email", 2);
2656
+ __decorateClass([
2657
+ Column14({ name: "mobile_code", type: "varchar", nullable: true })
2658
+ ], InterviewInvite.prototype, "mobileCode", 2);
2659
+ __decorateClass([
2660
+ Column14({ name: "mobile", type: "varchar", comment: "Candidate's mobile number (must be unique per invite)", nullable: true }),
2661
+ Index9()
2662
+ ], InterviewInvite.prototype, "mobile", 2);
2656
2663
  __decorateClass([
2657
2664
  Column14({
2658
2665
  name: "status",
@@ -2696,6 +2703,14 @@ __decorateClass([
2696
2703
  }),
2697
2704
  Index9()
2698
2705
  ], InterviewInvite.prototype, "token", 2);
2706
+ __decorateClass([
2707
+ Column14({
2708
+ name: "talent_id",
2709
+ type: "varchar",
2710
+ nullable: true
2711
+ }),
2712
+ Index9()
2713
+ ], InterviewInvite.prototype, "talentId", 2);
2699
2714
  InterviewInvite = __decorateClass([
2700
2715
  Entity13("interview_invites")
2701
2716
  ], InterviewInvite);
@@ -2742,6 +2757,21 @@ __decorateClass([
2742
2757
  __decorateClass([
2743
2758
  Column15({ name: "invite_id", type: "integer", nullable: true })
2744
2759
  ], AiInterview.prototype, "inviteId", 2);
2760
+ __decorateClass([
2761
+ Column15({
2762
+ name: "candidate_interview_id",
2763
+ type: "varchar",
2764
+ nullable: true
2765
+ })
2766
+ ], AiInterview.prototype, "candidateInterviewId", 2);
2767
+ __decorateClass([
2768
+ Column15({
2769
+ name: "candidate_interview_link",
2770
+ type: "varchar",
2771
+ nullable: true
2772
+ }),
2773
+ Index10()
2774
+ ], AiInterview.prototype, "candidateInterviewLink", 2);
2745
2775
  __decorateClass([
2746
2776
  Column15({
2747
2777
  name: "status",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.501",
3
+ "version": "1.0.503",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",