taxtank-core 0.30.119 → 0.30.121
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/esm2020/lib/services/http/bank/basiq/basiq.service.mjs +5 -6
- package/esm2020/lib/services/http/firm/client-invite/client-invite-messages.enum.mjs +4 -2
- package/fesm2015/taxtank-core.mjs +7 -6
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +7 -6
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/lib/services/http/firm/client-invite/client-invite-messages.enum.d.ts +3 -1
- package/package.json +1 -1
|
@@ -10383,12 +10383,11 @@ class BasiqService extends RestService$1 {
|
|
|
10383
10383
|
* Get Basiq job result
|
|
10384
10384
|
*/
|
|
10385
10385
|
retrieveJob(jobId) {
|
|
10386
|
+
// if we get a jobId then we know that user accepted basiq consent
|
|
10387
|
+
// @TODO Nikita (TT-3308): if user close the tab before redirect then consent exist in basiq but not in database
|
|
10388
|
+
this.updateBasiqConsentAgreement();
|
|
10386
10389
|
return this.http.get(`${BasiqService.basiqApiUrl}/jobs/${jobId}`)
|
|
10387
|
-
.pipe(map((response) =>
|
|
10388
|
-
// if we get a jobId then we know that user accepted basiq consent
|
|
10389
|
-
this.updateBasiqConsentAgreement();
|
|
10390
|
-
return plainToClass(BasiqJobResponse, response);
|
|
10391
|
-
}));
|
|
10390
|
+
.pipe(map((response) => plainToClass(BasiqJobResponse, response)));
|
|
10392
10391
|
}
|
|
10393
10392
|
/**
|
|
10394
10393
|
* Recoursive method, watch basiq job retrieve accounts status
|
|
@@ -13760,7 +13759,9 @@ var ClientInviteMessages;
|
|
|
13760
13759
|
ClientInviteMessages["TT_ADVISOR_INVITED"] = "You have Invited TaxTank Support successfully";
|
|
13761
13760
|
ClientInviteMessages["REVOKE_TT_ADVISOR_CONFIRM"] = "Are you sure you want to revoke access?";
|
|
13762
13761
|
ClientInviteMessages["TT_ADVISOR_REVOKED"] = "Access revoked";
|
|
13763
|
-
ClientInviteMessages["
|
|
13762
|
+
ClientInviteMessages["TT_INVITE_ACCEPT"] = "You successfully accepted the invitation";
|
|
13763
|
+
ClientInviteMessages["TT_ACCOUNTANT_INVITED"] = "Accountant invitation has been sent successfully";
|
|
13764
|
+
ClientInviteMessages["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.";
|
|
13764
13765
|
})(ClientInviteMessages || (ClientInviteMessages = {}));
|
|
13765
13766
|
|
|
13766
13767
|
class ClientMovementService extends RestService {
|