@indigina/wms-api 0.0.101 → 0.0.102
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/README.md +2 -2
- package/fesm2022/indigina-wms-api.mjs +7 -5
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +4 -4
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -2744,27 +2744,27 @@ declare class DispatchesService extends BaseService {
|
|
|
2744
2744
|
}): Observable<HttpEvent<DispatchSummaryView>>;
|
|
2745
2745
|
/**
|
|
2746
2746
|
* Getting dispatches
|
|
2747
|
-
* @param orderStatus
|
|
2748
2747
|
* @param $skip
|
|
2749
2748
|
* @param $top
|
|
2750
2749
|
* @param $orderby
|
|
2751
2750
|
* @param $filter
|
|
2752
2751
|
* @param $search
|
|
2753
2752
|
* @param tabName
|
|
2753
|
+
* @param orderStatuses List of dispatch statuses to filter by
|
|
2754
2754
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2755
2755
|
* @param reportProgress flag to report request and response progress.
|
|
2756
2756
|
*/
|
|
2757
|
-
|
|
2757
|
+
getDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, orderStatuses?: Array<OrderStatus>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2758
2758
|
httpHeaderAccept?: 'application/json';
|
|
2759
2759
|
context?: HttpContext;
|
|
2760
2760
|
transferCache?: boolean;
|
|
2761
2761
|
}): Observable<Dispatches>;
|
|
2762
|
-
|
|
2762
|
+
getDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, orderStatuses?: Array<OrderStatus>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2763
2763
|
httpHeaderAccept?: 'application/json';
|
|
2764
2764
|
context?: HttpContext;
|
|
2765
2765
|
transferCache?: boolean;
|
|
2766
2766
|
}): Observable<HttpResponse<Dispatches>>;
|
|
2767
|
-
|
|
2767
|
+
getDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, orderStatuses?: Array<OrderStatus>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2768
2768
|
httpHeaderAccept?: 'application/json';
|
|
2769
2769
|
context?: HttpContext;
|
|
2770
2770
|
transferCache?: boolean;
|