taxtank-core 0.33.31 → 0.33.33
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/collections/bank-account.collection.mjs +2 -2
- package/esm2022/src/lib/collections/tax-summary/report-item.collection.mjs +1 -1
- package/esm2022/src/lib/collections/transaction/transaction.collection.mjs +2 -2
- package/esm2022/src/lib/services/http/index.mjs +2 -1
- package/esm2022/src/lib/services/http/property/property.service.mjs +1 -1
- package/esm2022/src/lib/services/http/sharesight/sharesight.service.mjs +24 -0
- package/esm2022/src/lib/services/http/transaction/transaction.service.mjs +10 -3
- package/esm2022/src/lib/services/http/youtube/youtube.service.mjs +1 -1
- package/fesm2022/taxtank-core.mjs +32 -5
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/collections/tax-summary/report-item.collection.d.ts +2 -2
- package/src/lib/services/http/index.d.ts +1 -0
- package/src/lib/services/http/sharesight/sharesight.service.d.ts +11 -0
- package/src/lib/services/http/transaction/transaction.service.d.ts +5 -1
- package/src/lib/services/http/youtube/youtube.service.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { Collection } from '../collection';
|
|
2
2
|
import { ReportItem } from '../../models/tax-summary/report-item';
|
|
3
|
-
import { TaxReturnCategoryListEnum } from '../../db/Enums
|
|
3
|
+
import { TaxReturnCategoryListEnum } from '../../db/Enums';
|
|
4
4
|
import { ReportItemDetails } from '../../models/tax-summary/report-item-details';
|
|
5
5
|
import { TaxSummarySectionEnum } from '../../db/Enums/tax-summary-section.enum';
|
|
6
|
-
import { IncomeSource } from '../../models
|
|
6
|
+
import { IncomeSource } from '../../models';
|
|
7
7
|
/**
|
|
8
8
|
* collection for tax return category items
|
|
9
9
|
*/
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class SharesightService {
|
|
5
|
+
private http;
|
|
6
|
+
protected environment: any;
|
|
7
|
+
constructor(http: HttpClient, environment: any);
|
|
8
|
+
connect(code: string): Observable<object>;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SharesightService, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SharesightService>;
|
|
11
|
+
}
|
|
@@ -23,7 +23,11 @@ export declare class TransactionService extends RestService<TransactionBase, Tra
|
|
|
23
23
|
*/
|
|
24
24
|
listenEvents(): void;
|
|
25
25
|
/**
|
|
26
|
-
*
|
|
26
|
+
* current year transactions + previous year sole invoice transactions (needed whe invoice part paid in previous year)
|
|
27
|
+
*/
|
|
28
|
+
getAll(): Observable<Transaction[]>;
|
|
29
|
+
/**
|
|
30
|
+
* current year transactions
|
|
27
31
|
*/
|
|
28
32
|
get(): Observable<Transaction[]>;
|
|
29
33
|
/**
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from '@angular/common/http';
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { YoutubeVideoInterface } from './youtube-video.interface';
|
|
4
|
-
import { User } from '../../../models
|
|
4
|
+
import { User } from '../../../models';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class YoutubeService {
|
|
7
7
|
private http;
|