@indigina/wms-api 0.0.125 → 0.0.126
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
|
@@ -5949,6 +5949,29 @@ interface WavePickingAccesses {
|
|
|
5949
5949
|
declare class WavePickingAccessService extends BaseService {
|
|
5950
5950
|
protected httpClient: HttpClient;
|
|
5951
5951
|
constructor(httpClient: HttpClient, basePath: string | string[], configuration?: Configuration);
|
|
5952
|
+
/**
|
|
5953
|
+
* Delete a wave picking access record
|
|
5954
|
+
* @endpoint delete /wavePickingAccesses/{id}
|
|
5955
|
+
* @param id
|
|
5956
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5957
|
+
* @param reportProgress flag to report request and response progress.
|
|
5958
|
+
* @param options additional options
|
|
5959
|
+
*/
|
|
5960
|
+
deleteWavePickingAccess(id: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
5961
|
+
httpHeaderAccept?: 'application/json';
|
|
5962
|
+
context?: HttpContext;
|
|
5963
|
+
transferCache?: boolean;
|
|
5964
|
+
}): Observable<any>;
|
|
5965
|
+
deleteWavePickingAccess(id: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
5966
|
+
httpHeaderAccept?: 'application/json';
|
|
5967
|
+
context?: HttpContext;
|
|
5968
|
+
transferCache?: boolean;
|
|
5969
|
+
}): Observable<HttpResponse<any>>;
|
|
5970
|
+
deleteWavePickingAccess(id: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
5971
|
+
httpHeaderAccept?: 'application/json';
|
|
5972
|
+
context?: HttpContext;
|
|
5973
|
+
transferCache?: boolean;
|
|
5974
|
+
}): Observable<HttpEvent<any>>;
|
|
5952
5975
|
/**
|
|
5953
5976
|
* Getting wave picking access list
|
|
5954
5977
|
* @endpoint get /wavePickingAccesses
|