@veloceapps/api 10.0.0-26 → 10.0.0-28
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 +6 -2
- package/fesm2015/veloceapps-api.mjs +5 -1
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +5 -1
- package/fesm2020/veloceapps-api.mjs.map +1 -1
- package/lib/services/rlm-quote-api.service.d.ts +1 -1
- package/package.json +1 -1
@@ -3489,10 +3489,14 @@ class RlmQuoteApiService {
|
|
3489
3489
|
this.SERVICE_URL = '/quotes/rlm';
|
3490
3490
|
}
|
3491
3491
|
getQuote(mappingType, objectId, contextMappingId, options) {
|
3492
|
+
const params = { mappingType };
|
3493
|
+
if (contextMappingId) {
|
3494
|
+
params['contextMappingId'] = contextMappingId;
|
3495
|
+
}
|
3492
3496
|
return this.httpService.api({
|
3493
3497
|
method: 'get',
|
3494
3498
|
url: `${this.SERVICE_URL}/${objectId}`,
|
3495
|
-
params
|
3499
|
+
params,
|
3496
3500
|
...options,
|
3497
3501
|
});
|
3498
3502
|
}
|