@lancom/shared 0.0.179 → 0.0.180

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.
@@ -94,6 +94,9 @@ export default {
94
94
  orderSubOrders(body) {
95
95
  return _post('admin/sub-orders/ordered', body);
96
96
  },
97
+ generateOrderPickPDF(orderId) {
98
+ return _post(`admin/order/${orderId}/pick-pdf`);
99
+ },
97
100
  saveOrderSubsequentInvoice(order, invoice) {
98
101
  return invoice._id ? _put(`admin/shop/${order.shop}/order/${order._id}/invoice/${invoice._id}`, invoice) : _post(`admin/shop/${order.shop}/order/${order._id}/invoice`, invoice);
99
102
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.179",
3
+ "version": "0.0.180",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {