Skip to content

Commit

Permalink
Merge pull request #1327 from rudderlabs/hotfix-release/v1.71.1
Browse files Browse the repository at this point in the history
chore(release): pull hotfix-release/v1.71.1 into main
  • Loading branch information
ItsSudip authored Apr 22, 2024
2 parents 5320178 + bf63d74 commit d41209e
Show file tree
Hide file tree
Showing 7 changed files with 140 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [1.71.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.71.0...v1.71.1) (2024-04-22)


### Bug Fixes

* onboard yandex metrica offline events ([#1326](https://github.com/rudderlabs/rudder-config-schema/issues/1326)) ([090ea76](https://github.com/rudderlabs/rudder-config-schema/commit/090ea76402480f1df747d5696fe4277341f6dcd6))

## [1.71.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.70.1...v1.71.0) (2024-04-15)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rudder-config-schema",
"version": "1.71.0",
"version": "1.71.1",
"description": "",
"main": "src/index.ts",
"private": true,
Expand Down
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
}
}
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})$"
}
}
}
}
}
}
}
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
}
]
}
]
}
]
}
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
}
]

0 comments on commit d41209e

Please sign in to comment.