sk-front-lib 0.17.1 → 0.17.2

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.
@@ -597,6 +597,9 @@ class SkProductService {
597
597
  deleteAdminSeries(id) {
598
598
  return this._apiService.delete(`/api/admin/product-series/${id}`).pipe(map(response => response.data));
599
599
  }
600
+ getAdminPublish(productId) {
601
+ return this._apiService.get(`/api/admin/${productId}/publish`).pipe(map(response => response.data));
602
+ }
600
603
  createAdminPublish(productId, data) {
601
604
  return this._apiService.post(`/api/admin/${productId}/publish`, data).pipe(map(response => response.data));
602
605
  }