UNPKG

vendure-simplified-collections-plugin

Version:

This `vendure` plugin allows you to maintain a two way relation between products and collections. `Vendure` by default only allows you to manage relations between your inventory and collections from the side of collections only. It complements this featur

8 lines (7 loc) 419 B
import { TransactionalConnection, CollectionService, RequestContext } from '@vendure/core'; export declare class ProductIdCollectionFilterUpdateService { private connections; private collectionService; constructor(connections: TransactionalConnection, collectionService: CollectionService); handleExistingCollectionUpdated(ctx: RequestContext, productId: string, updatedIds: string[]): Promise<void>; }