Category adapter

interface CatalogCategoryAdapter {
    createCategory: HandlerAndValidators<Record<string, Predicate>>;
    deleteCategory: HandlerAndValidators<Record<string, Predicate>>;
    getCategory: HandlerAndValidators<Record<string, Predicate>>;
    getCategoryProductCount: HandlerAndValidators<Record<string, Predicate>>;
    getCategoryTree: HandlerAndValidators<Record<string, Predicate>>;
    listCategories: HandlerAndValidators<Record<string, Predicate>>;
    updateCategory: HandlerAndValidators<Record<string, Predicate>>;
}

Hierarchy (view full)

Properties

createCategory: HandlerAndValidators<Record<string, Predicate>>
deleteCategory: HandlerAndValidators<Record<string, Predicate>>
getCategory: HandlerAndValidators<Record<string, Predicate>>
getCategoryProductCount: HandlerAndValidators<Record<string, Predicate>>
getCategoryTree: HandlerAndValidators<Record<string, Predicate>>
listCategories: HandlerAndValidators<Record<string, Predicate>>
updateCategory: HandlerAndValidators<Record<string, Predicate>>

Generated using TypeDoc