sk-front-lib 0.14.7-beta.1 → 0.14.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.
@@ -652,9 +652,6 @@
652
652
  SkPromotionService.prototype.getAdminPromotion = function (id) {
653
653
  return this._apiService.get("/api/admin/promotions/" + id).pipe(operators.map(function (response) { return new model.SkPromotion(response.data); }));
654
654
  };
655
- SkPromotionService.prototype.getAdminPromotionGift = function (id) {
656
- return this._apiService.get("/api/admin/promotions/" + id + "/gift").pipe(operators.map(function (response) { return response.data; }));
657
- };
658
655
  SkPromotionService.prototype.getAdminPromotionTarget = function (id) {
659
656
  return this._apiService.get("/api/admin/promotions/" + id + "/target").pipe(operators.map(function (response) { return response.data; }));
660
657
  };