@veloceapps/sdk 6.0.0-86 → 6.0.0-88
Sign up to get free protection for your applications and to get access to all the features.
- package/bundles/veloceapps-sdk-core.umd.js +3 -1
- package/bundles/veloceapps-sdk-core.umd.js.map +1 -1
- package/esm2015/core/modules/configuration/services/configuration.service.js +5 -3
- package/fesm2015/veloceapps-sdk-core.js +4 -2
- package/fesm2015/veloceapps-sdk-core.js.map +1 -1
- package/package.json +1 -1
@@ -1239,7 +1239,7 @@
|
|
1239
1239
|
};
|
1240
1240
|
ConfigurationService.prototype.createRequest = function (lineItem) {
|
1241
1241
|
var _a;
|
1242
|
-
|
1242
|
+
var request = {
|
1243
1243
|
lineItem: lineItem,
|
1244
1244
|
mode: this.mode,
|
1245
1245
|
step: !this.lineItem.value ? exports.RuntimeStep.START : exports.RuntimeStep.UPDATE,
|
@@ -1248,6 +1248,8 @@
|
|
1248
1248
|
lineItems: ((_a = this.quoteDraftService.quoteDraft) === null || _a === void 0 ? void 0 : _a.currentState) || [],
|
1249
1249
|
asset: this.getAsset(),
|
1250
1250
|
};
|
1251
|
+
request = core.ConfigurationTranslatorUtils.lightenConfigurationRequest(request);
|
1252
|
+
return request;
|
1251
1253
|
};
|
1252
1254
|
ConfigurationService.prototype.showInactiveProductsConfirmation = function () {
|
1253
1255
|
var _this = this;
|