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