@indigina/wms-api 0.0.190 → 0.0.191
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
|
@@ -5580,6 +5580,28 @@ declare class DispatchesService extends BaseService {
|
|
|
5580
5580
|
context?: HttpContext;
|
|
5581
5581
|
transferCache?: boolean;
|
|
5582
5582
|
}): Observable<HttpEvent<PrintDispatchView>>;
|
|
5583
|
+
/**
|
|
5584
|
+
* Get the clients with a wave configuration in the current DC
|
|
5585
|
+
* @endpoint get /dispatches/star-dispatches/clients
|
|
5586
|
+
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
5587
|
+
* @param reportProgress flag to report request and response progress.
|
|
5588
|
+
* @param options additional options
|
|
5589
|
+
*/
|
|
5590
|
+
getStarDispatchClients(observe?: 'body', reportProgress?: boolean, options?: {
|
|
5591
|
+
httpHeaderAccept?: 'application/json';
|
|
5592
|
+
context?: HttpContext;
|
|
5593
|
+
transferCache?: boolean;
|
|
5594
|
+
}): Observable<Array<string>>;
|
|
5595
|
+
getStarDispatchClients(observe?: 'response', reportProgress?: boolean, options?: {
|
|
5596
|
+
httpHeaderAccept?: 'application/json';
|
|
5597
|
+
context?: HttpContext;
|
|
5598
|
+
transferCache?: boolean;
|
|
5599
|
+
}): Observable<HttpResponse<Array<string>>>;
|
|
5600
|
+
getStarDispatchClients(observe?: 'events', reportProgress?: boolean, options?: {
|
|
5601
|
+
httpHeaderAccept?: 'application/json';
|
|
5602
|
+
context?: HttpContext;
|
|
5603
|
+
transferCache?: boolean;
|
|
5604
|
+
}): Observable<HttpEvent<Array<string>>>;
|
|
5583
5605
|
/**
|
|
5584
5606
|
* Getting the To Be Picked star dispatches
|
|
5585
5607
|
* @endpoint get /dispatches/star-dispatches
|