Bright WooCommerce Integration Hooks
WordPress Actions
bright_woocommerce_added_license_key
Called by manageLicenseOrder after the license key is added:
do_action('bright_woocommerce_added_license_key',$wc_order,$invitation_id);
So to hook to this, use:
add_action('bright_woocommerce_added_license_key','afterLicenseKeyCreated',10,2);
function afterLicenseKeyCreated(WC_Order $wc_order, $invitationId) {
// do something
}