@veloceapps/api 3.1.19 → 3.1.21
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/line-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/line-item-dto.types.d.ts +2 -1
- package/package.json +1 -1
@@ -903,7 +903,7 @@
|
|
903
903
|
}());
|
904
904
|
|
905
905
|
var LineItemDTO = /** @class */ (function () {
|
906
|
-
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, planId, sellingFrequencyUnit, sellingFrequencyDuration, offeringId, offeringItemId, offeringInstanceId, rampInstanceId, enableRamp, configurable, requiresApprovals) {
|
906
|
+
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, offeringId, offeringItemId, offeringInstanceId, rampInstanceId, enableRamp, configurable, requiresApprovals) {
|
907
907
|
this.id = id;
|
908
908
|
this.activated = activated;
|
909
909
|
this.attributes = attributes;
|
@@ -936,6 +936,7 @@
|
|
936
936
|
this.effectiveStartDate = effectiveStartDate;
|
937
937
|
this.startDate = startDate;
|
938
938
|
this.endDate = endDate;
|
939
|
+
this.priceListId = priceListId;
|
939
940
|
this.planId = planId;
|
940
941
|
this.sellingFrequencyUnit = sellingFrequencyUnit;
|
941
942
|
this.sellingFrequencyDuration = sellingFrequencyDuration;
|
@@ -981,6 +982,7 @@
|
|
981
982
|
effectiveStartDate: dto.effectiveStartDate,
|
982
983
|
startDate: dto.startDate,
|
983
984
|
endDate: dto.endDate,
|
985
|
+
priceListId: dto.priceListId,
|
984
986
|
planId: dto.planId,
|
985
987
|
sellingFrequencyUnit: dto.sellingFrequencyUnit,
|
986
988
|
sellingFrequencyDuration: dto.sellingFrequencyDuration,
|