@experts_hub/shared 1.0.481 → 1.0.482
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.
|
@@ -20,4 +20,7 @@ export declare class F2FInterviewSchedule extends BaseEntity {
|
|
|
20
20
|
meetingEndTime: Date;
|
|
21
21
|
meetingEligibleStartTime: Date;
|
|
22
22
|
meetingEligibleExpiryTime: Date;
|
|
23
|
+
meetingVideoRecordingUrl: string;
|
|
24
|
+
meetingAudioRecordingUrl: string;
|
|
25
|
+
meetingRecordings: any;
|
|
23
26
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -992,6 +992,9 @@ declare class F2FInterviewSchedule extends BaseEntity {
|
|
|
992
992
|
meetingEndTime: Date;
|
|
993
993
|
meetingEligibleStartTime: Date;
|
|
994
994
|
meetingEligibleExpiryTime: Date;
|
|
995
|
+
meetingVideoRecordingUrl: string;
|
|
996
|
+
meetingAudioRecordingUrl: string;
|
|
997
|
+
meetingRecordings: any;
|
|
995
998
|
}
|
|
996
999
|
|
|
997
1000
|
declare enum F2fInterviewStatusEnum {
|
package/dist/index.d.ts
CHANGED
|
@@ -992,6 +992,9 @@ declare class F2FInterviewSchedule extends BaseEntity {
|
|
|
992
992
|
meetingEndTime: Date;
|
|
993
993
|
meetingEligibleStartTime: Date;
|
|
994
994
|
meetingEligibleExpiryTime: Date;
|
|
995
|
+
meetingVideoRecordingUrl: string;
|
|
996
|
+
meetingAudioRecordingUrl: string;
|
|
997
|
+
meetingRecordings: any;
|
|
995
998
|
}
|
|
996
999
|
|
|
997
1000
|
declare enum F2fInterviewStatusEnum {
|
package/dist/index.js
CHANGED
|
@@ -2864,6 +2864,15 @@ __decorateClass([
|
|
|
2864
2864
|
nullable: true
|
|
2865
2865
|
})
|
|
2866
2866
|
], F2FInterviewSchedule.prototype, "meetingEligibleExpiryTime", 2);
|
|
2867
|
+
__decorateClass([
|
|
2868
|
+
(0, import_typeorm17.Column)({ name: "meeting_video_recording_url", type: "varchar", nullable: true })
|
|
2869
|
+
], F2FInterviewSchedule.prototype, "meetingVideoRecordingUrl", 2);
|
|
2870
|
+
__decorateClass([
|
|
2871
|
+
(0, import_typeorm17.Column)({ name: "meeting_audio_recording_url", type: "varchar", nullable: true })
|
|
2872
|
+
], F2FInterviewSchedule.prototype, "meetingAudioRecordingUrl", 2);
|
|
2873
|
+
__decorateClass([
|
|
2874
|
+
(0, import_typeorm17.Column)({ name: "meeting_recordings", type: "jsonb", nullable: true })
|
|
2875
|
+
], F2FInterviewSchedule.prototype, "meetingRecordings", 2);
|
|
2867
2876
|
F2FInterviewSchedule = __decorateClass([
|
|
2868
2877
|
(0, import_typeorm17.Entity)("f2f_interview_schedules")
|
|
2869
2878
|
], F2FInterviewSchedule);
|
package/dist/index.mjs
CHANGED
|
@@ -2770,6 +2770,15 @@ __decorateClass([
|
|
|
2770
2770
|
nullable: true
|
|
2771
2771
|
})
|
|
2772
2772
|
], F2FInterviewSchedule.prototype, "meetingEligibleExpiryTime", 2);
|
|
2773
|
+
__decorateClass([
|
|
2774
|
+
Column17({ name: "meeting_video_recording_url", type: "varchar", nullable: true })
|
|
2775
|
+
], F2FInterviewSchedule.prototype, "meetingVideoRecordingUrl", 2);
|
|
2776
|
+
__decorateClass([
|
|
2777
|
+
Column17({ name: "meeting_audio_recording_url", type: "varchar", nullable: true })
|
|
2778
|
+
], F2FInterviewSchedule.prototype, "meetingAudioRecordingUrl", 2);
|
|
2779
|
+
__decorateClass([
|
|
2780
|
+
Column17({ name: "meeting_recordings", type: "jsonb", nullable: true })
|
|
2781
|
+
], F2FInterviewSchedule.prototype, "meetingRecordings", 2);
|
|
2773
2782
|
F2FInterviewSchedule = __decorateClass([
|
|
2774
2783
|
Entity16("f2f_interview_schedules")
|
|
2775
2784
|
], F2FInterviewSchedule);
|