@veloceapps/api 3.1.14 → 3.1.16
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 +8 -2
- package/bundles/veloce-api.umd.js.map +1 -1
- package/esm2015/lib/services/delta-api.service.js +8 -3
- package/esm2015/lib/services/price-api.service.js +2 -1
- package/fesm2015/veloce-api.js +8 -2
- package/fesm2015/veloce-api.js.map +1 -1
- package/lib/services/delta-api.service.d.ts +2 -2
- package/package.json +1 -1
@@ -1209,9 +1209,14 @@
|
|
1209
1209
|
this.httpService = httpService;
|
1210
1210
|
this.SERVICE_URL = '/delta';
|
1211
1211
|
}
|
1212
|
-
DeltaApiService.prototype.calculate$ = function (request
|
1212
|
+
DeltaApiService.prototype.calculate$ = function (request) {
|
1213
1213
|
return this.httpService
|
1214
|
-
.api(
|
1214
|
+
.api({
|
1215
|
+
method: 'post',
|
1216
|
+
url: this.SERVICE_URL + "/calculate",
|
1217
|
+
body: request,
|
1218
|
+
skipErrorHandler: true,
|
1219
|
+
})
|
1215
1220
|
.pipe(rxjs.map(function (dtos) { return dtos.map(function (dto) { return LineItemDTO.fromDTO(dto); }); }));
|
1216
1221
|
};
|
1217
1222
|
return DeltaApiService;
|
@@ -1700,6 +1705,7 @@
|
|
1700
1705
|
method: 'post',
|
1701
1706
|
url: this.SERVICE_URL + "/calculate",
|
1702
1707
|
body: request,
|
1708
|
+
skipErrorHandler: true,
|
1703
1709
|
});
|
1704
1710
|
};
|
1705
1711
|
PriceApiService.prototype.getPriceLists = function () {
|