@veloceapps/api 4.0.13 → 4.0.14

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.
@@ -681,7 +681,7 @@
681
681
  }());
682
682
 
683
683
  var ChargeGroupItemDTO = /** @class */ (function () {
684
- function ChargeGroupItemDTO(chargeType, chargeMethod, properties, id, chargeTypeDisplayValue, frequencyUnit, frequencyDuration, currency, sellingTerm, netPrice, listPrice, netUnitPrice, listUnitPrice, cost, priceAdjustment, priceWaterfalls, enablePriceAdjustment) {
684
+ function ChargeGroupItemDTO(chargeType, chargeMethod, properties, id, chargeTypeDisplayValue, frequencyUnit, frequencyDuration, currency, sellingTerm, netPrice, listPrice, netUnitPrice, listUnitPrice, cost, priceAdjustment, priceWaterfalls, priceAdjustmentEnabled, listPriceAdjustmentEnabled) {
685
685
  this.chargeType = chargeType;
686
686
  this.chargeMethod = chargeMethod;
687
687
  this.properties = properties;
@@ -698,7 +698,8 @@
698
698
  this.cost = cost;
699
699
  this.priceAdjustment = priceAdjustment;
700
700
  this.priceWaterfalls = priceWaterfalls;
701
- this.enablePriceAdjustment = enablePriceAdjustment;
701
+ this.priceAdjustmentEnabled = priceAdjustmentEnabled;
702
+ this.listPriceAdjustmentEnabled = listPriceAdjustmentEnabled;
702
703
  }
703
704
  ChargeGroupItemDTO.fromDTO = function (dto) {
704
705
  var _a;
@@ -718,7 +719,8 @@
718
719
  cost: dto.cost,
719
720
  priceAdjustment: dto.priceAdjustment && PriceAdjustmentDTO.fromDTO(dto.priceAdjustment),
720
721
  priceWaterfalls: (_a = dto.priceWaterfalls) === null || _a === void 0 ? void 0 : _a.map(PriceAdjustmentDTO.fromDTO),
721
- enablePriceAdjustment: dto.enablePriceAdjustment,
722
+ priceAdjustmentEnabled: dto.priceAdjustmentEnabled,
723
+ listPriceAdjustmentEnabled: dto.listPriceAdjustmentEnabled,
722
724
  properties: dto.properties,
723
725
  };
724
726
  };