@veloceapps/api 12.0.0-11 → 12.0.0-13
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/endpoints-admin-api.service.mjs +6 -4
- package/esm2020/v2/services/orchestrations-admin-api.service.mjs +1 -1
- package/esm2020/v2/types/endpoint.types.mjs +2 -0
- package/esm2020/v2/types/event-logs.types.mjs +2 -0
- package/esm2020/v2/types/function.types.mjs +1 -1
- package/esm2020/v2/types/index.mjs +3 -1
- package/esm2020/v2/types/procedure.types.mjs +1 -1
- package/fesm2015/veloceapps-api-v2.mjs +4 -3
- package/fesm2015/veloceapps-api-v2.mjs.map +1 -1
- package/fesm2020/veloceapps-api-v2.mjs +4 -3
- package/fesm2020/veloceapps-api-v2.mjs.map +1 -1
- package/package.json +1 -1
- package/v2/services/endpoints-admin-api.service.d.ts +3 -3
- package/v2/services/orchestrations-admin-api.service.d.ts +2 -2
- package/v2/types/endpoint.types.d.ts +15 -0
- package/v2/types/event-logs.types.d.ts +9 -0
- package/v2/types/function.types.d.ts +3 -0
- package/v2/types/index.d.ts +2 -0
- package/v2/types/procedure.types.d.ts +13 -1
@@ -631,13 +631,14 @@ class EndpointsAdminApiService {
|
|
631
631
|
});
|
632
632
|
}
|
633
633
|
executeEndpoint$(body) {
|
634
|
-
return this.baseHttpService
|
634
|
+
return this.baseHttpService
|
635
|
+
.api({
|
635
636
|
url: `${this.serviceUrl}/execute`,
|
636
637
|
method: 'post',
|
637
638
|
body,
|
638
|
-
responseType: 'text',
|
639
639
|
skipErrorHandler: true,
|
640
|
-
})
|
640
|
+
})
|
641
|
+
.pipe(map$1(result => result || {}));
|
641
642
|
}
|
642
643
|
}
|
643
644
|
EndpointsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: EndpointsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|