taxtank-core 0.32.59 → 0.32.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,6 +26,7 @@ export declare enum UserEventTypeTypeEnum {
26
26
  BASIQ_FIRST_IMPORT_COMPLETE = 2031,
27
27
  BASIQ_AUTHORIZATION_FAIL = 2032,
28
28
  TRANSACTION_ALLOCATE_REMINDER = 2033,
29
+ AUTO_ALLOCATION = 2035,
29
30
  REGISTRATION_INVITE = 2040,
30
31
  REGISTRATION_INVITE_ACCEPTED = 2041,
31
32
  CLIENT_EMAIL_CONFIRMED = 2050,
@@ -1,4 +1,4 @@
1
- import { RestService } from '../../rest';
1
+ import { RestMethod, RestService } from '../../rest';
2
2
  import { User as UserBase } from '../../../../db/Models/user/user';
3
3
  import { Observable } from 'rxjs';
4
4
  import { User } from '../../../../models';
@@ -10,6 +10,7 @@ export declare class EmployeeService extends RestService<UserBase, User, Collect
10
10
  protected endpointUri: string;
11
11
  modelClass: typeof User;
12
12
  collectionClass: typeof Collection<User>;
13
+ disabledMethods: RestMethod[];
13
14
  messages: typeof EmployeeMessagesEnum;
14
15
  roles: UserRolesEnum[];
15
16
  activateEmployee(employee: User): Observable<User>;
@@ -1,14 +1,13 @@
1
1
  import { EmployeeInvite as EmployeeInviteBase } from '../../../../db/Models/firm/employee-invite';
2
2
  import { Observable } from 'rxjs';
3
3
  import { EmployeeInvite } from '../../../../models/employee/employee-invite';
4
- import { RestMethod, RestService } from '../../rest';
4
+ import { RestService } from '../../rest';
5
5
  import { UserRolesEnum } from '../../../../db/Enums/user-roles.enum';
6
6
  import { Collection } from '../../../../collections';
7
7
  import * as i0 from "@angular/core";
8
8
  export declare class EmployeeInviteService extends RestService<EmployeeInviteBase, EmployeeInvite, Collection<EmployeeInvite>> {
9
9
  protected endpointUri: string;
10
10
  collectionClass: typeof Collection<EmployeeInvite>;
11
- disabledMethods: RestMethod[];
12
11
  modelClass: typeof EmployeeInvite;
13
12
  roles: UserRolesEnum[];
14
13
  /**
@@ -36,6 +36,7 @@ export declare class TransactionAllocationService extends RestService<Transactio
36
36
  * Reset cache on transaction deleted
37
37
  */
38
38
  private onTransactionDeleted;
39
+ private listenNotifications;
39
40
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionAllocationService, never>;
40
41
  static ɵprov: i0.ɵɵInjectableDeclaration<TransactionAllocationService>;
41
42
  }
@@ -90,6 +90,7 @@ export declare class TransactionService extends RestService<TransactionBase, Tra
90
90
  */
91
91
  private listenPropertyForecastUpdate;
92
92
  private replaceInCache;
93
+ private listenNotifications;
93
94
  static ɵfac: i0.ɵɵFactoryDeclaration<TransactionService, never>;
94
95
  static ɵprov: i0.ɵɵInjectableDeclaration<TransactionService>;
95
96
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.32.59",
3
+ "version": "0.32.62",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^16.2.12",