taxtank-core 0.32.31 → 0.32.32

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.
@@ -7,7 +7,7 @@ export declare class PdfService {
7
7
  private http;
8
8
  protected environment: any;
9
9
  constructor(http: HttpClient, environment: any);
10
- fromHTML(html: string): import("rxjs").Observable<Blob>;
10
+ fromHTMLElements(elements: NodeListOf<HTMLElement>, landscape: boolean): import("rxjs").Observable<Blob>;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<PdfService, never>;
12
12
  static ɵprov: i0.ɵɵInjectableDeclaration<PdfService>;
13
13
  }
@@ -54,9 +54,11 @@ export declare abstract class RestService<BaseModel, Model extends AbstractModel
54
54
  */
55
55
  protected fetch(path?: string): Observable<CollectionModel>;
56
56
  get(path?: string): Observable<CollectionModel>;
57
+ getBy(path: string, values: any): Observable<CollectionModel>;
57
58
  getFirst(): Observable<Model>;
58
59
  hasInCache(id: number): boolean;
59
60
  getArray(): Observable<Model[]>;
61
+ getArrayBy(path: string, values: any): Observable<Model[]>;
60
62
  /**
61
63
  * Create a new Model instance in database
62
64
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "0.32.31",
3
+ "version": "0.32.32",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/compiler": "^16.2.12",