@veloceapps/api 4.0.14 → 4.0.15
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.
- package/bundles/veloce-api.umd.js +3 -1
- package/bundles/veloce-api.umd.js.map +1 -1
- package/esm2015/lib/types/dto/charge-group-item-dto.types.js +4 -2
- package/fesm2015/veloce-api.js +3 -1
- package/fesm2015/veloce-api.js.map +1 -1
- package/lib/types/dto/charge-group-item-dto.types.d.ts +2 -1
- package/package.json +1 -1
@@ -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, priceAdjustmentEnabled, listPriceAdjustmentEnabled) {
|
684
|
+
function ChargeGroupItemDTO(chargeType, chargeMethod, properties, id, chargeTypeDisplayValue, frequencyUnit, frequencyDuration, basePrice, 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;
|
@@ -689,6 +689,7 @@
|
|
689
689
|
this.chargeTypeDisplayValue = chargeTypeDisplayValue;
|
690
690
|
this.frequencyUnit = frequencyUnit;
|
691
691
|
this.frequencyDuration = frequencyDuration;
|
692
|
+
this.basePrice = basePrice;
|
692
693
|
this.currency = currency;
|
693
694
|
this.sellingTerm = sellingTerm;
|
694
695
|
this.netPrice = netPrice;
|
@@ -710,6 +711,7 @@
|
|
710
711
|
chargeMethod: dto.chargeMethod,
|
711
712
|
frequencyUnit: dto.frequencyUnit,
|
712
713
|
frequencyDuration: dto.frequencyDuration,
|
714
|
+
basePrice: dto.basePrice,
|
713
715
|
currency: dto.currency,
|
714
716
|
sellingTerm: dto.sellingTerm,
|
715
717
|
netPrice: dto.netPrice,
|