@experts_hub/shared 1.0.398 → 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.
@@ -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
@@ -989,6 +989,7 @@ declare class F2FInterview extends BaseEntity {
989
989
  provider: string;
990
990
  meetingStartedOn: Date;
991
991
  meetingEndedOn: Date;
992
+ isContractSent: boolean;
992
993
  schedules: F2FInterviewSchedule[];
993
994
  rescheduleRequests: F2fInterviewRescheduleRequest[];
994
995
  }
package/dist/index.d.ts CHANGED
@@ -989,6 +989,7 @@ declare class F2FInterview extends BaseEntity {
989
989
  provider: string;
990
990
  meetingStartedOn: Date;
991
991
  meetingEndedOn: Date;
992
+ isContractSent: boolean;
992
993
  schedules: F2FInterviewSchedule[];
993
994
  rescheduleRequests: F2fInterviewRescheduleRequest[];
994
995
  }
package/dist/index.js CHANGED
@@ -2819,6 +2819,9 @@ __decorateClass([
2819
2819
  nullable: true
2820
2820
  })
2821
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);
2822
2825
  __decorateClass([
2823
2826
  (0, import_typeorm18.OneToMany)(() => F2FInterviewSchedule, (f2fInterviewSchedule) => f2fInterviewSchedule.f2fInterview)
2824
2827
  ], F2FInterview.prototype, "schedules", 2);
package/dist/index.mjs CHANGED
@@ -2739,6 +2739,9 @@ __decorateClass([
2739
2739
  nullable: true
2740
2740
  })
2741
2741
  ], F2FInterview.prototype, "meetingEndedOn", 2);
2742
+ __decorateClass([
2743
+ Column18({ name: "is_contract_sent", type: "boolean", default: false })
2744
+ ], F2FInterview.prototype, "isContractSent", 2);
2742
2745
  __decorateClass([
2743
2746
  OneToMany6(() => F2FInterviewSchedule, (f2fInterviewSchedule) => f2fInterviewSchedule.f2fInterview)
2744
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.398",
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/",