@veloceapps/api 3.1.27 → 3.1.29
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/recommended-price-dto.types.js +4 -2
- package/fesm2015/veloce-api.js +3 -1
- package/fesm2015/veloce-api.js.map +1 -1
- package/lib/types/dto/recommended-price-dto.types.d.ts +3 -1
- package/package.json +1 -1
@@ -804,7 +804,7 @@
|
|
804
804
|
}());
|
805
805
|
|
806
806
|
var RecommendedPriceDTO = /** @class */ (function () {
|
807
|
-
function RecommendedPriceDTO(netPrice, listPrice, chargeType, chargeMethod, explanation, frequencyDuration, frequencyUnit) {
|
807
|
+
function RecommendedPriceDTO(netPrice, listPrice, chargeType, chargeMethod, explanation, frequencyDuration, frequencyUnit, properties) {
|
808
808
|
this.netPrice = netPrice;
|
809
809
|
this.listPrice = listPrice;
|
810
810
|
this.chargeType = chargeType;
|
@@ -812,6 +812,7 @@
|
|
812
812
|
this.explanation = explanation;
|
813
813
|
this.frequencyDuration = frequencyDuration;
|
814
814
|
this.frequencyUnit = frequencyUnit;
|
815
|
+
this.properties = properties;
|
815
816
|
}
|
816
817
|
RecommendedPriceDTO.fromDTO = function (dto) {
|
817
818
|
return {
|
@@ -822,6 +823,7 @@
|
|
822
823
|
frequencyUnit: dto.frequencyUnit,
|
823
824
|
frequencyDuration: dto.frequencyDuration,
|
824
825
|
explanation: dto.explanation,
|
826
|
+
properties: dto.properties,
|
825
827
|
};
|
826
828
|
};
|
827
829
|
return RecommendedPriceDTO;
|