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.
- package/esm2022/lib/db/Enums/user-event-type-type.enum.mjs +2 -1
- package/esm2022/lib/services/http/firm/employee/employee.service.mjs +2 -1
- package/esm2022/lib/services/http/firm/employee-invite/employee-invite.service.mjs +1 -2
- package/esm2022/lib/services/http/rest/rest-old.service.mjs +2 -1
- package/esm2022/lib/services/http/rest/rest.service.mjs +3 -1
- package/esm2022/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.mjs +10 -1
- package/esm2022/lib/services/http/transaction/transaction.service.mjs +10 -1
- package/fesm2022/taxtank-core.mjs +21 -1
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/lib/db/Enums/user-event-type-type.enum.d.ts +1 -0
- package/lib/services/http/firm/employee/employee.service.d.ts +2 -1
- package/lib/services/http/firm/employee-invite/employee-invite.service.d.ts +1 -2
- package/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.d.ts +1 -0
- package/lib/services/http/transaction/transaction.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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 {
|
|
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
|
/**
|
package/lib/services/http/transaction/transaction-allocation/transaction-allocation.service.d.ts
CHANGED
|
@@ -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
|
}
|