@lancom/shared 0.0.466 → 0.0.468

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.
@@ -155,6 +155,9 @@ export default {
155
155
  markShipmentAsDispatched(order, shipment) {
156
156
  return _post(`admin/shop/${order.shop?._id || order.shop}/order/${order._id}/shipment/${shipment._id || shipment.guid}/dispatched`, shipment);
157
157
  },
158
+ markLabelsPrinted(order) {
159
+ return _post(`admin/order/${order._id}/mark-labels-printed`);
160
+ },
158
161
  markShipmentAsHasException(order, shipment) {
159
162
  return _post(`admin/shop/${order.shop?._id || order.shop}/order/${order._id}/shipment/${shipment._id || shipment.guid}/has-exception`, shipment);
160
163
  },
@@ -7,6 +7,7 @@
7
7
  </div>
8
8
  <product-list
9
9
  :products="products"
10
+ :visible-quick-view="false"
10
11
  :lazy="false" />
11
12
  </div>
12
13
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lancom/shared",
3
- "version": "0.0.466",
3
+ "version": "0.0.468",
4
4
  "description": "lancom common scripts",
5
5
  "author": "e.tokovenko <e.tokovenko@gmail.com>",
6
6
  "repository": {