taxtank-core 1.0.7 → 1.0.9

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": "1.0.7",
3
+ "version": "1.0.9",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^19.0.2",
@@ -5,7 +5,7 @@ export declare class PropertyCategoryMovementCollection extends Collection<Prope
5
5
  * @TODO TT-2355 Alex refactor propertyForecast, use separated api (then I can remove property from param)
6
6
  */
7
7
  filterByForecast(property: Property, forecast: PropertyForecast): this;
8
- hasCategory(categoryId: number): boolean;
8
+ isShared(): boolean;
9
9
  /**
10
10
  * active movement by property based on selected year
11
11
  */
@@ -2,5 +2,4 @@ import { PropertyCategory as PropertyCategoryBase } from '../../db/Models/proper
2
2
  export declare class PropertyCategory extends PropertyCategoryBase {
3
3
  isOwnerOccupied(): boolean;
4
4
  isVacantLand(): boolean;
5
- isShared(): boolean;
6
5
  }