taxtank-core 0.32.7 → 0.32.8

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.
@@ -93,7 +93,5 @@ export declare enum ChartAccountsListEnum {
93
93
  PSI_DEDUCTION_ASSOCIATES = 859,
94
94
  PSI_DEDUCTION_OTHER = 860,
95
95
  AUSTRALIAN_GOVERNMENT_SPECIAL_PAYMENTS = 871,
96
- FHSS = 872,
97
- PROGRESS_PAYMENTS = 884,
98
- LOAN_PAYMENT = 885
96
+ FHSS = 872
99
97
  }
@@ -62,8 +62,6 @@ export declare class ChartAccounts extends ChartAccountsBase {
62
62
  isIncome(): boolean;
63
63
  isExpense(): boolean;
64
64
  isProperty(): boolean;
65
- isWork(): boolean;
66
- isSole(): boolean;
67
65
  isWorkExpense(): boolean;
68
66
  isSoleExpense(): boolean;
69
67
  /**
@@ -80,6 +78,7 @@ export declare class ChartAccounts extends ChartAccountsBase {
80
78
  * Check if chart accounts category is depreciation
81
79
  */
82
80
  isDepreciation(): boolean;
81
+ isSoleIncome(): boolean;
83
82
  /**
84
83
  * Check if transaction chart account is work related car expenses
85
84
  */
@@ -112,13 +111,8 @@ export declare class ChartAccounts extends ChartAccountsBase {
112
111
  */
113
112
  isSalaryIncluded(): boolean;
114
113
  isPropertyCapitalWorks(): boolean;
115
- hasTaxField(): boolean;
116
114
  isTaxable(): boolean;
117
115
  isTransfer(): boolean;
118
116
  isDividends(): boolean;
119
117
  isHomeOfficeWorkHours(): boolean;
120
- /**
121
- * income requiring extra data like adjustments/payer/etc
122
- */
123
- isIncomeWithMeta(): boolean;
124
118
  }
@@ -88,10 +88,15 @@ export declare abstract class RestService<BaseModel, Model extends BaseModel> im
88
88
  */
89
89
  delete(model: Model): Observable<void>;
90
90
  /**
91
+ * @deprecated use removeBatch
91
92
  * delete multiple instances of class
92
93
  * @param models Class instances array for deleting
93
94
  */
94
95
  deleteBatch(models: Model[]): Observable<void>;
96
+ /**
97
+ * collect array of redo transactions requests observable
98
+ */
99
+ removeBatch(models: Model[]): Observable<void>[];
95
100
  /**
96
101
  * clear service cache
97
102
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.32.7",
3
+ "version": "0.32.8",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^16.2.12",