PluginProbe ʕ •ᴥ•ʔ
Microsoft Clarity / trunk
Microsoft Clarity vtrunk
0.10.27 0.10.26 0.10.25 0.10.24 0.8.0 0.9.0 0.9.1 0.9.2 0.9.3 0.9.4 trunk 0.10.0 0.10.1 0.10.10 0.10.11 0.10.12 0.10.13 0.10.14 0.10.15 0.10.16 0.10.17 0.10.18 0.10.19 0.10.2 0.10.20 0.10.21 0.10.22 0.10.23 0.10.3 0.10.4 0.10.5 0.10.6 0.10.7 0.10.8 0.10.9 0.2 0.4 0.5 0.6 0.6.1 0.7 0.7.1 0.7.2 0.7.3 0.7.4 0.7.5
microsoft-clarity / includes / webhooks / order-updated.php
microsoft-clarity / includes / webhooks Last commit date
cart-updated.php 4 months ago checkout-created.php 4 months ago order-updated.php 4 months ago product-created.php 4 months ago product-deleted.php 4 months ago product-updated.php 4 months ago
order-updated.php
17 lines
1 <?php
2 /**
3 * Order Updated Webhook Configuration
4 *
5 * @package MicrosoftClarity
6 * @since 0.10.21
7 */
8
9 // Exit if accessed directly
10 defined( 'ABSPATH' ) || exit;
11
12 return array(
13 'name' => 'BrandAgent Order Updated',
14 'topic' => 'order.updated',
15 'endpoint' => BRANDAGENT_WEBHOOK_BASE_URL . 'orders/updated',
16 );
17