@veloceapps/api 5.0.5 → 5.0.7

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.
@@ -909,7 +909,7 @@
909
909
  }());
910
910
 
911
911
  var LineItemDTO = /** @class */ (function () {
912
- function LineItemDTO(id, activated, attributes, attributeDomains, cfgStatus, chargeGroupItems, chargeItems, domainComputations, lineItems, messages, name, optionalCharges, pending, portDomains, properties, qty, totalPrices, type, integrationId, productId, port, parentId, assetId, openOrderLineItemId, productName, rootId, actionCode, serviceStartDate, effectiveDate, effectiveStartDate, startDate, endDate, priceListId, planId, sellingFrequencyUnit, sellingFrequencyDuration, minimalTerm, proratedFrequencyEnabled, offeringId, offeringItemId, offeringInstanceId, rampInstanceId, enableRamp, configurable, requiresApprovals) {
912
+ function LineItemDTO(id, activated, attributes, attributeDomains, cfgStatus, chargeGroupItems, chargeItems, domainComputations, lineItems, messages, name, optionalCharges, pending, portDomains, properties, qty, totalPrices, type, integrationId, productId, port, parentId, assetId, openOrderLineItemId, productName, rootId, actionCode, serviceStartDate, effectiveDate, effectiveStartDate, startDate, endDate, priceListId, planId, sellingFrequencyUnit, sellingFrequencyDuration, minimalTerm, proratedFrequencyEnabled, offeringId, offeringItemId, offeringInstanceId, rampInstanceId, enableRamp, configurable, requiresApprovals, metrics, totalMetrics) {
913
913
  this.id = id;
914
914
  this.activated = activated;
915
915
  this.attributes = attributes;
@@ -955,6 +955,8 @@
955
955
  this.enableRamp = enableRamp;
956
956
  this.configurable = configurable;
957
957
  this.requiresApprovals = requiresApprovals;
958
+ this.metrics = metrics;
959
+ this.totalMetrics = totalMetrics;
958
960
  }
959
961
  LineItemDTO.fromDTO = function (dto) {
960
962
  return {
@@ -1003,6 +1005,8 @@
1003
1005
  enableRamp: dto.enableRamp,
1004
1006
  configurable: dto.configurable,
1005
1007
  requiresApprovals: dto.requiresApprovals,
1008
+ metrics: dto.metrics,
1009
+ totalMetrics: dto.totalMetrics,
1006
1010
  };
1007
1011
  };
1008
1012
  return LineItemDTO;