@experteam-mx/ngx-services 20.9.8 → 20.9.9
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/index.d.ts
CHANGED
|
@@ -3605,6 +3605,13 @@ declare class ApiCompaniesService {
|
|
|
3605
3605
|
* @return {Observable<{}>} An observable containing the response data after the employee is deleted.
|
|
3606
3606
|
*/
|
|
3607
3607
|
deleteEmployee(id: number): Observable<{}>;
|
|
3608
|
+
/**
|
|
3609
|
+
* Exports the filtered employees list as a PDF file.
|
|
3610
|
+
*
|
|
3611
|
+
* @param {QueryParams} params - Query parameters used to filter the employees included in the export.
|
|
3612
|
+
* @return {Observable<HttpResponse<ArrayBuffer>>} An observable that emits the HTTP response containing the PDF as an ArrayBuffer.
|
|
3613
|
+
*/
|
|
3614
|
+
getEmployeesExportPdf(params: QueryParams): Observable<HttpResponse<ArrayBuffer>>;
|
|
3608
3615
|
/**
|
|
3609
3616
|
* Retrieves the list of employees for a specified location based on provided query parameters.
|
|
3610
3617
|
*
|