@veloceapps/api 11.0.0-41 → 11.0.0-43
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/functions-admin-api.service.mjs +9 -2
- package/esm2020/v2/types/function.types.mjs +2 -0
- package/esm2020/v2/types/index.mjs +2 -1
- package/fesm2015/veloceapps-api-v2.mjs +7 -0
- package/fesm2015/veloceapps-api-v2.mjs.map +1 -1
- package/fesm2020/veloceapps-api-v2.mjs +7 -0
- package/fesm2020/veloceapps-api-v2.mjs.map +1 -1
- package/package.json +1 -1
- package/v2/services/functions-admin-api.service.d.ts +3 -2
- package/v2/types/function.types.d.ts +9 -0
- package/v2/types/index.d.ts +1 -0
@@ -789,6 +789,13 @@ class FunctionsAdminApiService {
|
|
789
789
|
body,
|
790
790
|
});
|
791
791
|
}
|
792
|
+
executeExtractFunction$(body) {
|
793
|
+
return this.baseHttpService.api({
|
794
|
+
url: '/admin/v2/functions/extract',
|
795
|
+
method: 'post',
|
796
|
+
body,
|
797
|
+
});
|
798
|
+
}
|
792
799
|
getExecuteRuleUrl(ruleGroupType) {
|
793
800
|
switch (ruleGroupType) {
|
794
801
|
case RuleGroupTypes.eligibility:
|