@indigina/wms-api 0.0.162 → 0.0.163
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
|
@@ -3378,6 +3378,29 @@ declare class DispatchesService extends BaseService {
|
|
|
3378
3378
|
context?: HttpContext;
|
|
3379
3379
|
transferCache?: boolean;
|
|
3380
3380
|
}): Observable<HttpEvent<any>>;
|
|
3381
|
+
/**
|
|
3382
|
+
* Get merged carrier labels PDF for the given dispatches
|
|
3383
|
+
* @endpoint post /dispatches/carrier-labels
|
|
3384
|
+
* @param requestBody
|
|
3385
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
3386
|
+
* @param reportProgress flag to report request and response progress.
|
|
3387
|
+
* @param options additional options
|
|
3388
|
+
*/
|
|
3389
|
+
getCarrierLabels(requestBody: Array<string>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
3390
|
+
httpHeaderAccept?: 'application/pdf';
|
|
3391
|
+
context?: HttpContext;
|
|
3392
|
+
transferCache?: boolean;
|
|
3393
|
+
}): Observable<Blob>;
|
|
3394
|
+
getCarrierLabels(requestBody: Array<string>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
3395
|
+
httpHeaderAccept?: 'application/pdf';
|
|
3396
|
+
context?: HttpContext;
|
|
3397
|
+
transferCache?: boolean;
|
|
3398
|
+
}): Observable<HttpResponse<Blob>>;
|
|
3399
|
+
getCarrierLabels(requestBody: Array<string>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
3400
|
+
httpHeaderAccept?: 'application/pdf';
|
|
3401
|
+
context?: HttpContext;
|
|
3402
|
+
transferCache?: boolean;
|
|
3403
|
+
}): Observable<HttpEvent<Blob>>;
|
|
3381
3404
|
/**
|
|
3382
3405
|
* Getting dispatch by id
|
|
3383
3406
|
* @endpoint get /dispatches/{id}
|