Skip to content

Commit

Permalink
Merge branch 'develop' into feat.warehouseNewFormBuilder
Browse files Browse the repository at this point in the history
  • Loading branch information
cisse21 committed Mar 1, 2024
2 parents 4233592 + 7da2f81 commit 7ae604a
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 1 deletion.
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
2 changes: 1 addition & 1 deletion src/configurations/destinations/snowflake/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"type": "textInput",
"label": "Role",
"configKey": "role",
"regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{1,100})$",
"regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$",
"regexErrorMessage": "Invalid Role",
"placeholder": "e.g: RUDDER_ROLE",
"secret": false
Expand Down

0 comments on commit 7ae604a

Please sign in to comment.