taxtank-core 2.1.29 → 2.1.31
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/fesm2022/taxtank-core.mjs +12 -1
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1792,7 +1792,8 @@ declare class SoleBusiness$1 extends ObservableModel {
|
|
|
1792
1792
|
file: File$1;
|
|
1793
1793
|
isTaxFree: boolean;
|
|
1794
1794
|
abn?: string;
|
|
1795
|
-
isGST
|
|
1795
|
+
isGST: boolean;
|
|
1796
|
+
address?: Address$1;
|
|
1796
1797
|
}
|
|
1797
1798
|
|
|
1798
1799
|
declare enum MyAccountHistoryInitiatedByEnum {
|
|
@@ -4792,7 +4793,9 @@ declare class SoleBusiness extends SoleBusiness$1 {
|
|
|
4792
4793
|
incomeSource: IncomeSource;
|
|
4793
4794
|
isPrimaryProduction: boolean;
|
|
4794
4795
|
file: AppFile;
|
|
4796
|
+
address?: Address;
|
|
4795
4797
|
getAbn(soleDetails: SoleDetails): string;
|
|
4798
|
+
getAddress(soleDetails: SoleDetails): Address;
|
|
4796
4799
|
getIsGST(soleDetails: SoleDetails): boolean;
|
|
4797
4800
|
}
|
|
4798
4801
|
|