@experts_hub/shared 1.0.713 → 1.0.715
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 +2 -0
- package/dist/index.d.mts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +6 -0
- package/dist/index.mjs +6 -0
- package/package.json +1 -1
|
@@ -39,6 +39,8 @@ export declare class Invoice extends BaseEntity {
|
|
|
39
39
|
billingHours: string;
|
|
40
40
|
hourlyRate: string;
|
|
41
41
|
billingAmount: string;
|
|
42
|
+
billingMarkUpAmount: string;
|
|
43
|
+
billingMarkUpPercentage: string;
|
|
42
44
|
invoiceType: InvoiceTypeEnum;
|
|
43
45
|
status: InvoiceStatusEnum;
|
|
44
46
|
paymentStatus: InvoicePaymentStatusEnum;
|
package/dist/index.d.mts
CHANGED
|
@@ -1078,6 +1078,8 @@ declare class Invoice extends BaseEntity {
|
|
|
1078
1078
|
billingHours: string;
|
|
1079
1079
|
hourlyRate: string;
|
|
1080
1080
|
billingAmount: string;
|
|
1081
|
+
billingMarkUpAmount: string;
|
|
1082
|
+
billingMarkUpPercentage: string;
|
|
1081
1083
|
invoiceType: InvoiceTypeEnum;
|
|
1082
1084
|
status: InvoiceStatusEnum;
|
|
1083
1085
|
paymentStatus: InvoicePaymentStatusEnum;
|
package/dist/index.d.ts
CHANGED
|
@@ -1078,6 +1078,8 @@ declare class Invoice extends BaseEntity {
|
|
|
1078
1078
|
billingHours: string;
|
|
1079
1079
|
hourlyRate: string;
|
|
1080
1080
|
billingAmount: string;
|
|
1081
|
+
billingMarkUpAmount: string;
|
|
1082
|
+
billingMarkUpPercentage: string;
|
|
1081
1083
|
invoiceType: InvoiceTypeEnum;
|
|
1082
1084
|
status: InvoiceStatusEnum;
|
|
1083
1085
|
paymentStatus: InvoicePaymentStatusEnum;
|
package/dist/index.js
CHANGED
|
@@ -3898,6 +3898,12 @@ __decorateClass([
|
|
|
3898
3898
|
__decorateClass([
|
|
3899
3899
|
(0, import_typeorm28.Column)({ name: "billing_amount", type: "varchar", nullable: true })
|
|
3900
3900
|
], Invoice.prototype, "billingAmount", 2);
|
|
3901
|
+
__decorateClass([
|
|
3902
|
+
(0, import_typeorm28.Column)({ name: "billing_mark_up_amount", type: "varchar", nullable: true })
|
|
3903
|
+
], Invoice.prototype, "billingMarkUpAmount", 2);
|
|
3904
|
+
__decorateClass([
|
|
3905
|
+
(0, import_typeorm28.Column)({ name: "billing_mark_up_percentage", type: "varchar", nullable: true })
|
|
3906
|
+
], Invoice.prototype, "billingMarkUpPercentage", 2);
|
|
3901
3907
|
__decorateClass([
|
|
3902
3908
|
(0, import_typeorm28.Column)({ name: "invoice_type", type: "enum", enum: InvoiceTypeEnum, nullable: true })
|
|
3903
3909
|
], Invoice.prototype, "invoiceType", 2);
|
package/dist/index.mjs
CHANGED
|
@@ -3585,6 +3585,12 @@ __decorateClass([
|
|
|
3585
3585
|
__decorateClass([
|
|
3586
3586
|
Column28({ name: "billing_amount", type: "varchar", nullable: true })
|
|
3587
3587
|
], Invoice.prototype, "billingAmount", 2);
|
|
3588
|
+
__decorateClass([
|
|
3589
|
+
Column28({ name: "billing_mark_up_amount", type: "varchar", nullable: true })
|
|
3590
|
+
], Invoice.prototype, "billingMarkUpAmount", 2);
|
|
3591
|
+
__decorateClass([
|
|
3592
|
+
Column28({ name: "billing_mark_up_percentage", type: "varchar", nullable: true })
|
|
3593
|
+
], Invoice.prototype, "billingMarkUpPercentage", 2);
|
|
3588
3594
|
__decorateClass([
|
|
3589
3595
|
Column28({ name: "invoice_type", type: "enum", enum: InvoiceTypeEnum, nullable: true })
|
|
3590
3596
|
], Invoice.prototype, "invoiceType", 2);
|