diff --git a/src/app/core/services/catalog/catalog.service.ts b/src/app/core/services/catalog/catalog.service.ts index 9f103f7..9c22600 100644 --- a/src/app/core/services/catalog/catalog.service.ts +++ b/src/app/core/services/catalog/catalog.service.ts @@ -14,7 +14,6 @@ import { CatalogItemDetail, CatalogVariantOptionsResponse, CategoryItemsResponse, - Product, } from './catalog.interface'; type HttpParamValue = string | number | boolean | readonly (string | number | boolean)[]; @@ -33,12 +32,6 @@ export class CatalogService extends BaseApiService { return this.tenantService.getTenantApiUrl(); } - getProductos(params?: ApiPaginationQueryParams): Observable> { - return this.http.get>(`${this.tenantApiUrl}/productos`, { - params: this.buildHttpParams(params), - }); - } - getCatalog(): Observable { return this.http.get(`${this.tenantApiUrl}/catalog`); }