@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.
- package/dist/entities/invoice.entity.d.ts +1 -0
- package/dist/index.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -0
- package/dist/index.mjs +3 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
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);
|