taxtank-core 0.27.1 → 0.27.2
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 +94 -90
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/models/sole/sole-business.js +6 -2
- package/fesm2015/taxtank-core.js +63 -59
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/sole/sole-business.d.ts +5 -1
- package/package.json +1 -1
|
@@ -4,11 +4,15 @@ import { SoleBusinessAllocation } from './sole-business-allocation';
|
|
|
4
4
|
import { SoleBusinessLoss } from './sole-business-loss';
|
|
5
5
|
import { SoleInvoice } from './sole-invoice';
|
|
6
6
|
import { SoleInvoiceTemplate } from './sole-invoice-template';
|
|
7
|
-
import { VehicleClaim } from '../vehicle
|
|
7
|
+
import { VehicleClaim } from '../vehicle';
|
|
8
8
|
import { Depreciation } from '../depreciation/depreciation';
|
|
9
9
|
import { Transaction } from '../transaction/transaction';
|
|
10
10
|
import { Photoable } from '../../interfaces/photoable';
|
|
11
11
|
export declare class SoleBusiness extends SoleBusinessBase implements Photoable {
|
|
12
|
+
/**
|
|
13
|
+
* Maximum number of businesses that a person can have, according to the ATO
|
|
14
|
+
*/
|
|
15
|
+
static businessesLimit: number;
|
|
12
16
|
user: User;
|
|
13
17
|
allocations: SoleBusinessAllocation[];
|
|
14
18
|
losses: SoleBusinessLoss[];
|