gunsmith-common 2.1.28 → 2.1.30

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.
@@ -826,6 +826,9 @@ class WorkOrderService {
826
826
  updateMillingItem(workOrderId, millingItemId, millingItem) {
827
827
  return this.http.put(`${this.url}/${workOrderId}/milling-items/${millingItemId}`, millingItem);
828
828
  }
829
+ updateMillingItemCollection(workOrderId, itemIds, millingItems) {
830
+ return this.http.put(`${this.url}/${workOrderId}/milling-items/collection/${itemIds.join(',')}`, millingItems);
831
+ }
829
832
  deleteMillingItem(workOrderId, millingItemId) {
830
833
  return this.http.delete(`${this.url}/${workOrderId}/milling-items/${millingItemId}`);
831
834
  }