taxtank-core 0.17.1 → 0.17.4
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/bundles/taxtank-core.umd.js +15 -1
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/models/property/property-sale/property-sale.js +10 -1
- package/esm2015/lib/models/transaction/transaction.js +7 -3
- package/fesm2015/taxtank-core.js +14 -1
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/property/property-sale/property-sale.d.ts +3 -0
- package/lib/models/transaction/transaction.d.ts +4 -0
- package/package.json +1 -1
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { PropertySale as BasePropertySale } from '../../../db/Models/property/property-sale/property-sale';
|
|
2
2
|
import { PropertySaleTaxExemptionMetadata } from '../../../db/Models/property/property-sale/property-sale-tax-exemption-metadata';
|
|
3
3
|
export declare class PropertySale extends BasePropertySale {
|
|
4
|
+
commission: number;
|
|
5
|
+
legalFees: number;
|
|
6
|
+
otherCost: number;
|
|
4
7
|
settlementDate: Date;
|
|
5
8
|
contractDate: Date;
|
|
6
9
|
taxExemptionMetadata: PropertySaleTaxExemptionMetadata[];
|
|
@@ -23,6 +23,10 @@ export declare class Transaction extends TransactionBase implements Expense, IRe
|
|
|
23
23
|
loan: Loan;
|
|
24
24
|
date: Date;
|
|
25
25
|
allocations: TransactionAllocation[];
|
|
26
|
+
/**
|
|
27
|
+
* could be File when just added new image
|
|
28
|
+
* @TODO Alex plainToClass doesn't work with File without this hack https://github.com/typestack/class-transformer/issues/1178
|
|
29
|
+
*/
|
|
26
30
|
file: File;
|
|
27
31
|
tax: number;
|
|
28
32
|
operation: TransactionOperationEnum;
|