@veloceapps/api 7.0.0-4 → 7.0.0-5

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.
@@ -220,6 +220,13 @@
220
220
  body: product,
221
221
  });
222
222
  };
223
+ this.updateProduct$ = function (product, catalogId, categoryId) {
224
+ return _this.baseHttpService.api({
225
+ method: 'put',
226
+ url: _this.serviceUrl + "/" + catalogId + "/categories/" + categoryId + "/products/" + product.id,
227
+ body: product,
228
+ });
229
+ };
223
230
  this.removeProduct$ = function (_a) {
224
231
  var catalogId = _a.catalogId, categoryId = _a.categoryId, data = _a.data;
225
232
  return _this.baseHttpService.api({