taxtank-core 0.30.107 → 0.30.109

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.
@@ -0,0 +1,5 @@
1
+ export declare enum ClientInviteMessages {
2
+ TT_ADVISOR_INVITED = "You have Invited TaxTank Support successfully",
3
+ REVOKE_TT_ADVISOR_CONFIRM = "Are you sure you want to revoke access?",
4
+ TT_ADVISOR_REVOKED = "Access revoked"
5
+ }
@@ -12,6 +12,7 @@ export declare class ClientInviteService extends RestService<ClientInviteBase, C
12
12
  * Get clients from the different endpoints depending on whether the current user is a client or an employee
13
13
  */
14
14
  get(fromEmployee?: boolean): Observable<ClientInvite[]>;
15
+ getTTAdvisor(): Observable<ClientInvite>;
15
16
  /**
16
17
  * Import employees for firm from CSV file
17
18
  * @param file
@@ -1 +1,2 @@
1
1
  export * from './client-invite.service';
2
+ export * from './client-invite-messages.enum';
@@ -16,6 +16,7 @@ export declare class ClientMovementService extends RestService<ClientMovementBas
16
16
  */
17
17
  getAll(): Observable<ClientMovementCollection>;
18
18
  getActive(): Observable<ClientMovementCollection>;
19
+ getTTAdvisor(): Observable<ClientMovement>;
19
20
  getActiveByFirmType(type: FirmTypeEnum): Observable<ClientMovementCollection>;
20
21
  update(movement: ClientMovement): Observable<ClientMovement>;
21
22
  updateBatch(clientMovements: ClientMovement[]): Observable<ClientMovement[]>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.30.107",
3
+ "version": "0.30.109",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^15.1.5",