taxtank-core 2.1.57 → 2.1.58
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 +5 -0
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +3 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1511,13 +1511,15 @@ declare class Loan$1 extends ObservableModel {
|
|
|
1511
1511
|
|
|
1512
1512
|
declare abstract class TransactionBase extends ObservableModel {
|
|
1513
1513
|
amount?: number;
|
|
1514
|
-
foreignAmount?: number;
|
|
1515
1514
|
file: AppFile;
|
|
1516
1515
|
property?: Property;
|
|
1517
1516
|
business?: SoleBusiness$1;
|
|
1518
1517
|
date?: Date;
|
|
1519
1518
|
chartAccounts?: ChartAccounts$1;
|
|
1520
1519
|
description?: string;
|
|
1520
|
+
currency?: string;
|
|
1521
|
+
foreignAmount?: number;
|
|
1522
|
+
exchangeRate?: number;
|
|
1521
1523
|
/**
|
|
1522
1524
|
* gst applies to sole trader expense/income, if he is registered and chartAccounts is eligible
|
|
1523
1525
|
*/
|
|
@@ -1667,9 +1669,6 @@ declare class Transaction$1 extends TransactionBase {
|
|
|
1667
1669
|
business?: SoleBusiness$1;
|
|
1668
1670
|
isGST?: boolean;
|
|
1669
1671
|
invoiceItem?: SoleInvoiceItem$1;
|
|
1670
|
-
currency?: string;
|
|
1671
|
-
foreignAmount?: number;
|
|
1672
|
-
exchangeRate?: number;
|
|
1673
1672
|
}
|
|
1674
1673
|
|
|
1675
1674
|
declare class SoleInvoiceItem$1 extends AbstractModel {
|