taxtank-core 0.33.37 → 0.33.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.33.37",
3
+ "version": "0.33.39",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -3,5 +3,6 @@ export declare enum SoleInvoiceStateEnum {
3
3
  DRAFT = 1,
4
4
  OPEN = 2,
5
5
  PAID = 3,
6
- OVERDUE = 4
6
+ FULLY_PAID = 4,
7
+ OVERDUE = 5
7
8
  }
@@ -47,6 +47,7 @@ export declare class TransactionService extends RestService<TransactionBase, Tra
47
47
  * Get list of property holding costs (transactions related to vacant land property)
48
48
  */
49
49
  getPropertyHoldingCosts(propertyId: number): Observable<Transaction[]>;
50
+ getWithoutTaxFreeProperty(): Observable<Transaction[]>;
50
51
  /**
51
52
  * get list of taxable transactions with tank type 'Work'
52
53
  */