@experts_hub/shared 1.0.345 → 1.0.346

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.
@@ -32,6 +32,8 @@ export declare class F2FInterview extends BaseEntity {
32
32
  cancelledAt: Date;
33
33
  cancelReason: string;
34
34
  provider: string;
35
+ meetingStartedOn: Date;
36
+ meetingEndedOn: Date;
35
37
  schedules: F2FInterviewSchedule[];
36
38
  rescheduleRequests: F2fInterviewRescheduleRequest[];
37
39
  }
package/dist/index.d.mts CHANGED
@@ -958,6 +958,8 @@ declare class F2FInterview extends BaseEntity {
958
958
  cancelledAt: Date;
959
959
  cancelReason: string;
960
960
  provider: string;
961
+ meetingStartedOn: Date;
962
+ meetingEndedOn: Date;
961
963
  schedules: F2FInterviewSchedule[];
962
964
  rescheduleRequests: F2fInterviewRescheduleRequest[];
963
965
  }
package/dist/index.d.ts CHANGED
@@ -958,6 +958,8 @@ declare class F2FInterview extends BaseEntity {
958
958
  cancelledAt: Date;
959
959
  cancelReason: string;
960
960
  provider: string;
961
+ meetingStartedOn: Date;
962
+ meetingEndedOn: Date;
961
963
  schedules: F2FInterviewSchedule[];
962
964
  rescheduleRequests: F2fInterviewRescheduleRequest[];
963
965
  }
package/dist/index.js CHANGED
@@ -2729,6 +2729,20 @@ __decorateClass([
2729
2729
  __decorateClass([
2730
2730
  (0, import_typeorm18.Column)({ name: "provider", type: "varchar", nullable: true })
2731
2731
  ], F2FInterview.prototype, "provider", 2);
2732
+ __decorateClass([
2733
+ (0, import_typeorm18.Column)({
2734
+ name: "meeting_started_on",
2735
+ type: "timestamp with time zone",
2736
+ nullable: true
2737
+ })
2738
+ ], F2FInterview.prototype, "meetingStartedOn", 2);
2739
+ __decorateClass([
2740
+ (0, import_typeorm18.Column)({
2741
+ name: "meeting_ended_on",
2742
+ type: "timestamp with time zone",
2743
+ nullable: true
2744
+ })
2745
+ ], F2FInterview.prototype, "meetingEndedOn", 2);
2732
2746
  __decorateClass([
2733
2747
  (0, import_typeorm18.OneToMany)(() => F2FInterviewSchedule, (f2fInterviewSchedule) => f2fInterviewSchedule.f2fInterview)
2734
2748
  ], F2FInterview.prototype, "schedules", 2);
package/dist/index.mjs CHANGED
@@ -2689,6 +2689,20 @@ __decorateClass([
2689
2689
  __decorateClass([
2690
2690
  Column18({ name: "provider", type: "varchar", nullable: true })
2691
2691
  ], F2FInterview.prototype, "provider", 2);
2692
+ __decorateClass([
2693
+ Column18({
2694
+ name: "meeting_started_on",
2695
+ type: "timestamp with time zone",
2696
+ nullable: true
2697
+ })
2698
+ ], F2FInterview.prototype, "meetingStartedOn", 2);
2699
+ __decorateClass([
2700
+ Column18({
2701
+ name: "meeting_ended_on",
2702
+ type: "timestamp with time zone",
2703
+ nullable: true
2704
+ })
2705
+ ], F2FInterview.prototype, "meetingEndedOn", 2);
2692
2706
  __decorateClass([
2693
2707
  OneToMany6(() => F2FInterviewSchedule, (f2fInterviewSchedule) => f2fInterviewSchedule.f2fInterview)
2694
2708
  ], F2FInterview.prototype, "schedules", 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.345",
3
+ "version": "1.0.346",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",