taxtank-core 0.33.67 → 0.33.69
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/src/lib/models/property/property-equity-chart-data.mjs +4 -2
- package/esm2022/src/lib/services/http/firm/client-invite/client-invite.service.mjs +20 -4
- package/esm2022/src/lib/services/http/firm/client-movement/client-movement.service.mjs +18 -4
- package/esm2022/src/lib/services/http/rest/rest.service.mjs +6 -8
- package/esm2022/src/lib/services/http/transaction/transaction.service.mjs +11 -10
- package/fesm2022/taxtank-core.mjs +51 -23
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/services/http/firm/client-invite/client-invite.service.d.ts +1 -1
- package/src/lib/services/http/firm/client-movement/client-movement.service.d.ts +1 -1
- package/src/lib/services/http/transaction/transaction.service.d.ts +1 -0
package/package.json
CHANGED
@@ -10,7 +10,6 @@ export declare class ClientInviteService extends RestService<ClientInviteBase, C
|
|
10
10
|
protected endpointUri: string;
|
11
11
|
collectionClass: typeof ClientInviteCollection;
|
12
12
|
modelClass: typeof ClientInvite;
|
13
|
-
mercureTopic: string;
|
14
13
|
constructor(environment: any);
|
15
14
|
listenEvents(): void;
|
16
15
|
/**
|
@@ -38,6 +37,7 @@ export declare class ClientInviteService extends RestService<ClientInviteBase, C
|
|
38
37
|
* Send invitation from client to firm
|
39
38
|
*/
|
40
39
|
inviteFirmByUser(invite: ClientInvite): Observable<ClientInvite>;
|
40
|
+
private listenNotifications;
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClientInviteService, never>;
|
42
42
|
static ɵprov: i0.ɵɵInjectableDeclaration<ClientInviteService>;
|
43
43
|
}
|
@@ -13,7 +13,6 @@ export declare class ClientMovementService extends RestService<ClientMovementBas
|
|
13
13
|
collectionClass: typeof ClientMovementCollection;
|
14
14
|
modelClass: typeof ClientMovement;
|
15
15
|
disabledMethods: RestMethod[];
|
16
|
-
mercureTopic: string;
|
17
16
|
constructor(environment: any);
|
18
17
|
listenEvents(): void;
|
19
18
|
getActive(): Observable<ClientMovementCollection>;
|
@@ -33,6 +32,7 @@ export declare class ClientMovementService extends RestService<ClientMovementBas
|
|
33
32
|
* Reject current firm
|
34
33
|
*/
|
35
34
|
close(clientMovement: ClientMovement): Observable<void>;
|
35
|
+
private listenNotifications;
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClientMovementService, never>;
|
37
37
|
static ɵprov: i0.ɵɵInjectableDeclaration<ClientMovementService>;
|
38
38
|
}
|
@@ -42,6 +42,7 @@ export declare class TransactionService extends RestService<TransactionBase, Tra
|
|
42
42
|
*/
|
43
43
|
getPropertyHoldingCosts(propertyId: number): Observable<Transaction[]>;
|
44
44
|
getWithoutTaxFreeProperty(): Observable<Transaction[]>;
|
45
|
+
private groupByParent;
|
45
46
|
/**
|
46
47
|
* get list of taxable transactions with tank type 'Work'
|
47
48
|
*/
|