taxtank-core 0.30.70 → 0.30.72
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/forms/sole/sole-invoice-item.form.mjs +3 -9
- package/esm2020/lib/forms/sole/sole-invoice.form.mjs +2 -2
- package/esm2020/lib/services/http/bank/basiq/basiq.service.mjs +4 -3
- package/fesm2015/taxtank-core.mjs +6 -11
- package/fesm2015/taxtank-core.mjs.map +1 -1
- package/fesm2020/taxtank-core.mjs +6 -11
- package/fesm2020/taxtank-core.mjs.map +1 -1
- package/lib/forms/sole/sole-invoice-item.form.d.ts +1 -1
- package/lib/services/http/bank/basiq/basiq.service.d.ts +3 -2
- package/package.json +1 -1
|
@@ -2,5 +2,5 @@ import { AbstractForm } from '../abstract.form';
|
|
|
2
2
|
import { SoleInvoiceItem } from '../../models';
|
|
3
3
|
export declare class SoleInvoiceItemForm extends AbstractForm<SoleInvoiceItem> {
|
|
4
4
|
static maxDescriptionLength: number;
|
|
5
|
-
constructor(item: SoleInvoiceItem,
|
|
5
|
+
constructor(item: SoleInvoiceItem, isExpense: boolean);
|
|
6
6
|
}
|
|
@@ -47,11 +47,12 @@ export declare class BasiqService extends RestService<BankAccountBase, BankAccou
|
|
|
47
47
|
listenEvents(): void;
|
|
48
48
|
/**
|
|
49
49
|
* Open basiq consent ui to allow user to log in to bank
|
|
50
|
+
* More info: https://api.basiq.io/docs/consent-ui
|
|
50
51
|
* @param token User's basiq token
|
|
51
52
|
* @param bankId External id of selected bank
|
|
52
|
-
* @param action 'connect' -
|
|
53
|
+
* @param action 'connect' - create a new connection when consent already signed, null - user have to sign consent first
|
|
53
54
|
*/
|
|
54
|
-
redirectToBasiqConsent(token: string, bankId: string, action?: null | 'connect'
|
|
55
|
+
redirectToBasiqConsent(token: string, bankId: string, action?: null | 'connect'): void;
|
|
55
56
|
/**
|
|
56
57
|
* Get Basiq job result
|
|
57
58
|
*/
|