@experts_hub/shared 1.0.482 → 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.
@@ -22,5 +22,6 @@ export declare class F2FInterviewSchedule extends BaseEntity {
22
22
  meetingEligibleExpiryTime: Date;
23
23
  meetingVideoRecordingUrl: string;
24
24
  meetingAudioRecordingUrl: string;
25
+ meetingTranscript: any;
25
26
  meetingRecordings: any;
26
27
  }
package/dist/index.d.mts CHANGED
@@ -994,6 +994,7 @@ declare class F2FInterviewSchedule extends BaseEntity {
994
994
  meetingEligibleExpiryTime: Date;
995
995
  meetingVideoRecordingUrl: string;
996
996
  meetingAudioRecordingUrl: string;
997
+ meetingTranscript: any;
997
998
  meetingRecordings: any;
998
999
  }
999
1000
 
package/dist/index.d.ts CHANGED
@@ -994,6 +994,7 @@ declare class F2FInterviewSchedule extends BaseEntity {
994
994
  meetingEligibleExpiryTime: Date;
995
995
  meetingVideoRecordingUrl: string;
996
996
  meetingAudioRecordingUrl: string;
997
+ meetingTranscript: any;
997
998
  meetingRecordings: any;
998
999
  }
999
1000
 
package/dist/index.js CHANGED
@@ -2870,6 +2870,9 @@ __decorateClass([
2870
2870
  __decorateClass([
2871
2871
  (0, import_typeorm17.Column)({ name: "meeting_audio_recording_url", type: "varchar", nullable: true })
2872
2872
  ], F2FInterviewSchedule.prototype, "meetingAudioRecordingUrl", 2);
2873
+ __decorateClass([
2874
+ (0, import_typeorm17.Column)({ name: "meeting_transcript", type: "jsonb", nullable: true })
2875
+ ], F2FInterviewSchedule.prototype, "meetingTranscript", 2);
2873
2876
  __decorateClass([
2874
2877
  (0, import_typeorm17.Column)({ name: "meeting_recordings", type: "jsonb", nullable: true })
2875
2878
  ], F2FInterviewSchedule.prototype, "meetingRecordings", 2);
package/dist/index.mjs CHANGED
@@ -2776,6 +2776,9 @@ __decorateClass([
2776
2776
  __decorateClass([
2777
2777
  Column17({ name: "meeting_audio_recording_url", type: "varchar", nullable: true })
2778
2778
  ], F2FInterviewSchedule.prototype, "meetingAudioRecordingUrl", 2);
2779
+ __decorateClass([
2780
+ Column17({ name: "meeting_transcript", type: "jsonb", nullable: true })
2781
+ ], F2FInterviewSchedule.prototype, "meetingTranscript", 2);
2779
2782
  __decorateClass([
2780
2783
  Column17({ name: "meeting_recordings", type: "jsonb", nullable: true })
2781
2784
  ], F2FInterviewSchedule.prototype, "meetingRecordings", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.482",
3
+ "version": "1.0.483",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",