@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.
- 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
|
@@ -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);
|