@veloceapps/api 3.0.9 → 3.0.10
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 +5 -4
- package/bundles/veloce-api.umd.js.map +1 -1
- package/esm2015/index.js +2 -1
- package/esm2015/lib/services/configuration-api.service.js +2 -2
- package/esm2015/lib/services/configuration-settings-api.service.js +4 -5
- package/esm2015/lib/services/ramp-api.service.js +1 -1
- package/esm2015/lib/services/ui-templates-api.service.js +1 -1
- package/esm2015/lib/types/dto/attribute-dto.types.js +21 -0
- package/esm2015/lib/types/dto/charge-group-item-dto.types.js +45 -0
- package/esm2015/lib/types/dto/charge-item-dto.types.js +74 -0
- package/esm2015/lib/types/dto/configuration-dto.types.js +17 -0
- package/esm2015/lib/types/dto/configuration-settings-dto.types.js +22 -0
- package/esm2015/lib/types/dto/domain-type-dto.types.js +27 -0
- package/esm2015/lib/types/dto/line-item-dto.types.js +95 -0
- package/esm2015/lib/types/dto/port-domain-dto.types.js +22 -0
- package/esm2015/lib/types/dto/price-adjustment-dto.types.js +15 -0
- package/esm2015/lib/types/dto/price-dto.types.js +25 -0
- package/esm2015/lib/types/dto/recommended-price-dto.types.js +23 -0
- package/esm2015/lib/types/dto/ui-template-dto.types.js +2 -0
- package/esm2015/lib/types/index.js +3 -0
- package/esm2015/lib/types/ramp-request.types.js +2 -0
- package/esm2015/lib/utils/ui-template.utils.js +1 -1
- package/fesm2015/veloce-api.js +5 -4
- package/fesm2015/veloce-api.js.map +1 -1
- package/index.d.ts +1 -1
- package/lib/services/ramp-api.service.d.ts +2 -1
- package/lib/types/{attribute-dto.types.d.ts → dto/attribute-dto.types.d.ts} +0 -0
- package/lib/types/{charge-group-item-dto.types.d.ts → dto/charge-group-item-dto.types.d.ts} +0 -0
- package/lib/types/{charge-item-dto.types.d.ts → dto/charge-item-dto.types.d.ts} +0 -0
- package/lib/types/{configuration-dto.types.d.ts → dto/configuration-dto.types.d.ts} +0 -0
- package/lib/types/{configuration-settings-dto.types.d.ts → dto/configuration-settings-dto.types.d.ts} +0 -0
- package/lib/types/{domain-type-dto.types.d.ts → dto/domain-type-dto.types.d.ts} +0 -0
- package/lib/types/{line-item-dto.types.d.ts → dto/line-item-dto.types.d.ts} +2 -1
- package/lib/types/{port-domain-dto.types.d.ts → dto/port-domain-dto.types.d.ts} +0 -0
- package/lib/types/{price-adjustment-dto.types.d.ts → dto/price-adjustment-dto.types.d.ts} +0 -0
- package/lib/types/{price-dto.types.d.ts → dto/price-dto.types.d.ts} +0 -0
- package/lib/types/{recommended-price-dto.types.d.ts → dto/recommended-price-dto.types.d.ts} +0 -0
- package/lib/types/{ui-template-dto.types.d.ts → dto/ui-template-dto.types.d.ts} +0 -0
- package/lib/types/index.d.ts +2 -0
- package/lib/types/ramp-request.types.d.ts +7 -0
- package/lib/utils/ui-template.utils.d.ts +1 -1
- package/package.json +1 -1
- package/esm2015/lib/types/attribute-dto.types.js +0 -21
- package/esm2015/lib/types/charge-group-item-dto.types.js +0 -45
- package/esm2015/lib/types/charge-item-dto.types.js +0 -74
- package/esm2015/lib/types/configuration-dto.types.js +0 -17
- package/esm2015/lib/types/configuration-settings-dto.types.js +0 -22
- package/esm2015/lib/types/domain-type-dto.types.js +0 -27
- package/esm2015/lib/types/line-item-dto.types.js +0 -93
- package/esm2015/lib/types/port-domain-dto.types.js +0 -22
- package/esm2015/lib/types/price-adjustment-dto.types.js +0 -15
- package/esm2015/lib/types/price-dto.types.js +0 -25
- package/esm2015/lib/types/recommended-price-dto.types.js +0 -23
- package/esm2015/lib/types/ui-template-dto.types.js +0 -2
@@ -603,7 +603,7 @@
|
|
603
603
|
}());
|
604
604
|
|
605
605
|
var LineItemDTO = /** @class */ (function () {
|
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) {
|
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, effectiveStartDate, startDate, endDate, planId, sellingFrequencyUnit, sellingFrequencyDuration, offeringId, offeringItemId, offeringInstanceId, rampInstanceId, enableRamp, configurable) {
|
607
607
|
this.id = id;
|
608
608
|
this.activated = activated;
|
609
609
|
this.attributes = attributes;
|
@@ -632,6 +632,7 @@
|
|
632
632
|
this.actionCode = actionCode;
|
633
633
|
this.serviceStartDate = serviceStartDate;
|
634
634
|
this.effectiveDate = effectiveDate;
|
635
|
+
this.effectiveStartDate = effectiveStartDate;
|
635
636
|
this.startDate = startDate;
|
636
637
|
this.endDate = endDate;
|
637
638
|
this.planId = planId;
|
@@ -674,6 +675,7 @@
|
|
674
675
|
actionCode: dto.actionCode,
|
675
676
|
serviceStartDate: dto.serviceStartDate,
|
676
677
|
effectiveDate: dto.effectiveDate,
|
678
|
+
effectiveStartDate: dto.effectiveStartDate,
|
677
679
|
startDate: dto.startDate,
|
678
680
|
endDate: dto.endDate,
|
679
681
|
planId: dto.planId,
|
@@ -862,10 +864,9 @@
|
|
862
864
|
});
|
863
865
|
};
|
864
866
|
ConfigurationSettingsApiService.prototype.clear = function (name) {
|
865
|
-
return this.httpService
|
866
|
-
.api({
|
867
|
+
return this.httpService.api({
|
867
868
|
method: 'get',
|
868
|
-
url: '/cache/evict/' + name
|
869
|
+
url: '/cache/evict/' + name,
|
869
870
|
});
|
870
871
|
};
|
871
872
|
return ConfigurationSettingsApiService;
|