@experteam-mx/ngx-services 20.1.4 → 20.1.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.
package/index.d.ts
CHANGED
|
@@ -2446,6 +2446,12 @@ declare class ApiCompaniesService {
|
|
|
2446
2446
|
* @returns An Observable that emits the updated employee data
|
|
2447
2447
|
*/
|
|
2448
2448
|
patchEmployee(id: number, body: Partial<EmployeeIn>): Observable<EmployeeOut>;
|
|
2449
|
+
/**
|
|
2450
|
+
* Enable an employee with the specified ID.
|
|
2451
|
+
* @param id - The unique identifier of the employee to update
|
|
2452
|
+
* @returns An Observable that emits the enabled employee data
|
|
2453
|
+
*/
|
|
2454
|
+
patchEmployeeEnable(id: number): Observable<EmployeeOut>;
|
|
2449
2455
|
/**
|
|
2450
2456
|
* Deletes an employee based on the provided ID.
|
|
2451
2457
|
*
|