taxtank-core 2.1.19 → 2.1.20
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 +14 -10
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/index.d.ts +7 -7
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2085,6 +2085,7 @@ declare class ChartData {
|
|
|
2085
2085
|
name: string;
|
|
2086
2086
|
data: ChartSerie[];
|
|
2087
2087
|
zones?: object[];
|
|
2088
|
+
visible: boolean;
|
|
2088
2089
|
}
|
|
2089
2090
|
|
|
2090
2091
|
/**
|
|
@@ -4881,11 +4882,11 @@ declare class BankAccountChartData {
|
|
|
4881
4882
|
/**
|
|
4882
4883
|
* set value of pie chart data
|
|
4883
4884
|
*/
|
|
4884
|
-
getBalancePieChartData():
|
|
4885
|
+
getBalancePieChartData(): ChartData[];
|
|
4885
4886
|
/**
|
|
4886
4887
|
* set value of bar chart data
|
|
4887
4888
|
*/
|
|
4888
|
-
getBalanceBarChartData():
|
|
4889
|
+
getBalanceBarChartData(): ChartData[];
|
|
4889
4890
|
}
|
|
4890
4891
|
|
|
4891
4892
|
declare class BankTransaction extends BankTransaction$1 {
|
|
@@ -10975,15 +10976,14 @@ declare class AussieConfirmationForm extends AbstractForm<AussieAppointment> {
|
|
|
10975
10976
|
* Service to handle Property transactions report items data (get income / expense report items, e.t.c.)
|
|
10976
10977
|
*/
|
|
10977
10978
|
declare class PropertyTransactionReportService {
|
|
10978
|
-
private propertyService;
|
|
10979
|
-
private transactionService;
|
|
10980
|
-
private depreciationService;
|
|
10981
|
-
private chartAccountsService;
|
|
10982
10979
|
properties: PropertyCollection;
|
|
10983
10980
|
transactions: TransactionCollection;
|
|
10984
10981
|
depreciations: DepreciationCollection;
|
|
10985
10982
|
chartAccounts: ChartAccountsCollection;
|
|
10986
|
-
|
|
10983
|
+
private propertyService;
|
|
10984
|
+
private transactionService;
|
|
10985
|
+
private depreciationService;
|
|
10986
|
+
private chartAccountsService;
|
|
10987
10987
|
/**
|
|
10988
10988
|
* Get collection of report items based on transactions & depreciations
|
|
10989
10989
|
*/
|