@experts_hub/shared 1.0.447 → 1.0.448

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.
@@ -39,4 +39,5 @@ export declare class Invoice extends BaseEntity {
39
39
  invoiceType: InvoiceTypeEnum;
40
40
  status: InvoiceStatusEnum;
41
41
  paymentStatus: InvoicePaymentStatusEnum;
42
+ clientInvoiceUrl: string;
42
43
  }
package/dist/index.d.mts CHANGED
@@ -1227,6 +1227,7 @@ declare class Invoice extends BaseEntity {
1227
1227
  invoiceType: InvoiceTypeEnum;
1228
1228
  status: InvoiceStatusEnum;
1229
1229
  paymentStatus: InvoicePaymentStatusEnum;
1230
+ clientInvoiceUrl: string;
1230
1231
  }
1231
1232
 
1232
1233
  declare enum TimesheetLineStatusEnum {
package/dist/index.d.ts CHANGED
@@ -1227,6 +1227,7 @@ declare class Invoice extends BaseEntity {
1227
1227
  invoiceType: InvoiceTypeEnum;
1228
1228
  status: InvoiceStatusEnum;
1229
1229
  paymentStatus: InvoicePaymentStatusEnum;
1230
+ clientInvoiceUrl: string;
1230
1231
  }
1231
1232
 
1232
1233
  declare enum TimesheetLineStatusEnum {
package/dist/index.js CHANGED
@@ -3573,6 +3573,9 @@ __decorateClass([
3573
3573
  __decorateClass([
3574
3574
  (0, import_typeorm26.Column)({ name: "payment_status", type: "enum", enum: InvoicePaymentStatusEnum, nullable: true })
3575
3575
  ], Invoice.prototype, "paymentStatus", 2);
3576
+ __decorateClass([
3577
+ (0, import_typeorm26.Column)({ name: "client_invoice_url", type: "varchar", nullable: true })
3578
+ ], Invoice.prototype, "clientInvoiceUrl", 2);
3576
3579
  Invoice = __decorateClass([
3577
3580
  (0, import_typeorm26.Entity)("invoices")
3578
3581
  ], Invoice);
package/dist/index.mjs CHANGED
@@ -3499,6 +3499,9 @@ __decorateClass([
3499
3499
  __decorateClass([
3500
3500
  Column26({ name: "payment_status", type: "enum", enum: InvoicePaymentStatusEnum, nullable: true })
3501
3501
  ], Invoice.prototype, "paymentStatus", 2);
3502
+ __decorateClass([
3503
+ Column26({ name: "client_invoice_url", type: "varchar", nullable: true })
3504
+ ], Invoice.prototype, "clientInvoiceUrl", 2);
3502
3505
  Invoice = __decorateClass([
3503
3506
  Entity25("invoices")
3504
3507
  ], Invoice);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@experts_hub/shared",
3
- "version": "1.0.447",
3
+ "version": "1.0.448",
4
4
  "description": "Shared DTOs, interfaces, and utilities for experts hub applications",
5
5
  "publishConfig": {
6
6
  "registry": "https://registry.npmjs.org/",