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.
- package/esm2022/lib/forms/firm/client-movement.form.mjs +3 -3
- package/esm2022/lib/forms/firm/firm-invite.form.mjs +17 -0
- package/esm2022/lib/forms/firm/index.mjs +2 -1
- package/esm2022/lib/forms/register/register-client.form.mjs +8 -6
- package/esm2022/lib/forms/register/register-firm.form.mjs +3 -3
- package/esm2022/lib/interceptors/rewardful.interceptor.mjs +2 -1
- package/esm2022/lib/models/holding/holding.mjs +4 -5
- package/esm2022/lib/models/report/my-tax/my-tax-income-statements/my-tax-income-statements.mjs +2 -1
- package/esm2022/lib/services/account-setup/account-setup.service.mjs +2 -2
- package/esm2022/lib/services/http/firm/client-invite/client-invite-messages.enum.mjs +2 -2
- package/esm2022/lib/services/http/firm/client-movement/client-movement-messages.enum.mjs +8 -0
- package/esm2022/lib/services/http/firm/client-movement/index.mjs +2 -1
- package/fesm2022/taxtank-core.mjs +37 -15
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/lib/forms/firm/firm-invite.form.d.ts +15 -0
- package/lib/forms/firm/index.d.ts +1 -0
- package/lib/forms/register/register-client.form.d.ts +1 -1
- package/lib/models/holding/holding.d.ts +0 -1
- package/lib/services/http/firm/client-invite/client-invite-messages.enum.d.ts +1 -1
- package/lib/services/http/firm/client-movement/client-movement-messages.enum.d.ts +6 -0
- package/lib/services/http/firm/client-movement/index.d.ts +1 -0
- package/package.json +1 -1
@@ -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 {};
|
@@ -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
|
-
|
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"
|