We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb15231 commit 394d788Copy full SHA for 394d788
src/Structures/Webhook/WebhookItem.php
@@ -18,6 +18,12 @@ class WebhookItem extends BaseItem
18
const TYPE_PRODUCT_SYNCED = 'product_synced';
19
/** Is called when stock is updated for some of product's variants. */
20
const TYPE_STOCK_UPDATED = 'stock_updated';
21
+ /** Is called when order is put on hold. */
22
+ const TYPE_ORDER_PUT_HOLD = 'order_put_hold';
23
+ /** Is called when order is removed from hold. */
24
+ const TYPE_ORDER_REMOVE_HOLD = 'order_remove_hold';
25
+ /** Is called when a shipment is processed as returned to the fulfillment facility. */
26
+ const TYPE_PACKAGE_RETURNED = 'package_returned';
27
28
/**
29
* @var string
0 commit comments