@veloceapps/api 2.0.25 → 3.0.0
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 +2 -6
- package/bundles/veloce-api.umd.js.map +1 -1
- package/esm2015/lib/types/charge-item-dto.types.js +2 -4
- package/esm2015/lib/types/line-item-dto.types.js +2 -4
- package/fesm2015/veloce-api.js +2 -6
- package/fesm2015/veloce-api.js.map +1 -1
- package/lib/types/charge-item-dto.types.d.ts +2 -3
- package/lib/types/line-item-dto.types.d.ts +2 -3
- package/package.json +2 -2
@@ -430,7 +430,7 @@
|
|
430
430
|
}());
|
431
431
|
|
432
432
|
var ChargeItemDTO = /** @class */ (function () {
|
433
|
-
function ChargeItemDTO(id, price, unitPrice, baseListPrice, baseListUnitPrice, listPrice, listUnitPrice, netPrice, netUnitPrice, chargeId, chargeType, chargeMethod, priceItemId, startDate, priceWaterfalls, quantity, properties, chargeTypeDisplayValue, arr, frequencyUnit, frequencyDuration, endDate, sellingTerm, currency, unitCost, cost, minUnitPrice, minPrice, enablePriceAdjustment, enableListPriceAdjustment, listPriceAdjustment, priceAdjustment
|
433
|
+
function ChargeItemDTO(id, price, unitPrice, baseListPrice, baseListUnitPrice, listPrice, listUnitPrice, netPrice, netUnitPrice, chargeId, chargeType, chargeMethod, priceItemId, startDate, priceWaterfalls, quantity, properties, chargeTypeDisplayValue, arr, frequencyUnit, frequencyDuration, endDate, sellingTerm, currency, unitCost, cost, minUnitPrice, minPrice, enablePriceAdjustment, enableListPriceAdjustment, listPriceAdjustment, priceAdjustment) {
|
434
434
|
this.id = id;
|
435
435
|
this.price = price;
|
436
436
|
this.unitPrice = unitPrice;
|
@@ -463,7 +463,6 @@
|
|
463
463
|
this.enableListPriceAdjustment = enableListPriceAdjustment;
|
464
464
|
this.listPriceAdjustment = listPriceAdjustment;
|
465
465
|
this.priceAdjustment = priceAdjustment;
|
466
|
-
this.requiresApprovals = requiresApprovals;
|
467
466
|
}
|
468
467
|
ChargeItemDTO.fromDTO = function (dto) {
|
469
468
|
return {
|
@@ -499,7 +498,6 @@
|
|
499
498
|
enableListPriceAdjustment: dto.enableListPriceAdjustment,
|
500
499
|
listPriceAdjustment: dto.listPriceAdjustment && PriceAdjustmentDTO.fromDTO(dto.listPriceAdjustment),
|
501
500
|
priceAdjustment: dto.priceAdjustment && PriceAdjustmentDTO.fromDTO(dto.priceAdjustment),
|
502
|
-
requiresApprovals: dto.requiresApprovals,
|
503
501
|
};
|
504
502
|
};
|
505
503
|
return ChargeItemDTO;
|
@@ -605,7 +603,7 @@
|
|
605
603
|
}());
|
606
604
|
|
607
605
|
var LineItemDTO = /** @class */ (function () {
|
608
|
-
function LineItemDTO(id, activated, attributes, attributeDomains, cfgStatus, chargeGroupItems, chargeItems, domainComputations, lineItems, messages, name, optionalCharges, pending, portDomains, properties, qty, totalPrices, type, productId, port, parentId, assetId, openOrderLineItemId, productName, rootId, actionCode, serviceStartDate, effectiveDate, startDate, endDate, planId, sellingFrequencyUnit, sellingFrequencyDuration, offeringId, offeringItemId, offeringInstanceId, rampInstanceId, enableRamp, configurable
|
606
|
+
function LineItemDTO(id, activated, attributes, attributeDomains, cfgStatus, chargeGroupItems, chargeItems, domainComputations, lineItems, messages, name, optionalCharges, pending, portDomains, properties, qty, totalPrices, type, productId, port, parentId, assetId, openOrderLineItemId, productName, rootId, actionCode, serviceStartDate, effectiveDate, startDate, endDate, planId, sellingFrequencyUnit, sellingFrequencyDuration, offeringId, offeringItemId, offeringInstanceId, rampInstanceId, enableRamp, configurable) {
|
609
607
|
this.id = id;
|
610
608
|
this.activated = activated;
|
611
609
|
this.attributes = attributes;
|
@@ -645,7 +643,6 @@
|
|
645
643
|
this.rampInstanceId = rampInstanceId;
|
646
644
|
this.enableRamp = enableRamp;
|
647
645
|
this.configurable = configurable;
|
648
|
-
this.requiresApprovals = requiresApprovals;
|
649
646
|
}
|
650
647
|
LineItemDTO.fromDTO = function (dto) {
|
651
648
|
return {
|
@@ -688,7 +685,6 @@
|
|
688
685
|
rampInstanceId: dto.rampInstanceId,
|
689
686
|
enableRamp: dto.enableRamp,
|
690
687
|
configurable: dto.configurable,
|
691
|
-
requiresApprovals: dto.requiresApprovals,
|
692
688
|
};
|
693
689
|
};
|
694
690
|
return LineItemDTO;
|