Internal JS events blocked in Bitbucket 6.x

In https://developer.atlassian.com/server/bitbucket/reference/api-changelog/ it’s mentioned that:

Internal JS events blocked

Events (consumed using bitbucket/util/events ) starting with bitbucket.internal have never been official API but will no longer be able to be subscribed to and should not be considered stable or part of any official API.

I was previously subscribing to these events to handle various user actions in my plugin to trigger specific behaviors. Without these events, my plugin is less useable. Is there another way to handle the following actions:

“bitbucket.internal.feature.comments.commentDeleted”
“bitbucket.internal.feature.pullRequestActivity.dataLoaded”
“bitbucket.internal.feature.comments.commentAdded”
“bitbucket.internal.feature.comments.commentContainerAdded”
“bitbucket.internal.feature.comments.commentEdited”
“bitbucket.internal.widget.approve-button.adding”
“bitbucket.internal.widget.approve-button.removing”

Note: I originally posted this here: Internal JS events blocked in Bitbucket 6.x