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