@experts_hub/shared 1.0.475 → 1.0.477

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
  }
@@ -40,4 +40,5 @@ export declare class Invoice extends BaseEntity {
40
40
  status: InvoiceStatusEnum;
41
41
  paymentStatus: InvoicePaymentStatusEnum;
42
42
  clientInvoiceUrl: string;
43
+ freelancerInvoiceUrl: string;
43
44
  }
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 {
@@ -1245,6 +1247,7 @@ declare class Invoice extends BaseEntity {
1245
1247
  status: InvoiceStatusEnum;
1246
1248
  paymentStatus: InvoicePaymentStatusEnum;
1247
1249
  clientInvoiceUrl: string;
1250
+ freelancerInvoiceUrl: string;
1248
1251
  }
1249
1252
 
1250
1253
  declare enum TimesheetLineStatusEnum {
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 {
@@ -1245,6 +1247,7 @@ declare class Invoice extends BaseEntity {
1245
1247
  status: InvoiceStatusEnum;
1246
1248
  paymentStatus: InvoicePaymentStatusEnum;
1247
1249
  clientInvoiceUrl: string;
1250
+ freelancerInvoiceUrl: string;
1248
1251
  }
1249
1252
 
1250
1253
  declare enum TimesheetLineStatusEnum {
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);
@@ -3640,6 +3654,9 @@ __decorateClass([
3640
3654
  __decorateClass([
3641
3655
  (0, import_typeorm26.Column)({ name: "client_invoice_url", type: "varchar", nullable: true })
3642
3656
  ], Invoice.prototype, "clientInvoiceUrl", 2);
3657
+ __decorateClass([
3658
+ (0, import_typeorm26.Column)({ name: "freelancer_invoice_url", type: "varchar", nullable: true })
3659
+ ], Invoice.prototype, "freelancerInvoiceUrl", 2);
3643
3660
  Invoice = __decorateClass([
3644
3661
  (0, import_typeorm26.Entity)("invoices")
3645
3662
  ], Invoice);
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);
@@ -3560,6 +3574,9 @@ __decorateClass([
3560
3574
  __decorateClass([
3561
3575
  Column26({ name: "client_invoice_url", type: "varchar", nullable: true })
3562
3576
  ], Invoice.prototype, "clientInvoiceUrl", 2);
3577
+ __decorateClass([
3578
+ Column26({ name: "freelancer_invoice_url", type: "varchar", nullable: true })
3579
+ ], Invoice.prototype, "freelancerInvoiceUrl", 2);
3563
3580
  Invoice = __decorateClass([
3564
3581
  Entity25("invoices")
3565
3582
  ], Invoice);
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.477",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",