-
Notifications
You must be signed in to change notification settings - Fork 6
Split DCR/DTVR implementations #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
- inconvenient to maintain a single multipurpose codebase - some configuration/signature breaking changes
🦋 Changeset detectedLatest commit: 9071e1f The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
| configuration?: NielsenConfiguration | ||
| ) { | ||
| this.nielsenHandler = new NielsenHandler(player, appId, instanceName, options, configuration); | ||
| if (configuration?.country === NielsenCountry.US) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Previously DTVR was the default value but now it changed to DCR. Probably should keep the default to DTVR.
| * Returns an appropriate handler specified in the configuration. | ||
| * | ||
| */ | ||
| export function getNielsenHandler( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This function is not used
|
|
||
| Split DCR/DTVR implementations | ||
|
|
||
| - inconvenient to maintain a single multipurpose codebase |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These entries should not be part of our changelog as it does not change the behavior of the connector.
Instead I'd mention that they are split indeed and the changes to the configuration object as well as removing updateDCRContentMetadata in favour of the general updateMetadata.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thinking about it again, maybe it would be better if we could deprecate the updateDCRContentMetadata and enableDCR/enableDTVR instead of removing them already. Then we can give everyone some time to update to the new way. @wjoosen thoughts?
Rundown of changes: