forked from saleor/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebhooks.ts
19 lines (18 loc) · 1.02 KB
/
webhooks.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { webhookProductCreated } from "./src/webhooks/definitions/product-created";
import { webhookProductDeleted } from "./src/webhooks/definitions/product-deleted";
import { webhookProductUpdated } from "./src/webhooks/definitions/product-updated";
import { webhookProductVariantBackInStock } from "./src/webhooks/definitions/product-variant-back-in-stock";
import { webhookProductVariantCreated } from "./src/webhooks/definitions/product-variant-created";
import { webhookProductVariantDeleted } from "./src/webhooks/definitions/product-variant-deleted";
import { webhookProductVariantOutOfStock } from "./src/webhooks/definitions/product-variant-out-of-stock";
import { webhookProductVariantUpdated } from "./src/webhooks/definitions/product-variant-updated";
export const appWebhooks = [
webhookProductCreated,
webhookProductDeleted,
webhookProductUpdated,
webhookProductVariantCreated,
webhookProductVariantDeleted,
webhookProductVariantUpdated,
webhookProductVariantOutOfStock,
webhookProductVariantBackInStock,
];