@experts_hub/shared 1.0.557 → 1.0.558

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.
@@ -13,6 +13,7 @@ export declare class AiInterviewRescheduleRequest extends BaseEntity {
13
13
  client: User;
14
14
  aiInterviewId: number;
15
15
  aiInterview: AiInterview;
16
+ interviewId: number;
16
17
  rescheduledDate: Date;
17
18
  status: AiInterviewRescheduleRequestStatusEnum;
18
19
  clientRejectReason: string;
@@ -46,5 +46,6 @@ export declare class AiInterview extends BaseEntity {
46
46
  interviewInsight: string;
47
47
  isF2fInterviewScheduled: boolean;
48
48
  isContractSent: boolean;
49
+ attempts: number;
49
50
  rescheduleRequests: AiInterviewRescheduleRequest[];
50
51
  }
package/dist/index.d.mts CHANGED
@@ -1042,6 +1042,7 @@ declare class AiInterviewRescheduleRequest extends BaseEntity {
1042
1042
  client: User;
1043
1043
  aiInterviewId: number;
1044
1044
  aiInterview: AiInterview;
1045
+ interviewId: number;
1045
1046
  rescheduledDate: Date;
1046
1047
  status: AiInterviewRescheduleRequestStatusEnum;
1047
1048
  clientRejectReason: string;
@@ -1092,6 +1093,7 @@ declare class AiInterview extends BaseEntity {
1092
1093
  interviewInsight: string;
1093
1094
  isF2fInterviewScheduled: boolean;
1094
1095
  isContractSent: boolean;
1096
+ attempts: number;
1095
1097
  rescheduleRequests: AiInterviewRescheduleRequest[];
1096
1098
  }
1097
1099
 
package/dist/index.d.ts CHANGED
@@ -1042,6 +1042,7 @@ declare class AiInterviewRescheduleRequest extends BaseEntity {
1042
1042
  client: User;
1043
1043
  aiInterviewId: number;
1044
1044
  aiInterview: AiInterview;
1045
+ interviewId: number;
1045
1046
  rescheduledDate: Date;
1046
1047
  status: AiInterviewRescheduleRequestStatusEnum;
1047
1048
  clientRejectReason: string;
@@ -1092,6 +1093,7 @@ declare class AiInterview extends BaseEntity {
1092
1093
  interviewInsight: string;
1093
1094
  isF2fInterviewScheduled: boolean;
1094
1095
  isContractSent: boolean;
1096
+ attempts: number;
1095
1097
  rescheduleRequests: AiInterviewRescheduleRequest[];
1096
1098
  }
1097
1099
 
package/dist/index.js CHANGED
@@ -3093,6 +3093,9 @@ __decorateClass([
3093
3093
  (0, import_typeorm15.ManyToOne)(() => AiInterview, (aiInterview) => aiInterview.rescheduleRequests),
3094
3094
  (0, import_typeorm15.JoinColumn)({ name: "aiinterview_id" })
3095
3095
  ], AiInterviewRescheduleRequest.prototype, "aiInterview", 2);
3096
+ __decorateClass([
3097
+ (0, import_typeorm15.Column)({ name: "interview_id", type: "integer", nullable: true })
3098
+ ], AiInterviewRescheduleRequest.prototype, "interviewId", 2);
3096
3099
  __decorateClass([
3097
3100
  (0, import_typeorm15.Column)({ name: "rescheduled_date", type: "timestamp with time zone", nullable: true })
3098
3101
  ], AiInterviewRescheduleRequest.prototype, "rescheduledDate", 2);
@@ -3232,6 +3235,9 @@ __decorateClass([
3232
3235
  __decorateClass([
3233
3236
  (0, import_typeorm16.Column)({ name: "is_contract_sent", type: "boolean", default: false })
3234
3237
  ], AiInterview.prototype, "isContractSent", 2);
3238
+ __decorateClass([
3239
+ (0, import_typeorm16.Column)({ name: "attempts", type: "integer", nullable: true })
3240
+ ], AiInterview.prototype, "attempts", 2);
3235
3241
  __decorateClass([
3236
3242
  (0, import_typeorm16.OneToMany)(() => AiInterviewRescheduleRequest, (aiInterviewRescheduleRequest) => aiInterviewRescheduleRequest.aiInterview)
3237
3243
  ], AiInterview.prototype, "rescheduleRequests", 2);
package/dist/index.mjs CHANGED
@@ -2974,6 +2974,9 @@ __decorateClass([
2974
2974
  ManyToOne13(() => AiInterview, (aiInterview) => aiInterview.rescheduleRequests),
2975
2975
  JoinColumn13({ name: "aiinterview_id" })
2976
2976
  ], AiInterviewRescheduleRequest.prototype, "aiInterview", 2);
2977
+ __decorateClass([
2978
+ Column15({ name: "interview_id", type: "integer", nullable: true })
2979
+ ], AiInterviewRescheduleRequest.prototype, "interviewId", 2);
2977
2980
  __decorateClass([
2978
2981
  Column15({ name: "rescheduled_date", type: "timestamp with time zone", nullable: true })
2979
2982
  ], AiInterviewRescheduleRequest.prototype, "rescheduledDate", 2);
@@ -3113,6 +3116,9 @@ __decorateClass([
3113
3116
  __decorateClass([
3114
3117
  Column16({ name: "is_contract_sent", type: "boolean", default: false })
3115
3118
  ], AiInterview.prototype, "isContractSent", 2);
3119
+ __decorateClass([
3120
+ Column16({ name: "attempts", type: "integer", nullable: true })
3121
+ ], AiInterview.prototype, "attempts", 2);
3116
3122
  __decorateClass([
3117
3123
  OneToMany6(() => AiInterviewRescheduleRequest, (aiInterviewRescheduleRequest) => aiInterviewRescheduleRequest.aiInterview)
3118
3124
  ], AiInterview.prototype, "rescheduleRequests", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.557",
3
+ "version": "1.0.558",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",