@experteam-mx/ngx-services 20.1.4 → 20.1.6
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
|
*
|
|
@@ -7086,7 +7092,7 @@ declare class ApiShipmentsService {
|
|
|
7086
7092
|
* @return {Observable<ShipmentSignaturePageOut>} An observable containing base64 file generated
|
|
7087
7093
|
* @param id - the shipment id.
|
|
7088
7094
|
*/
|
|
7089
|
-
|
|
7095
|
+
getShipmentSignaturePage(id: number): Observable<ShipmentSignaturePageOut>;
|
|
7090
7096
|
/**
|
|
7091
7097
|
* Cancels a specific shipment by providing its ID and a reason for cancellation.
|
|
7092
7098
|
* Sends a PATCH request to update the shipment's cancellation status with the specified reason.
|