taxtank-core 0.1.4 → 0.1.5

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.
@@ -4,4 +4,8 @@ import { Bank } from './bank';
4
4
  export declare class BankConnection extends BankConnectionBase {
5
5
  basiqJob: BasiqJob;
6
6
  bank: Bank;
7
+ /**
8
+ * Check if status of connection is inactive (invalid)
9
+ */
10
+ isInactive(): boolean;
7
11
  }
@@ -1,8 +1,6 @@
1
1
  import { Bank as BankBase } from '../../db/Models/bank';
2
2
  import { Photoable } from '../../interfaces/photoable';
3
3
  export declare class Bank extends BankBase implements Photoable {
4
- private environment;
5
- constructor(environment: any);
6
4
  getInitials(): string;
7
5
  getPhoto(): string;
8
6
  }
@@ -39,9 +39,9 @@ export declare class BankAccountService extends BaseRestService<BankAccountBase,
39
39
  */
40
40
  updateCurrentBalance(bankAccount: BankAccount): Observable<BankAccount>;
41
41
  /**
42
- * Listen to EventDispatcherService event related to updated Property Owner Updated
42
+ * Listen to EventDispatcherService events
43
43
  */
44
- private listenToPropertyOwnerUpdated;
44
+ private listenToEventDispatcherChanges;
45
45
  static ɵfac: i0.ɵɵFactoryDeclaration<BankAccountService, never>;
46
46
  static ɵprov: i0.ɵɵInjectableDeclaration<BankAccountService>;
47
47
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.3 || ~13.0.0",