Make Service base type optional
[sdc.git] / catalog-ui / src / app / ng2 / services / element.service.ts
index b3cf8c3..dc0218f 100644 (file)
@@ -33,10 +33,9 @@ export class ElementService {
         this.baseUrl = sdcConfig.api.root;
     }
 
-    getCategoryBasetypes(categoryName:string, modelName:string):Observable<BaseTypeResponse[]> {
+    getCategoryBaseTypes(categoryName: string, modelName: string): Observable<ListBaseTypesResponse> {
            let modelQueryParam: string = modelName ? '?model=' + modelName : '';
-        return this.http.get<ListBaseTypesResponse>(this.baseUrl + "/v1/category/services/" + categoryName + "/baseTypes" + modelQueryParam)
-            .pipe(map(response => response.baseTypes));
+        return this.http.get<ListBaseTypesResponse>(this.baseUrl + "/v1/category/services/" + categoryName + "/baseTypes" + modelQueryParam);
     }
 
 }