2023-08-29 11:19:31 +00:00
|
|
|
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";
|
2023-08-16 12:08:07 +00:00
|
|
|
|
|
|
|
export const appWebhooks = [
|
|
|
|
webhookProductCreated,
|
|
|
|
webhookProductDeleted,
|
|
|
|
webhookProductUpdated,
|
|
|
|
webhookProductVariantCreated,
|
|
|
|
webhookProductVariantDeleted,
|
|
|
|
webhookProductVariantUpdated,
|
|
|
|
webhookProductVariantOutOfStock,
|
|
|
|
webhookProductVariantBackInStock,
|
|
|
|
];
|