taxtank-core 0.30.30 → 0.30.33

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.
@@ -1,6 +1,7 @@
1
1
  import { DepreciationForecast as DepreciationForecastBase } from '../../db/Models/depreciation/depreciation-forecast';
2
2
  export declare class DepreciationForecast extends DepreciationForecastBase {
3
3
  isLVP: boolean;
4
+ closeBalance: number;
4
5
  get dailyClaimAmount(): number;
5
6
  get daysApplied(): number;
6
7
  getDaysByMonth(month: number): number;
@@ -1,7 +1,6 @@
1
1
  import { Property } from '../property';
2
2
  import { PropertySale } from './property-sale';
3
- import { DepreciationCollection } from '../../../collections/depreciation.collection';
4
- import { TransactionCollection } from '../../../collections/transaction/transaction.collection';
3
+ import { DepreciationCollection, TransactionCollection } from '../../../collections';
5
4
  /**
6
5
  * @Todo TT-2143 should be removed when PropertySaleCostBaseForm refactored (cut property to separated form)
7
6
  */
@@ -0,0 +1,5 @@
1
+ export declare enum HoldingMessagesEnum {
2
+ CREATED = "Holding created successfully",
3
+ UPDATED = "Holding updated successfully",
4
+ DELETED = "Holding deleted successfully"
5
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum HoldingSaleMessagesEnum {
2
+ CREATED = "Holding sold successfully",
3
+ UPDATED = "Sale updated successfully",
4
+ DELETED = "Sale deleted successfully"
5
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum HoldingTypeMessagesEnum {
2
+ CREATED = "Holding type created successfully",
3
+ UPDATED = "Holding type updated successfully",
4
+ DELETED = "Holding type deleted successfully"
5
+ }
@@ -1,3 +1,6 @@
1
1
  export * from './holding.service';
2
2
  export * from './holding-type.service';
3
3
  export * from './holding-sale.service';
4
+ export * from './holding-messages.enum';
5
+ export * from './holding-sale-messages.enum';
6
+ export * from './holding-type-messages.enum';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.30.30",
3
+ "version": "0.30.33",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^15.1.5",