@indigina/wms-api 0.0.119 → 0.0.121
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/package.json
CHANGED
|
@@ -4019,22 +4019,21 @@ declare class ReplenishmentAccessesService extends BaseService {
|
|
|
4019
4019
|
* @endpoint put /replenishmentAccesses/{id}
|
|
4020
4020
|
* @param id
|
|
4021
4021
|
* @param replenishmentAccess
|
|
4022
|
-
* @param propertiesToUpdate Array of property names to update
|
|
4023
4022
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
4024
4023
|
* @param reportProgress flag to report request and response progress.
|
|
4025
4024
|
* @param options additional options
|
|
4026
4025
|
*/
|
|
4027
|
-
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess,
|
|
4026
|
+
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'body', reportProgress?: boolean, options?: {
|
|
4028
4027
|
httpHeaderAccept?: 'application/json';
|
|
4029
4028
|
context?: HttpContext;
|
|
4030
4029
|
transferCache?: boolean;
|
|
4031
4030
|
}): Observable<ReplenishmentAccess>;
|
|
4032
|
-
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess,
|
|
4031
|
+
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'response', reportProgress?: boolean, options?: {
|
|
4033
4032
|
httpHeaderAccept?: 'application/json';
|
|
4034
4033
|
context?: HttpContext;
|
|
4035
4034
|
transferCache?: boolean;
|
|
4036
4035
|
}): Observable<HttpResponse<ReplenishmentAccess>>;
|
|
4037
|
-
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess,
|
|
4036
|
+
updateReplenishmentAccess(id: string, replenishmentAccess: ReplenishmentAccess, observe?: 'events', reportProgress?: boolean, options?: {
|
|
4038
4037
|
httpHeaderAccept?: 'application/json';
|
|
4039
4038
|
context?: HttpContext;
|
|
4040
4039
|
transferCache?: boolean;
|