You are returning Observable<Product> and expecting it to be Product[] inside subscribe callback.
The Type returned from http.get() and getProducts() should be Observable<Product[]>
public getProducts(): Observable<Product[]> {
return this.http.get<Product[]>(`api/products/v1/`);
}