@experts_hub/shared 1.0.475 → 1.0.476

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.
@@ -18,4 +18,6 @@ export declare class F2FInterviewSchedule extends BaseEntity {
18
18
  status: F2fInterviewScheduleStatusEnum;
19
19
  meetingStartTime: Date;
20
20
  meetingEndTime: Date;
21
+ meetingEligibleStartTime: Date;
22
+ meetingEligibleExpiryTime: Date;
21
23
  }
package/dist/index.d.mts CHANGED
@@ -990,6 +990,8 @@ declare class F2FInterviewSchedule extends BaseEntity {
990
990
  status: F2fInterviewScheduleStatusEnum;
991
991
  meetingStartTime: Date;
992
992
  meetingEndTime: Date;
993
+ meetingEligibleStartTime: Date;
994
+ meetingEligibleExpiryTime: Date;
993
995
  }
994
996
 
995
997
  declare enum F2fInterviewStatusEnum {
package/dist/index.d.ts CHANGED
@@ -990,6 +990,8 @@ declare class F2FInterviewSchedule extends BaseEntity {
990
990
  status: F2fInterviewScheduleStatusEnum;
991
991
  meetingStartTime: Date;
992
992
  meetingEndTime: Date;
993
+ meetingEligibleStartTime: Date;
994
+ meetingEligibleExpiryTime: Date;
993
995
  }
994
996
 
995
997
  declare enum F2fInterviewStatusEnum {
package/dist/index.js CHANGED
@@ -2848,6 +2848,20 @@ __decorateClass([
2848
2848
  nullable: true
2849
2849
  })
2850
2850
  ], F2FInterviewSchedule.prototype, "meetingEndTime", 2);
2851
+ __decorateClass([
2852
+ (0, import_typeorm17.Column)({
2853
+ name: "meeting_eligible_start_time",
2854
+ type: "timestamp with time zone",
2855
+ nullable: true
2856
+ })
2857
+ ], F2FInterviewSchedule.prototype, "meetingEligibleStartTime", 2);
2858
+ __decorateClass([
2859
+ (0, import_typeorm17.Column)({
2860
+ name: "meeting_eligible_expiry_time",
2861
+ type: "timestamp with time zone",
2862
+ nullable: true
2863
+ })
2864
+ ], F2FInterviewSchedule.prototype, "meetingEligibleExpiryTime", 2);
2851
2865
  F2FInterviewSchedule = __decorateClass([
2852
2866
  (0, import_typeorm17.Entity)("f2f_interview_schedules")
2853
2867
  ], F2FInterviewSchedule);
@@ -3555,6 +3569,8 @@ var InvoicePaymentStatusEnum = /* @__PURE__ */ ((InvoicePaymentStatusEnum2) => {
3555
3569
  return InvoicePaymentStatusEnum2;
3556
3570
  })(InvoicePaymentStatusEnum || {});
3557
3571
  var Invoice = class extends BaseEntity {
3572
+ // @Column({ name: "freelancer_invoice_url", type: "varchar", nullable: true })
3573
+ // freelancerInvoiceUrl: string;
3558
3574
  };
3559
3575
  __decorateClass([
3560
3576
  (0, import_typeorm26.Column)({ name: "timesheet_line_id", type: "integer", nullable: true }),
package/dist/index.mjs CHANGED
@@ -2753,6 +2753,20 @@ __decorateClass([
2753
2753
  nullable: true
2754
2754
  })
2755
2755
  ], F2FInterviewSchedule.prototype, "meetingEndTime", 2);
2756
+ __decorateClass([
2757
+ Column17({
2758
+ name: "meeting_eligible_start_time",
2759
+ type: "timestamp with time zone",
2760
+ nullable: true
2761
+ })
2762
+ ], F2FInterviewSchedule.prototype, "meetingEligibleStartTime", 2);
2763
+ __decorateClass([
2764
+ Column17({
2765
+ name: "meeting_eligible_expiry_time",
2766
+ type: "timestamp with time zone",
2767
+ nullable: true
2768
+ })
2769
+ ], F2FInterviewSchedule.prototype, "meetingEligibleExpiryTime", 2);
2756
2770
  F2FInterviewSchedule = __decorateClass([
2757
2771
  Entity16("f2f_interview_schedules")
2758
2772
  ], F2FInterviewSchedule);
@@ -3475,6 +3489,8 @@ var InvoicePaymentStatusEnum = /* @__PURE__ */ ((InvoicePaymentStatusEnum2) => {
3475
3489
  return InvoicePaymentStatusEnum2;
3476
3490
  })(InvoicePaymentStatusEnum || {});
3477
3491
  var Invoice = class extends BaseEntity {
3492
+ // @Column({ name: "freelancer_invoice_url", type: "varchar", nullable: true })
3493
+ // freelancerInvoiceUrl: string;
3478
3494
  };
3479
3495
  __decorateClass([
3480
3496
  Column26({ name: "timesheet_line_id", type: "integer", nullable: true }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.475",
3
+ "version": "1.0.476",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",