taxtank-core 0.33.68 → 0.33.70
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/esm2022/src/lib/services/http/bank/bank-account/bank-account.service.mjs +18 -2
- package/esm2022/src/lib/services/http/bank/bank-connection/bank-connection.service.mjs +17 -5
- package/esm2022/src/lib/services/http/firm/client-invite/client-invite.service.mjs +20 -4
- package/esm2022/src/lib/services/http/rest/rest.service.mjs +6 -8
- package/esm2022/src/lib/services/xlsx/xlsx.service.mjs +18 -10
- package/fesm2022/taxtank-core.mjs +122 -75
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/services/http/bank/bank-account/bank-account.service.d.ts +1 -0
- package/src/lib/services/http/bank/bank-connection/bank-connection.service.d.ts +1 -1
- package/src/lib/services/http/firm/client-invite/client-invite.service.d.ts +1 -1
- package/src/lib/services/xlsx/xlsx.service.d.ts +7 -0
package/package.json
CHANGED
@@ -41,6 +41,7 @@ export declare class BankAccountService extends RestService<BankAccountBase, Ban
|
|
41
41
|
* manualConnection moved to basiq, old manual bankAccounts closed to let user add automated bankAccounts (because there is no reliable way to merge)
|
42
42
|
*/
|
43
43
|
private listenConnections;
|
44
|
+
private listenNotifications;
|
44
45
|
static ɵfac: i0.ɵɵFactoryDeclaration<BankAccountService, never>;
|
45
46
|
static ɵprov: i0.ɵɵInjectableDeclaration<BankAccountService>;
|
46
47
|
}
|
@@ -15,7 +15,6 @@ export declare class BankConnectionService extends RestService<BankConnectionBas
|
|
15
15
|
collectionClass: typeof Collection;
|
16
16
|
endpointUri: string;
|
17
17
|
disabledMethods: RestMethod[];
|
18
|
-
mercureTopic: string;
|
19
18
|
constructor(environment: any);
|
20
19
|
listenEvents(): void;
|
21
20
|
/**
|
@@ -25,6 +24,7 @@ export declare class BankConnectionService extends RestService<BankConnectionBas
|
|
25
24
|
post(bankConnection: BankConnection): Observable<BankConnection>;
|
26
25
|
activate(bankConnection: BankConnection): Observable<BankConnection>;
|
27
26
|
deactivate(bankConnection: BankConnection): Observable<BankConnection>;
|
27
|
+
private listenNotifications;
|
28
28
|
static ɵfac: i0.ɵɵFactoryDeclaration<BankConnectionService, never>;
|
29
29
|
static ɵprov: i0.ɵɵInjectableDeclaration<BankConnectionService>;
|
30
30
|
}
|
@@ -10,7 +10,6 @@ export declare class ClientInviteService extends RestService<ClientInviteBase, C
|
|
10
10
|
protected endpointUri: string;
|
11
11
|
collectionClass: typeof ClientInviteCollection;
|
12
12
|
modelClass: typeof ClientInvite;
|
13
|
-
mercureTopic: string;
|
14
13
|
constructor(environment: any);
|
15
14
|
listenEvents(): void;
|
16
15
|
/**
|
@@ -38,6 +37,7 @@ export declare class ClientInviteService extends RestService<ClientInviteBase, C
|
|
38
37
|
* Send invitation from client to firm
|
39
38
|
*/
|
40
39
|
inviteFirmByUser(invite: ClientInvite): Observable<ClientInvite>;
|
40
|
+
private listenNotifications;
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClientInviteService, never>;
|
42
42
|
static ɵprov: i0.ɵɵInjectableDeclaration<ClientInviteService>;
|
43
43
|
}
|
@@ -6,6 +6,13 @@ export declare class XlsxService {
|
|
6
6
|
*/
|
7
7
|
exportTables(tables: NodeListOf<HTMLTableElement>, title: string, fileName: string): void;
|
8
8
|
private generateFromTables;
|
9
|
+
htmlToXlsCell(cell: HTMLTableCellElement): string | number;
|
10
|
+
/**
|
11
|
+
* function which reconverts values from customCurrencyPipe
|
12
|
+
* @param cellValue - string with $ and possibly comma. $123,123.03
|
13
|
+
* @returns value without $ and comma. like 123123.03
|
14
|
+
*/
|
15
|
+
currencyToNumber(cellValue: string): number;
|
9
16
|
getFileName: (name: string) => {
|
10
17
|
sheetName: string;
|
11
18
|
fileName: string;
|