@experts_hub/shared 1.0.481 → 1.0.483
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-schedule.entity.d.ts +4 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +12 -0
- package/dist/index.mjs +12 -0
- package/package.json +1 -1
|
@@ -20,4 +20,8 @@ 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
|
+
meetingTranscript: any;
|
|
26
|
+
meetingRecordings: any;
|
|
23
27
|
}
|
package/dist/index.d.mts
CHANGED
|
@@ -992,6 +992,10 @@ declare class F2FInterviewSchedule extends BaseEntity {
|
|
|
992
992
|
meetingEndTime: Date;
|
|
993
993
|
meetingEligibleStartTime: Date;
|
|
994
994
|
meetingEligibleExpiryTime: Date;
|
|
995
|
+
meetingVideoRecordingUrl: string;
|
|
996
|
+
meetingAudioRecordingUrl: string;
|
|
997
|
+
meetingTranscript: any;
|
|
998
|
+
meetingRecordings: any;
|
|
995
999
|
}
|
|
996
1000
|
|
|
997
1001
|
declare enum F2fInterviewStatusEnum {
|
package/dist/index.d.ts
CHANGED
|
@@ -992,6 +992,10 @@ declare class F2FInterviewSchedule extends BaseEntity {
|
|
|
992
992
|
meetingEndTime: Date;
|
|
993
993
|
meetingEligibleStartTime: Date;
|
|
994
994
|
meetingEligibleExpiryTime: Date;
|
|
995
|
+
meetingVideoRecordingUrl: string;
|
|
996
|
+
meetingAudioRecordingUrl: string;
|
|
997
|
+
meetingTranscript: any;
|
|
998
|
+
meetingRecordings: any;
|
|
995
999
|
}
|
|
996
1000
|
|
|
997
1001
|
declare enum F2fInterviewStatusEnum {
|
package/dist/index.js
CHANGED
|
@@ -2864,6 +2864,18 @@ __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_transcript", type: "jsonb", nullable: true })
|
|
2875
|
+
], F2FInterviewSchedule.prototype, "meetingTranscript", 2);
|
|
2876
|
+
__decorateClass([
|
|
2877
|
+
(0, import_typeorm17.Column)({ name: "meeting_recordings", type: "jsonb", nullable: true })
|
|
2878
|
+
], F2FInterviewSchedule.prototype, "meetingRecordings", 2);
|
|
2867
2879
|
F2FInterviewSchedule = __decorateClass([
|
|
2868
2880
|
(0, import_typeorm17.Entity)("f2f_interview_schedules")
|
|
2869
2881
|
], F2FInterviewSchedule);
|
package/dist/index.mjs
CHANGED
|
@@ -2770,6 +2770,18 @@ __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_transcript", type: "jsonb", nullable: true })
|
|
2781
|
+
], F2FInterviewSchedule.prototype, "meetingTranscript", 2);
|
|
2782
|
+
__decorateClass([
|
|
2783
|
+
Column17({ name: "meeting_recordings", type: "jsonb", nullable: true })
|
|
2784
|
+
], F2FInterviewSchedule.prototype, "meetingRecordings", 2);
|
|
2773
2785
|
F2FInterviewSchedule = __decorateClass([
|
|
2774
2786
|
Entity16("f2f_interview_schedules")
|
|
2775
2787
|
], F2FInterviewSchedule);
|