taxtank-core 0.32.90 → 0.32.92

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,15 @@
1
+ import { FormControl, FormGroup } from '@angular/forms';
2
+ import { AbstractForm, ControlsInterface } from '../abstract.form';
3
+ import { Address, ClientInvite } from '../../models';
4
+ interface ClientInvitePutControlsInterface extends ControlsInterface {
5
+ address: FormControl<Address>;
6
+ registrationInvite: FormGroup<{
7
+ firstName: FormControl<string>;
8
+ lastName: FormControl<string>;
9
+ email: FormControl<string>;
10
+ }>;
11
+ }
12
+ export declare class FirmInviteForm extends AbstractForm<ClientInvite, ClientInvitePutControlsInterface> {
13
+ constructor(invite?: ClientInvite);
14
+ }
15
+ export {};
@@ -5,3 +5,4 @@ export * from './client-movement.form';
5
5
  export * from './employee-details.form';
6
6
  export * from './client-invite.form';
7
7
  export * from './client-invite-put.form';
8
+ export * from './firm-invite.form';
@@ -1,6 +1,6 @@
1
1
  import { AbstractForm } from '../abstract.form';
2
2
  import { User } from '../../models';
3
3
  export declare class RegisterClientForm extends AbstractForm<User> {
4
- constructor(referenceCode?: string);
4
+ constructor(user?: User);
5
5
  submit(data?: object): User;
6
6
  }
@@ -28,7 +28,6 @@ export declare class Holding extends AbstractModel {
28
28
  get purchaseValue(): number;
29
29
  /**
30
30
  * Get current market price
31
- * @TODO vik/alex no need to pass holdingType, should come from backend
32
31
  */
33
32
  get marketValue(): number;
34
33
  /**
@@ -6,7 +6,7 @@ export declare enum ClientInviteMessages {
6
6
  SEND_INVITE_MESSAGES_TITLE = "TaxTank support is here to help",
7
7
  SEND_INVITE_MESSAGES_DESCRIPTION = "Before inviting TaxTank support be sure to check out our help articles and message our support team.",
8
8
  TT_ACCOUNTANT_INVITED = "Accountant invitation has been sent successfully",
9
- TT_ACCOUNTANT_INVETED_TOOLTIP = "Need an accountant? TaxTank Accountants delivers virtual accounting service exclusive to TaxTank subscribers. Experience a fast, seamless, and cost-effective lodgement service that rewards your TaxTank efforts throughout the year. Our team of experienced accountants brings their expertise in tax and TaxTank to the virtual realm. It all starts with a 15-minute consultation that sets the stage for personalised service. With us, you\u2019ll receive the best of both worlds at tax time.",
9
+ TT_ACCOUNTANT_INVITED_TOOLTIP = "Need an accountant? TaxTank has partnered with ITP to deliver next level accounting services at the touch of a button! Experience a fast, seamless and cost-effective review and lodgment service that rewards your TaxTank efforts throughout the year. The ITP team brings their experience in tax and TaxTank to the virtual realm. It all starts with a 15-minute consultation that sets the stage for personalised service without the hassle. Step 1 - Invite ITP Accountants. Step 2 - ITP allocate the right accountant. Step 3 - Lock in a time for your 15-minute virtual consult that sets the stage for personalised service. Step 4 - Experience the difference :)",
10
10
  CONFIRM_REJECT = "Are you sure you want to reject this invitation?",
11
11
  REJECTED = "Invitation rejected",
12
12
  ACCEPTED = "Client invitation accepted"
@@ -0,0 +1,6 @@
1
+ export declare enum ClientMovementMessagesEnum {
2
+ CREATED = "Client accepted",
3
+ UPDATED = "Client transferred",
4
+ DELETED = "Client deleted",
5
+ CONFIRM_DELETE = "Are you sure you want to delete this client?"
6
+ }
@@ -1 +1,2 @@
1
1
  export * from './client-movement.service';
2
+ export * from './client-movement-messages.enum';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.32.90",
3
+ "version": "0.32.92",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^16.2.12",