In an effort to implement a unique bidder setting key name within my prebid solution, I have taken the necessary steps as outlined in the documentation by including all 6 required keys. Is it possible to change the key name 'hb_pb' to 'zm_hb_pb' by simply adjusting the code example provided below? Once this change has been made, do I just need to inform my ad ops team or are there additional steps that need to be taken to ensure that this modification is applied globally for all bidders?
pbjs.bidderSettings = {
standard: {
adserverTargeting: [
...
{
key: 'zm_hb_pb',
val: function(bidResponse) {
return bidResponse.pbMg;
}
},
...