Skip to content
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

chore(release): pull main into develop post release v1.66.0 #1243

Merged
merged 9 commits into from
Feb 27, 2024
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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.66.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.65.0...v1.66.0) (2024-02-27)


### Features

* add event mapping support for branch destination ([#1238](https://github.com/rudderlabs/rudder-config-schema/issues/1238)) ([61e24c7](https://github.com/rudderlabs/rudder-config-schema/commit/61e24c78ff36b678f5fb1610e776885aebb39dbb))
* added device mode support for flutter source for kochava destination ([bd8315a](https://github.com/rudderlabs/rudder-config-schema/commit/bd8315a0aa90d508fdc19cff0686b46a7b074222))

## [1.65.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.64.2...v1.65.0) (2024-02-20)


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.65.0",
"version": "1.66.0",
"description": "",
"main": "src/index.ts",
"private": true,
Expand Down
1 change: 1 addition & 0 deletions src/configurations/destinations/branch/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
"destConfig": {
"defaultConfig": [
"branchKey",
"eventsMapping",
"blacklistedEvents",
"whitelistedEvents",
"eventFilteringOption",
Expand Down
125 changes: 122 additions & 3 deletions src/configurations/destinations/branch/ui-config.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"uiConfig": [
{
"title": "1. Connection Settings",
"title": "Connection Settings",
"fields": [
{
"type": "textInput",
Expand All @@ -15,7 +15,126 @@
]
},
{
"title": "2. Native SDK",
"title": "Other Settings",
"fields": [
{
"type": "dynamicSelectForm",
"label": "Map Your Events To Branch Events",
"labelLeft": "Event Name",
"labelRight": "Branch Event Name",
"value": "eventsMapping",
"keyLeft": "from",
"keyRight": "to",
"required": false,
"placeholderLeft": "e.g: Order Completed",
"placeholderRight": "e.g: PURCHASE",
"options": [
{
"name": "ACHIEVE_LEVEL",
"value": "ACHIEVE_LEVEL"
},
{
"name": "ADD_PAYMENT_INFO",
"value": "ADD_PAYMENT_INFO"
},
{
"name": "ADD_TO_CART",
"value": "ADD_TO_CART"
},
{
"name": "ADD_TO_WISHLIST",
"value": "ADD_TO_WISHLIST"
},
{
"name": "CLICK_AD",
"value": "CLICK_AD"
},
{
"name": "COMPLETE_REGISTRATION",
"value": "COMPLETE_REGISTRATION"
},
{
"name": "COMPLETE_STREAM",
"value": "COMPLETE_STREAM"
},
{
"name": "COMPLETE_TUTORIAL",
"value": "COMPLETE_TUTORIAL"
},
{
"name": "INVITE",
"value": "INVITE"
},
{
"name": "INITIATE_PURCHASE",
"value": "INITIATE_PURCHASE"
},
{
"name": "INITIATE_STREAM",
"value": "INITIATE_STREAM"
},
{
"name": "LOGIN",
"value": "LOGIN"
},
{
"name": "PURCHASE",
"value": "PURCHASE"
},
{
"name": "RATE",
"value": "RATE"
},
{
"name": "RESERVE",
"value": "RESERVE"
},
{
"name": "SEARCH",
"value": "SEARCH"
},
{
"name": "SHARE",
"value": "SHARE"
},
{
"name": "SPEND_CREDITS",
"value": "SPEND_CREDITS"
},
{
"name": "START_TRIAL",
"value": "START_TRIAL"
},
{
"name": "SUBSCRIBE",
"value": "SUBSCRIBE"
},
{
"name": "UNLOCK_ACHIEVEMENT",
"value": "UNLOCK_ACHIEVEMENT"
},
{
"name": "VIEW_AD",
"value": "VIEW_AD"
},
{
"name": "VIEW_CART",
"value": "VIEW_CART"
},
{
"name": "VIEW_ITEM",
"value": "VIEW_ITEM"
},
{
"name": "VIEW_ITEMS",
"value": "VIEW_ITEMS"
}
]
}
]
},
{
"title": "Native SDK",
"fields": [
{
"type": "checkbox",
Expand All @@ -26,7 +145,7 @@
]
},
{
"title": "3. Client-side Events Filtering",
"title": "Client-side Events Filtering",
"sectionNote": "Applicable only for device-mode integrations. If enabled, it works only with either allowlisted or denylisted events",
"fields": [
{
Expand Down
4 changes: 3 additions & 1 deletion src/configurations/destinations/kochava/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
},
"supportedConnectionModes": {
"android": ["cloud", "device"],
"ios": ["cloud", "device"]
"ios": ["cloud", "device"],
"flutter": ["cloud", "device"]
},
"destConfig": {
"defaultConfig": [
Expand All @@ -48,6 +49,7 @@
"oneTrustCookieCategories"
],
"android": ["useNativeSDK"],
"flutter": ["useNativeSDK", "appTrackingTransparency", "skAdNetwork"],
"ios": ["useNativeSDK", "appTrackingTransparency", "skAdNetwork"]
},
"secretKeys": []
Expand Down
7 changes: 5 additions & 2 deletions src/configurations/destinations/postgres/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@
"reactnative": ["cloud"],
"flutter": ["cloud"],
"cordova": ["cloud"],
"shopify": ["cloud"]
"shopify": ["cloud"],
"cloud": ["cloud"],
"cloudSource": ["cloud"]
},
"destConfig": {
"defaultConfig": [
Expand Down Expand Up @@ -79,6 +81,7 @@
"sasToken",
"secretAccessKey",
"credentials"
]
],
"immutableKeys": ["namespace"]
}
}
Loading
Loading