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.
Files changed (23) hide show
  1. package/esm2022/src/lib/collections/depreciation.collection.mjs +2 -2
  2. package/esm2022/src/lib/collections/income-source/income-source.collection.mjs +2 -2
  3. package/esm2022/src/lib/collections/transaction/transaction.collection.mjs +3 -3
  4. package/esm2022/src/lib/collections/vehicle/vehicle-logbook.collection.mjs +2 -2
  5. package/esm2022/src/lib/db/Enums/tank-type.enum.mjs +6 -6
  6. package/esm2022/src/lib/db/Models/transaction/transaction-base.mjs +6 -6
  7. package/esm2022/src/lib/forms/bank/bank-account/bank-account-allocation.form.mjs +3 -3
  8. package/esm2022/src/lib/forms/bank/bank-account/bank-account-properties.form.mjs +2 -2
  9. package/esm2022/src/lib/forms/sole/sole-business-allocations.form.mjs +2 -2
  10. package/esm2022/src/lib/forms/transaction/allocation-rule.form.mjs +11 -11
  11. package/esm2022/src/lib/forms/transaction/transaction-base-filter.form.mjs +3 -3
  12. package/esm2022/src/lib/models/bank/allocation-group.mjs +2 -2
  13. package/esm2022/src/lib/models/report/my-tax/my-tax-deductions/my-tax-deductions.mjs +2 -2
  14. package/esm2022/src/lib/models/transaction/allocation-rule.mjs +4 -4
  15. package/esm2022/src/lib/models/user/user.mjs +5 -5
  16. package/esm2022/src/lib/models/vehicle/vehicle-claim.mjs +2 -2
  17. package/esm2022/src/lib/models/vehicle/vehicle-logbook.mjs +3 -3
  18. package/esm2022/src/lib/services/http/home-office/home-office-log.service.mjs +15 -7
  19. package/fesm2022/taxtank-core.mjs +55 -47
  20. package/fesm2022/taxtank-core.mjs.map +1 -1
  21. package/package.json +1 -1
  22. package/src/lib/db/Enums/tank-type.enum.d.ts +5 -5
  23. package/src/lib/services/http/home-office/home-office-log.service.d.ts +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.33.52",
3
+ "version": "0.33.54",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -1,8 +1,8 @@
1
1
  export declare enum TankTypeEnum {
2
- PROPERTY_TANK = 1,
3
- WORK_TANK = 2,
4
- OTHER_TANK = 3,
5
- SOLE_TANK = 4,
6
- HOLDING_TANK = 5,
2
+ PROPERTY = 1,
3
+ WORK = 2,
4
+ OTHER = 3,
5
+ SOLE = 4,
6
+ HOLDING = 5,
7
7
  PERSONAL = 6
8
8
  }
@@ -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
  }