@experts_hub/shared 1.0.397 → 1.0.399

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.
@@ -22,4 +22,5 @@ export declare class AiInterview extends BaseEntity {
22
22
  inviteId: number;
23
23
  status: AiInterviewStatusEnum;
24
24
  isF2fInterviewScheduled: boolean;
25
+ isContractSent: boolean;
25
26
  }
@@ -34,6 +34,7 @@ export declare class F2FInterview extends BaseEntity {
34
34
  provider: string;
35
35
  meetingStartedOn: Date;
36
36
  meetingEndedOn: Date;
37
+ isContractSent: boolean;
37
38
  schedules: F2FInterviewSchedule[];
38
39
  rescheduleRequests: F2fInterviewRescheduleRequest[];
39
40
  }
package/dist/index.d.mts CHANGED
@@ -916,6 +916,7 @@ declare class AiInterview extends BaseEntity {
916
916
  inviteId: number;
917
917
  status: AiInterviewStatusEnum;
918
918
  isF2fInterviewScheduled: boolean;
919
+ isContractSent: boolean;
919
920
  }
920
921
 
921
922
  declare enum F2fInterviewRescheduleRequestStatusEnum {
@@ -988,6 +989,7 @@ declare class F2FInterview extends BaseEntity {
988
989
  provider: string;
989
990
  meetingStartedOn: Date;
990
991
  meetingEndedOn: Date;
992
+ isContractSent: boolean;
991
993
  schedules: F2FInterviewSchedule[];
992
994
  rescheduleRequests: F2fInterviewRescheduleRequest[];
993
995
  }
package/dist/index.d.ts CHANGED
@@ -916,6 +916,7 @@ declare class AiInterview extends BaseEntity {
916
916
  inviteId: number;
917
917
  status: AiInterviewStatusEnum;
918
918
  isF2fInterviewScheduled: boolean;
919
+ isContractSent: boolean;
919
920
  }
920
921
 
921
922
  declare enum F2fInterviewRescheduleRequestStatusEnum {
@@ -988,6 +989,7 @@ declare class F2FInterview extends BaseEntity {
988
989
  provider: string;
989
990
  meetingStartedOn: Date;
990
991
  meetingEndedOn: Date;
992
+ isContractSent: boolean;
991
993
  schedules: F2FInterviewSchedule[];
992
994
  rescheduleRequests: F2fInterviewRescheduleRequest[];
993
995
  }
package/dist/index.js CHANGED
@@ -2608,6 +2608,9 @@ __decorateClass([
2608
2608
  __decorateClass([
2609
2609
  (0, import_typeorm15.Column)({ name: "is_f2f_interview_scheduled", type: "boolean", default: false })
2610
2610
  ], AiInterview.prototype, "isF2fInterviewScheduled", 2);
2611
+ __decorateClass([
2612
+ (0, import_typeorm15.Column)({ name: "is_contract_sent", type: "boolean", default: false })
2613
+ ], AiInterview.prototype, "isContractSent", 2);
2611
2614
  AiInterview = __decorateClass([
2612
2615
  (0, import_typeorm15.Entity)("ai_interviews")
2613
2616
  ], AiInterview);
@@ -2816,6 +2819,9 @@ __decorateClass([
2816
2819
  nullable: true
2817
2820
  })
2818
2821
  ], F2FInterview.prototype, "meetingEndedOn", 2);
2822
+ __decorateClass([
2823
+ (0, import_typeorm18.Column)({ name: "is_contract_sent", type: "boolean", default: false })
2824
+ ], F2FInterview.prototype, "isContractSent", 2);
2819
2825
  __decorateClass([
2820
2826
  (0, import_typeorm18.OneToMany)(() => F2FInterviewSchedule, (f2fInterviewSchedule) => f2fInterviewSchedule.f2fInterview)
2821
2827
  ], F2FInterview.prototype, "schedules", 2);
package/dist/index.mjs CHANGED
@@ -2511,6 +2511,9 @@ __decorateClass([
2511
2511
  __decorateClass([
2512
2512
  Column15({ name: "is_f2f_interview_scheduled", type: "boolean", default: false })
2513
2513
  ], AiInterview.prototype, "isF2fInterviewScheduled", 2);
2514
+ __decorateClass([
2515
+ Column15({ name: "is_contract_sent", type: "boolean", default: false })
2516
+ ], AiInterview.prototype, "isContractSent", 2);
2514
2517
  AiInterview = __decorateClass([
2515
2518
  Entity14("ai_interviews")
2516
2519
  ], AiInterview);
@@ -2736,6 +2739,9 @@ __decorateClass([
2736
2739
  nullable: true
2737
2740
  })
2738
2741
  ], F2FInterview.prototype, "meetingEndedOn", 2);
2742
+ __decorateClass([
2743
+ Column18({ name: "is_contract_sent", type: "boolean", default: false })
2744
+ ], F2FInterview.prototype, "isContractSent", 2);
2739
2745
  __decorateClass([
2740
2746
  OneToMany6(() => F2FInterviewSchedule, (f2fInterviewSchedule) => f2fInterviewSchedule.f2fInterview)
2741
2747
  ], F2FInterview.prototype, "schedules", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.397",
3
+ "version": "1.0.399",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",