@veloceapps/sdk 6.0.0-86 → 6.0.0-88

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.
@@ -1239,7 +1239,7 @@
1239
1239
  };
1240
1240
  ConfigurationService.prototype.createRequest = function (lineItem) {
1241
1241
  var _a;
1242
- return {
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;