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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.33.31",
3
+ "version": "0.33.33",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.0.0",
@@ -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/tax-return/tax-return-category-list.enum';
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/income-source/income-source';
6
+ import { IncomeSource } from '../../models';
7
7
  /**
8
8
  * collection for tax return category items
9
9
  */
@@ -26,3 +26,4 @@ export * from './client';
26
26
  export * from './user';
27
27
  export * from './document';
28
28
  export * from './holding';
29
+ export * from './sharesight/sharesight.service';
@@ -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
- * get list of all user's TaxTank transactions
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/user';
4
+ import { User } from '../../../models';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class YoutubeService {
7
7
  private http;