taxtank-core 0.33.40 → 0.33.41

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.33.40",
3
+ "version": "0.33.41",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -1,4 +1,7 @@
1
1
  export declare enum PropertyMessagesEnum {
2
2
  PHOTO_UPDATED = "Property photo updated",
3
- PROPERTY_UPDATED = "Property updated"
3
+ PROPERTY_UPDATED = "Property updated",
4
+ DELETE_CONFIRM = "Are you sure you want to delete property?",
5
+ DELETE = "Property deleted",
6
+ DELETE_500 = "Only properties without transactions can be removed"
4
7
  }
@@ -40,6 +40,7 @@ export declare class PropertyService extends RestService<PropertyBase, Property,
40
40
  * Deactivate activated property
41
41
  */
42
42
  deactivate(property: Property): Observable<void>;
43
+ delete(property: Property): Observable<void>;
43
44
  static ɵfac: i0.ɵɵFactoryDeclaration<PropertyService, never>;
44
45
  static ɵprov: i0.ɵɵInjectableDeclaration<PropertyService>;
45
46
  }