@veloceapps/api 12.0.0-1 → 12.0.0-10
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/v2/services/context-definition-admin-api.service.mjs +6 -1
- package/fesm2015/veloceapps-api-v2.mjs +5 -0
- package/fesm2015/veloceapps-api-v2.mjs.map +1 -1
- package/fesm2020/veloceapps-api-v2.mjs +5 -0
- package/fesm2020/veloceapps-api-v2.mjs.map +1 -1
- package/package.json +1 -1
- package/v2/services/context-definition-admin-api.service.d.ts +1 -0
@@ -453,6 +453,11 @@ class ContextDefinitionAdminApiService {
|
|
453
453
|
fetchContextMappingsDetails$(id) {
|
454
454
|
return this.baseHttpService.api({ url: `${this.serviceUrl}/${id}/mappings/details` });
|
455
455
|
}
|
456
|
+
fetchAcceptableContextMappings$(id, pricingProcedureId) {
|
457
|
+
return this.baseHttpService.api({
|
458
|
+
url: `${this.serviceUrl}/${id}/${pricingProcedureId}/mappings`,
|
459
|
+
});
|
460
|
+
}
|
456
461
|
fetchContextDefinitionStructure$(id) {
|
457
462
|
return this.baseHttpService
|
458
463
|
.api({
|