@experteam-mx/ngx-services 20.9.0 → 20.9.1-dev3.0
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
|
@@ -3385,6 +3385,13 @@ declare class ApiCompaniesService {
|
|
|
3385
3385
|
* @return {Observable<{}>} An observable containing the response data after the employee is deleted.
|
|
3386
3386
|
*/
|
|
3387
3387
|
deleteEmployee(id: number): Observable<{}>;
|
|
3388
|
+
/**
|
|
3389
|
+
* Exports the filtered employees list as a PDF file.
|
|
3390
|
+
*
|
|
3391
|
+
* @param {QueryParams} params - Query parameters used to filter the employees included in the export.
|
|
3392
|
+
* @return {Observable<HttpResponse<ArrayBuffer>>} An observable that emits the HTTP response containing the PDF as an ArrayBuffer.
|
|
3393
|
+
*/
|
|
3394
|
+
getEmployeesExportPdf(params: QueryParams): Observable<HttpResponse<ArrayBuffer>>;
|
|
3388
3395
|
/**
|
|
3389
3396
|
* Retrieves the list of employees for a specified location based on provided query parameters.
|
|
3390
3397
|
*
|