@experteam-mx/ngx-services 20.9.4 → 20.9.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.
@@ -4676,6 +4676,16 @@ class ApiReportsService {
4676
4676
  return this.http.get(`${this.url}/billing-details`, { params })
4677
4677
  .pipe(map(({ data }) => data));
4678
4678
  }
4679
+ /**
4680
+ * Retrieves the taxes report based on the provided query parameters.
4681
+ *
4682
+ * @param params - The query parameters used to filter the taxes report.
4683
+ * @returns An observable that emits the taxes report data.
4684
+ */
4685
+ getTaxesReport(params) {
4686
+ return this.http.get(`${this.url}/tax-details`, { params })
4687
+ .pipe(map(({ data }) => data));
4688
+ }
4679
4689
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ApiReportsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4680
4690
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.27", ngImport: i0, type: ApiReportsService, providedIn: 'root' });
4681
4691
  }