Skip to content

Commit

Permalink
feat: garl consent mode (#1246)
Browse files Browse the repository at this point in the history
  • Loading branch information
shrouti1507 authored Feb 29, 2024
1 parent ef2045f commit 7da2f81
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@
"userSchema",
"isHashRequired",
"typeOfList",
"userDataConsent",
"personalizationConsent",
"oneTrustCookieCategories"
],
"cloud": ["audienceId", "connectionMode"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,54 @@
"value": "General"
}
},
{
"type": "singleSelect",
"label": "Specify the consent for uploaded users for using their data in Google Advertising Purpose",
"value": "userDataConsent",
"options": [
{
"name": "Unspecified",
"value": "UNSPECIFIED"
},
{
"name": "Unknown",
"value": "UNKNOWN"
},
{
"name": "Granted",
"value": "GRANTED"
},
{
"name": "Denied",
"value": "DENIED"
}
],
"default": "UNSPECIFIED"
},
{
"type": "singleSelect",
"label": "Specify the consent for uploaded users regarding Ads Personalization",
"value": "personalizationConsent",
"options": [
{
"name": "Unspecified",
"value": "UNSPECIFIED"
},
{
"name": "Unknown",
"value": "UNKNOWN"
},
{
"name": "Granted",
"value": "GRANTED"
},
{
"name": "Denied",
"value": "DENIED"
}
],
"default": "UNSPECIFIED"
},
{
"type": "checkbox",
"label": "Hash Required",
Expand Down

0 comments on commit 7da2f81

Please sign in to comment.