@veloceapps/api 10.0.0-19 → 10.0.0-20
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
@@ -1898,6 +1898,13 @@ class ProceduresApiService {
|
|
1898
1898
|
body,
|
1899
1899
|
});
|
1900
1900
|
}
|
1901
|
+
rlmExecute$(body) {
|
1902
|
+
return this.baseHttpService.api({
|
1903
|
+
url: `${this.SERVICE_URL}/rlm/execute`,
|
1904
|
+
method: 'post',
|
1905
|
+
body,
|
1906
|
+
});
|
1907
|
+
}
|
1901
1908
|
/**
|
1902
1909
|
* Run active procedure against QuoteDraft
|
1903
1910
|
* @param body
|