saleor-apps-redis_apl/apps/search/webhooks.ts
Krzysztof Wolski 69fe973121
Search: Add media and stock flag (#874)
* Add media and stock flag

* Add UI for updating the queries

* Add update info to changelog
2023-08-16 14:08:07 +02:00

19 lines
1.1 KiB
TypeScript

import { webhookProductCreated } from "./src/pages/api/webhooks/saleor/product_created";
import { webhookProductDeleted } from "./src/pages/api/webhooks/saleor/product_deleted";
import { webhookProductUpdated } from "./src/pages/api/webhooks/saleor/product_updated";
import { webhookProductVariantCreated } from "./src/pages/api/webhooks/saleor/product_variant_created";
import { webhookProductVariantDeleted } from "./src/pages/api/webhooks/saleor/product_variant_deleted";
import { webhookProductVariantUpdated } from "./src/pages/api/webhooks/saleor/product_variant_updated";
import { webhookProductVariantOutOfStock } from "./src/pages/api/webhooks/saleor/product_variant_out_of_stock";
import { webhookProductVariantBackInStock } from "./src/pages/api/webhooks/saleor/product_variant_back_in_stock";
export const appWebhooks = [
webhookProductCreated,
webhookProductDeleted,
webhookProductUpdated,
webhookProductVariantCreated,
webhookProductVariantDeleted,
webhookProductVariantUpdated,
webhookProductVariantOutOfStock,
webhookProductVariantBackInStock,
];