@lancom/shared 0.0.198 → 0.0.199

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.
@@ -100,6 +100,9 @@ export default {
100
100
  generateOrderPickPDF(orderId) {
101
101
  return _post(`admin/order/${orderId}/pick-pdf`);
102
102
  },
103
+ generateOrdersPickPDF(orders) {
104
+ return _post(`admin/orders/pick-pdf`, { orders });
105
+ },
103
106
  saveOrderSubsequentInvoice(order, invoice) {
104
107
  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);
105
108
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.198",
3
+ "version": "0.0.199",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {