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/esm2022/src/lib/collections/sole/sole-invoice.collection.mjs +4 -3
- package/esm2022/src/lib/services/http/home-office/home-office-log.service.mjs +15 -7
- package/fesm2022/taxtank-core.mjs +15 -6
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/services/http/home-office/home-office-log.service.d.ts +5 -1
package/package.json
CHANGED
@@ -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
|
}
|