There are many instances where third party mod developers may need to know if a new page is added to the site. Please add an alert for this action.
See possible solution below :
In inc\classes\BxDolPageViewAdmin.php
Find :
return array('code' => '1', 'message' => 'Failed database insert');
Just below, Add :
$iLastId = db_last_id();
$oZ = new BxDolAlerts('page_builder', 'custom_page', $iLastId, $iLastId, array('page' => $sUri));
$oZ->alert();