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.
@@ -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, isIncome: boolean);
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' - for the 1st connection, 'update' - for reconnect, null - for new not 1st connection
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' | 'update'): void;
55
+ redirectToBasiqConsent(token: string, bankId: string, action?: null | 'connect'): void;
55
56
  /**
56
57
  * Get Basiq job result
57
58
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.30.70",
3
+ "version": "0.30.72",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^15.1.5",