@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.
- package/dist/entities/f2f-interview.entity.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
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);
|