@indigina/wms-api 0.0.100 → 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 +13 -50
- package/fesm2022/indigina-wms-api.mjs.map +1 -1
- package/index.d.ts +9 -34
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1655,52 +1655,27 @@ declare class DeliveriesService extends BaseService {
|
|
|
1655
1655
|
transferCache?: boolean;
|
|
1656
1656
|
}): Observable<HttpEvent<any>>;
|
|
1657
1657
|
/**
|
|
1658
|
-
* Getting
|
|
1658
|
+
* Getting deliveries
|
|
1659
1659
|
* @param $skip
|
|
1660
1660
|
* @param $top
|
|
1661
1661
|
* @param $orderby
|
|
1662
1662
|
* @param $filter
|
|
1663
1663
|
* @param $search
|
|
1664
|
+
* @param deliveryStatuses List of delivery statuses to filter by
|
|
1664
1665
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1665
1666
|
* @param reportProgress flag to report request and response progress.
|
|
1666
1667
|
*/
|
|
1667
|
-
getDeliveries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1668
|
+
getDeliveries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, deliveryStatuses?: Array<OrderStatus>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1668
1669
|
httpHeaderAccept?: 'application/json';
|
|
1669
1670
|
context?: HttpContext;
|
|
1670
1671
|
transferCache?: boolean;
|
|
1671
1672
|
}): Observable<Deliveries>;
|
|
1672
|
-
getDeliveries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1673
|
+
getDeliveries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, deliveryStatuses?: Array<OrderStatus>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1673
1674
|
httpHeaderAccept?: 'application/json';
|
|
1674
1675
|
context?: HttpContext;
|
|
1675
1676
|
transferCache?: boolean;
|
|
1676
1677
|
}): Observable<HttpResponse<Deliveries>>;
|
|
1677
|
-
getDeliveries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1678
|
-
httpHeaderAccept?: 'application/json';
|
|
1679
|
-
context?: HttpContext;
|
|
1680
|
-
transferCache?: boolean;
|
|
1681
|
-
}): Observable<HttpEvent<Deliveries>>;
|
|
1682
|
-
/**
|
|
1683
|
-
* Getting deliveries
|
|
1684
|
-
* @param deliveryStatus
|
|
1685
|
-
* @param $skip
|
|
1686
|
-
* @param $top
|
|
1687
|
-
* @param $orderby
|
|
1688
|
-
* @param $filter
|
|
1689
|
-
* @param $search
|
|
1690
|
-
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
1691
|
-
* @param reportProgress flag to report request and response progress.
|
|
1692
|
-
*/
|
|
1693
|
-
getDeliveriesByOrderStatus(deliveryStatus: OrderStatus, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'body', reportProgress?: boolean, options?: {
|
|
1694
|
-
httpHeaderAccept?: 'application/json';
|
|
1695
|
-
context?: HttpContext;
|
|
1696
|
-
transferCache?: boolean;
|
|
1697
|
-
}): Observable<Deliveries>;
|
|
1698
|
-
getDeliveriesByOrderStatus(deliveryStatus: OrderStatus, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'response', reportProgress?: boolean, options?: {
|
|
1699
|
-
httpHeaderAccept?: 'application/json';
|
|
1700
|
-
context?: HttpContext;
|
|
1701
|
-
transferCache?: boolean;
|
|
1702
|
-
}): Observable<HttpResponse<Deliveries>>;
|
|
1703
|
-
getDeliveriesByOrderStatus(deliveryStatus: OrderStatus, $skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1678
|
+
getDeliveries($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, deliveryStatuses?: Array<OrderStatus>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
1704
1679
|
httpHeaderAccept?: 'application/json';
|
|
1705
1680
|
context?: HttpContext;
|
|
1706
1681
|
transferCache?: boolean;
|
|
@@ -2769,27 +2744,27 @@ declare class DispatchesService extends BaseService {
|
|
|
2769
2744
|
}): Observable<HttpEvent<DispatchSummaryView>>;
|
|
2770
2745
|
/**
|
|
2771
2746
|
* Getting dispatches
|
|
2772
|
-
* @param orderStatus
|
|
2773
2747
|
* @param $skip
|
|
2774
2748
|
* @param $top
|
|
2775
2749
|
* @param $orderby
|
|
2776
2750
|
* @param $filter
|
|
2777
2751
|
* @param $search
|
|
2778
2752
|
* @param tabName
|
|
2753
|
+
* @param orderStatuses List of dispatch statuses to filter by
|
|
2779
2754
|
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
|
|
2780
2755
|
* @param reportProgress flag to report request and response progress.
|
|
2781
2756
|
*/
|
|
2782
|
-
|
|
2757
|
+
getDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, orderStatuses?: Array<OrderStatus>, observe?: 'body', reportProgress?: boolean, options?: {
|
|
2783
2758
|
httpHeaderAccept?: 'application/json';
|
|
2784
2759
|
context?: HttpContext;
|
|
2785
2760
|
transferCache?: boolean;
|
|
2786
2761
|
}): Observable<Dispatches>;
|
|
2787
|
-
|
|
2762
|
+
getDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, orderStatuses?: Array<OrderStatus>, observe?: 'response', reportProgress?: boolean, options?: {
|
|
2788
2763
|
httpHeaderAccept?: 'application/json';
|
|
2789
2764
|
context?: HttpContext;
|
|
2790
2765
|
transferCache?: boolean;
|
|
2791
2766
|
}): Observable<HttpResponse<Dispatches>>;
|
|
2792
|
-
|
|
2767
|
+
getDispatches($skip?: number, $top?: number, $orderby?: string, $filter?: string, $search?: string, tabName?: string, orderStatuses?: Array<OrderStatus>, observe?: 'events', reportProgress?: boolean, options?: {
|
|
2793
2768
|
httpHeaderAccept?: 'application/json';
|
|
2794
2769
|
context?: HttpContext;
|
|
2795
2770
|
transferCache?: boolean;
|