-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1327 from rudderlabs/hotfix-release/v1.71.1
chore(release): pull hotfix-release/v1.71.1 into main
- Loading branch information
Showing
7 changed files
with
140 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
src/configurations/destinations/yandex_metrica_offline_events/db-config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "YANDEX_METRICA_OFFLINE_EVENTS", | ||
"displayName": "Yandex Metrica Offline Events", | ||
"config": { | ||
"auth": { | ||
"type": "OAuth", | ||
"rudderScopes": ["delivery"] | ||
}, | ||
"cdkV2Enabled": true, | ||
"supportsVisualMapper": true, | ||
"disableJsonMapper": true, | ||
"syncBehaviours": ["upsert"], | ||
"transformAtV1": "processor", | ||
"saveDestinationResponse": true, | ||
"supportedSourceTypes": ["warehouse"], | ||
"supportedMessageTypes": { | ||
"cloud": ["identify"] | ||
}, | ||
"supportedConnectionModes": { | ||
"cloud": ["cloud"], | ||
"warehouse": ["cloud"] | ||
}, | ||
"destConfig": { | ||
"defaultConfig": ["rudderAccountId", "counterId", "goalId"] | ||
} | ||
}, | ||
"options": { | ||
"isBeta": true | ||
} | ||
} |
29 changes: 29 additions & 0 deletions
29
src/configurations/destinations/yandex_metrica_offline_events/schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"configSchema": { | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"type": "object", | ||
"required": ["counterId"], | ||
"properties": { | ||
"counterId": { | ||
"type": "string", | ||
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{1,100})$" | ||
}, | ||
"goalId": { | ||
"type": "string", | ||
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$" | ||
}, | ||
"oneTrustCookieCategories": { | ||
"type": "array", | ||
"items": { | ||
"type": "object", | ||
"properties": { | ||
"oneTrustCookieCategory": { | ||
"type": "string", | ||
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
52 changes: 52 additions & 0 deletions
52
src/configurations/destinations/yandex_metrica_offline_events/ui-config.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"uiConfig": [ | ||
{ | ||
"title": "Connection Settings", | ||
"fields": [ | ||
{ | ||
"type": "textInput", | ||
"label": "Counter ID", | ||
"value": "counterId", | ||
"regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{1,100})$", | ||
"regexErrorMessage": "Invalid Counter ID, example value 56252632", | ||
"required": true, | ||
"placeholder": "e.g. 562XX632", | ||
"secret": false, | ||
"footerNote": "Your Counter ID" | ||
}, | ||
{ | ||
"type": "textInput", | ||
"label": "Goal ID", | ||
"value": "goalId", | ||
"regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$", | ||
"regexErrorMessage": "Invalid Goal ID, example value 56252632", | ||
"required": false, | ||
"placeholder": "e.g. 562XX632", | ||
"secret": false, | ||
"footerNote": "Your Goal ID" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "Consent Settings", | ||
"fields": [ | ||
{ | ||
"type": "dynamicCustomForm", | ||
"value": "oneTrustCookieCategories", | ||
"label": "OneTrust Consent Categories", | ||
"footerNote": "The support for category names is deprecated. We recommend using the category IDs instead of the names as IDs are unique and less likely to change over time, making them a more reliable choice.", | ||
"customFields": [ | ||
{ | ||
"type": "textInput", | ||
"placeholder": "C0001", | ||
"value": "oneTrustCookieCategory", | ||
"regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$", | ||
"label": "Category ID", | ||
"required": false | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
} |
19 changes: 19 additions & 0 deletions
19
test/data/validation/destinations/yandex_metrica_offline_events.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[ | ||
{ | ||
"config": { | ||
"counterId": "95518171", | ||
"goalId": "23432565", | ||
"rudderAccountId": "2du7fLeK82nk4P2XXXX507uiD1B", | ||
"authStatus": "active" | ||
}, | ||
"result": true | ||
}, | ||
{ | ||
"config": { | ||
"counterId": "31517172", | ||
"rudderAccountId": "2du1fLeS82sk0P2XXXX501uiX1B", | ||
"authStatus": "active" | ||
}, | ||
"result": true | ||
} | ||
] |