taxtank-core 0.33.52 → 0.33.54
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/src/lib/collections/depreciation.collection.mjs +2 -2
- package/esm2022/src/lib/collections/income-source/income-source.collection.mjs +2 -2
- package/esm2022/src/lib/collections/transaction/transaction.collection.mjs +3 -3
- package/esm2022/src/lib/collections/vehicle/vehicle-logbook.collection.mjs +2 -2
- package/esm2022/src/lib/db/Enums/tank-type.enum.mjs +6 -6
- package/esm2022/src/lib/db/Models/transaction/transaction-base.mjs +6 -6
- package/esm2022/src/lib/forms/bank/bank-account/bank-account-allocation.form.mjs +3 -3
- package/esm2022/src/lib/forms/bank/bank-account/bank-account-properties.form.mjs +2 -2
- package/esm2022/src/lib/forms/sole/sole-business-allocations.form.mjs +2 -2
- package/esm2022/src/lib/forms/transaction/allocation-rule.form.mjs +11 -11
- package/esm2022/src/lib/forms/transaction/transaction-base-filter.form.mjs +3 -3
- package/esm2022/src/lib/models/bank/allocation-group.mjs +2 -2
- package/esm2022/src/lib/models/report/my-tax/my-tax-deductions/my-tax-deductions.mjs +2 -2
- package/esm2022/src/lib/models/transaction/allocation-rule.mjs +4 -4
- package/esm2022/src/lib/models/user/user.mjs +5 -5
- package/esm2022/src/lib/models/vehicle/vehicle-claim.mjs +2 -2
- package/esm2022/src/lib/models/vehicle/vehicle-logbook.mjs +3 -3
- package/esm2022/src/lib/services/http/home-office/home-office-log.service.mjs +15 -7
- package/fesm2022/taxtank-core.mjs +55 -47
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/db/Enums/tank-type.enum.d.ts +5 -5
- 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
|
}
|