@veloceapps/sdk 5.0.15-1 → 5.0.15-3
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/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
@@ -1227,7 +1227,7 @@
|
|
1227
1227
|
}), operators.finalize(function () { return _this.reset(); }));
|
1228
1228
|
};
|
1229
1229
|
ConfigurationService.prototype.createRequest = function (lineItem) {
|
1230
|
-
|
1230
|
+
var request = {
|
1231
1231
|
lineItem: lineItem,
|
1232
1232
|
mode: this.mode,
|
1233
1233
|
step: !this.lineItem.value ? exports.RuntimeStep.START : exports.RuntimeStep.UPDATE,
|
@@ -1236,6 +1236,8 @@
|
|
1236
1236
|
lineItems: this.states.currentState || [],
|
1237
1237
|
asset: this.states.asset,
|
1238
1238
|
};
|
1239
|
+
request = core.ConfigurationTranslatorUtils.lightenConfigurationRequest(request);
|
1240
|
+
return request;
|
1239
1241
|
};
|
1240
1242
|
ConfigurationService.prototype.showInactiveProductsConfirmation = function () {
|
1241
1243
|
var _this = this;
|