import { ShopifyWebhookHandler, WebhookHandler, } from '@bavaan/nestjs-shopify-webhooks'; @WebhookHandler('PRODUCTS_CREATE') export class ProductsCreateHandler extends ShopifyWebhookHandler { async handle(_shop: string, _data: unknown): Promise { // process the data } }