@experts_hub/shared 1.0.674 → 1.0.675

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.
@@ -38,6 +38,7 @@ export declare class F2FInterview extends BaseEntity {
38
38
  meetingStartedOn: Date;
39
39
  meetingEndedOn: Date;
40
40
  isContractSent: boolean;
41
+ feedback: string;
41
42
  schedules: F2FInterviewSchedule[];
42
43
  rescheduleRequests: F2fInterviewRescheduleRequest[];
43
44
  }
package/dist/index.d.mts CHANGED
@@ -826,6 +826,7 @@ declare class F2FInterview extends BaseEntity {
826
826
  meetingStartedOn: Date;
827
827
  meetingEndedOn: Date;
828
828
  isContractSent: boolean;
829
+ feedback: string;
829
830
  schedules: F2FInterviewSchedule[];
830
831
  rescheduleRequests: F2fInterviewRescheduleRequest[];
831
832
  }
package/dist/index.d.ts CHANGED
@@ -826,6 +826,7 @@ declare class F2FInterview extends BaseEntity {
826
826
  meetingStartedOn: Date;
827
827
  meetingEndedOn: Date;
828
828
  isContractSent: boolean;
829
+ feedback: string;
829
830
  schedules: F2FInterviewSchedule[];
830
831
  rescheduleRequests: F2fInterviewRescheduleRequest[];
831
832
  }
package/dist/index.js CHANGED
@@ -2995,6 +2995,9 @@ __decorateClass([
2995
2995
  __decorateClass([
2996
2996
  (0, import_typeorm19.Column)({ name: "is_contract_sent", type: "boolean", default: false })
2997
2997
  ], F2FInterview.prototype, "isContractSent", 2);
2998
+ __decorateClass([
2999
+ (0, import_typeorm19.Column)({ name: "feedback", type: "varchar", nullable: true })
3000
+ ], F2FInterview.prototype, "feedback", 2);
2998
3001
  __decorateClass([
2999
3002
  (0, import_typeorm19.OneToMany)(() => F2FInterviewSchedule, (f2fInterviewSchedule) => f2fInterviewSchedule.f2fInterview)
3000
3003
  ], F2FInterview.prototype, "schedules", 2);
package/dist/index.mjs CHANGED
@@ -2708,6 +2708,9 @@ __decorateClass([
2708
2708
  __decorateClass([
2709
2709
  Column19({ name: "is_contract_sent", type: "boolean", default: false })
2710
2710
  ], F2FInterview.prototype, "isContractSent", 2);
2711
+ __decorateClass([
2712
+ Column19({ name: "feedback", type: "varchar", nullable: true })
2713
+ ], F2FInterview.prototype, "feedback", 2);
2711
2714
  __decorateClass([
2712
2715
  OneToMany8(() => F2FInterviewSchedule, (f2fInterviewSchedule) => f2fInterviewSchedule.f2fInterview)
2713
2716
  ], F2FInterview.prototype, "schedules", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.674",
3
+ "version": "1.0.675",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",