taxtank-core 0.33.53 → 0.33.55

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.53",
3
+ "version": "0.33.55",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -1,12 +1,16 @@
1
1
  import { RestMethod, RestService } from '../rest';
2
2
  import { Collection } from '../../../collections';
3
3
  import { HomeOfficeLog, HomeOfficeLogInterface } from '../../../models';
4
+ import { IEventListener } from '../../../interfaces';
4
5
  import * as i0 from "@angular/core";
5
- export declare class HomeOfficeLogService extends RestService<HomeOfficeLogInterface, HomeOfficeLog, Collection<HomeOfficeLog>> {
6
+ export declare class HomeOfficeLogService extends RestService<HomeOfficeLogInterface, HomeOfficeLog, Collection<HomeOfficeLog>> implements IEventListener {
7
+ protected environment: any;
6
8
  protected endpointUri: string;
7
9
  modelClass: typeof HomeOfficeLog;
8
10
  collectionClass: typeof Collection<HomeOfficeLog>;
9
11
  disabledMethods: RestMethod[];
12
+ constructor(environment: any);
13
+ listenEvents(): void;
10
14
  static ɵfac: i0.ɵɵFactoryDeclaration<HomeOfficeLogService, never>;
11
15
  static ɵprov: i0.ɵɵInjectableDeclaration<HomeOfficeLogService>;
12
16
  }