@veloceapps/api 11.0.0-68 → 11.0.0-69
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 +7 -1
- package/fesm2015/veloceapps-api-v2.mjs +6 -0
- package/fesm2015/veloceapps-api-v2.mjs.map +1 -1
- package/fesm2020/veloceapps-api-v2.mjs +6 -0
- package/fesm2020/veloceapps-api-v2.mjs.map +1 -1
- package/package.json +1 -1
- package/v2/services/functions-admin-api.service.d.ts +1 -0
@@ -805,6 +805,12 @@ class FunctionsAdminApiService {
|
|
805
805
|
method: 'get',
|
806
806
|
});
|
807
807
|
}
|
808
|
+
fetchFunctionTags$() {
|
809
|
+
return this.baseHttpService.api({
|
810
|
+
url: '/admin/v2/functions/tags',
|
811
|
+
method: 'get',
|
812
|
+
});
|
813
|
+
}
|
808
814
|
}
|
809
815
|
FunctionsAdminApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FunctionsAdminApiService, deps: [{ token: i1.BaseHttpService }], target: i0.ɵɵFactoryTarget.Injectable });
|
810
816
|
FunctionsAdminApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.9", ngImport: i0, type: FunctionsAdminApiService });
|