@experts_hub/shared 1.0.476 → 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.
@@ -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
@@ -1247,6 +1247,7 @@ declare class Invoice extends BaseEntity {
1247
1247
  status: InvoiceStatusEnum;
1248
1248
  paymentStatus: InvoicePaymentStatusEnum;
1249
1249
  clientInvoiceUrl: string;
1250
+ freelancerInvoiceUrl: string;
1250
1251
  }
1251
1252
 
1252
1253
  declare enum TimesheetLineStatusEnum {
package/dist/index.d.ts CHANGED
@@ -1247,6 +1247,7 @@ declare class Invoice extends BaseEntity {
1247
1247
  status: InvoiceStatusEnum;
1248
1248
  paymentStatus: InvoicePaymentStatusEnum;
1249
1249
  clientInvoiceUrl: string;
1250
+ freelancerInvoiceUrl: string;
1250
1251
  }
1251
1252
 
1252
1253
  declare enum TimesheetLineStatusEnum {
package/dist/index.js CHANGED
@@ -3569,8 +3569,6 @@ var InvoicePaymentStatusEnum = /* @__PURE__ */ ((InvoicePaymentStatusEnum2) => {
3569
3569
  return InvoicePaymentStatusEnum2;
3570
3570
  })(InvoicePaymentStatusEnum || {});
3571
3571
  var Invoice = class extends BaseEntity {
3572
- // @Column({ name: "freelancer_invoice_url", type: "varchar", nullable: true })
3573
- // freelancerInvoiceUrl: string;
3574
3572
  };
3575
3573
  __decorateClass([
3576
3574
  (0, import_typeorm26.Column)({ name: "timesheet_line_id", type: "integer", nullable: true }),
@@ -3656,6 +3654,9 @@ __decorateClass([
3656
3654
  __decorateClass([
3657
3655
  (0, import_typeorm26.Column)({ name: "client_invoice_url", type: "varchar", nullable: true })
3658
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);
3659
3660
  Invoice = __decorateClass([
3660
3661
  (0, import_typeorm26.Entity)("invoices")
3661
3662
  ], Invoice);
package/dist/index.mjs CHANGED
@@ -3489,8 +3489,6 @@ var InvoicePaymentStatusEnum = /* @__PURE__ */ ((InvoicePaymentStatusEnum2) => {
3489
3489
  return InvoicePaymentStatusEnum2;
3490
3490
  })(InvoicePaymentStatusEnum || {});
3491
3491
  var Invoice = class extends BaseEntity {
3492
- // @Column({ name: "freelancer_invoice_url", type: "varchar", nullable: true })
3493
- // freelancerInvoiceUrl: string;
3494
3492
  };
3495
3493
  __decorateClass([
3496
3494
  Column26({ name: "timesheet_line_id", type: "integer", nullable: true }),
@@ -3576,6 +3574,9 @@ __decorateClass([
3576
3574
  __decorateClass([
3577
3575
  Column26({ name: "client_invoice_url", type: "varchar", nullable: true })
3578
3576
  ], Invoice.prototype, "clientInvoiceUrl", 2);
3577
+ __decorateClass([
3578
+ Column26({ name: "freelancer_invoice_url", type: "varchar", nullable: true })
3579
+ ], Invoice.prototype, "freelancerInvoiceUrl", 2);
3579
3580
  Invoice = __decorateClass([
3580
3581
  Entity25("invoices")
3581
3582
  ], Invoice);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.476",
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/",