@veloceapps/api 10.0.0-18 → 10.0.0-19
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/esm2020/lib/services/rlm-quote-api.service.mjs +3 -3
- package/fesm2015/veloceapps-api.mjs +2 -2
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +2 -2
- package/fesm2020/veloceapps-api.mjs.map +1 -1
- package/lib/services/rlm-quote-api.service.d.ts +1 -1
- package/package.json +1 -1
@@ -3476,11 +3476,11 @@ class RlmQuoteApiService {
|
|
3476
3476
|
this.httpService = httpService;
|
3477
3477
|
this.SERVICE_URL = '/quotes/rlm';
|
3478
3478
|
}
|
3479
|
-
getQuote(objectId, contextMappingId, options) {
|
3479
|
+
getQuote(mappingType, objectId, contextMappingId, options) {
|
3480
3480
|
return this.httpService.api({
|
3481
3481
|
method: 'get',
|
3482
3482
|
url: `${this.SERVICE_URL}/${objectId}`,
|
3483
|
-
params: { contextMappingId },
|
3483
|
+
params: { mappingType, contextMappingId },
|
3484
3484
|
...options,
|
3485
3485
|
});
|
3486
3486
|
}
|