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.
- package/bundles/taxtank-core.umd.js +24 -17
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/models/bank/bank-connection.js +8 -1
- package/esm2015/lib/models/bank/bank.js +4 -14
- package/esm2015/lib/services/bank/bank-account.service.js +9 -5
- package/esm2015/lib/tt-core.module.js +2 -1
- package/fesm2015/taxtank-core.js +20 -16
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/bank/bank-connection.d.ts +4 -0
- package/lib/models/bank/bank.d.ts +0 -2
- package/lib/services/bank/bank-account.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -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
|
|
42
|
+
* Listen to EventDispatcherService events
|
|
43
43
|
*/
|
|
44
|
-
private
|
|
44
|
+
private listenToEventDispatcherChanges;
|
|
45
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<BankAccountService, never>;
|
|
46
46
|
static ɵprov: i0.ɵɵInjectableDeclaration<BankAccountService>;
|
|
47
47
|
}
|