sk-front-lib 0.17.7 → 0.17.8

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.
@@ -613,7 +613,7 @@ class SkProductService {
613
613
  return this._apiService.get(`/api/admin/products/${productId}/publish`).pipe(map(response => response.data));
614
614
  }
615
615
  deleteAdminPublish(productId, id) {
616
- return this._apiService.delete(`/api/admin/documents/${productId}/publish/${id}`).pipe(map(response => response.data));
616
+ return this._apiService.delete(`/api/admin/products/${productId}/publish/${id}`).pipe(map(response => response.data));
617
617
  }
618
618
  createAdminPublish(productId, data) {
619
619
  return this._apiService.post(`/api/admin/products/${productId}/publish`, data).pipe(map(response => response.data));