sk-front-lib 0.15.2 → 0.15.3

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.
@@ -475,6 +475,9 @@ class SkProductService {
475
475
  createAdminProduct(data) {
476
476
  return this._apiService.post(`/api/admin/products`, data).pipe(map(response => new SkProduct(response.data)));
477
477
  }
478
+ copyAdminProduct(id) {
479
+ return this._apiService.post(`/api/admin/products/${id}/copy`, {}).pipe(map(response => new SkProduct(response.data)));
480
+ }
478
481
  updateProduct(id, data) {
479
482
  return this._apiService.put(`/api/public/products/${id}`, data).pipe(map(response => new SkProduct(response.data)));
480
483
  }