@veloceapps/api 7.0.2-6 → 7.0.2-8
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/procedures-api.service.mjs +8 -1
- package/fesm2015/veloceapps-api.mjs +7 -0
- package/fesm2015/veloceapps-api.mjs.map +1 -1
- package/fesm2020/veloceapps-api.mjs +7 -0
- package/fesm2020/veloceapps-api.mjs.map +1 -1
- package/lib/services/procedures-api.service.d.ts +1 -0
- package/package.json +1 -1
@@ -1394,6 +1394,13 @@ class ProceduresApiService {
|
|
1394
1394
|
body,
|
1395
1395
|
});
|
1396
1396
|
}
|
1397
|
+
catalogExecute$(body) {
|
1398
|
+
return this.baseHttpService.api({
|
1399
|
+
url: `${this.SERVICE_URL}/catalog/execute`,
|
1400
|
+
method: 'post',
|
1401
|
+
body,
|
1402
|
+
});
|
1403
|
+
}
|
1397
1404
|
/**
|
1398
1405
|
* Run active procedure against QuoteDraft
|
1399
1406
|
* @param body
|