Skip to content

Commit

Permalink
Merge pull request #822 from rudderlabs/hotfix-release/v1.44.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeepdsvs authored Aug 11, 2023
2 parents a03cbec + 216f186 commit fe4484b
Show file tree
Hide file tree
Showing 4 changed files with 142 additions and 100 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.44.2](https://github.com/rudderlabs/rudder-config-schema/compare/v1.44.1...v1.44.2) (2023-08-11)


### Bug Fixes

* updated optimizely_fullstack uiConfig to match the latest mapping component structure ([#821](https://github.com/rudderlabs/rudder-config-schema/issues/821)) ([7ceba92](https://github.com/rudderlabs/rudder-config-schema/commit/7ceba92661263dcc084d444e6e1d222a32344884))

### [1.44.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.44.0...v1.44.1) (2023-08-08)


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.44.1",
"version": "1.44.2",
"description": "",
"main": "src/index.ts",
"private": true,
Expand Down
229 changes: 132 additions & 97 deletions src/configurations/destinations/optimizely_fullstack/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -158,103 +158,6 @@
"default": false
}
]
},
{
"title": "RudderStack Page Name/Category to Optimizely event mappings",
"preRequisites": {
"fields": [
{
"configKey": "connectionModes.cloud",
"value": true
}
]
},
"fields": [
{
"type": "mapping",
"labelLeft": "RudderStack Page Name/Category",
"labelRight": "Optimizely Event Name",
"keyLeft": "from",
"keyRight": "to",
"placeholderLeft": "e.g Index",
"placeholderRight": "e.g Viewed Home Page",
"configKey": "pageMapping",
"default": [],
"preRequisites": {
"fields": [
{
"configKey": "trackCategorizedPages",
"value": true
},
{
"configKey": "trackNamedPages",
"value": true
}
],
"condition": "or"
}
}
]
}
]
},
{
"groups": [
{
"title": "Track settings",
"icon": "magnifyingGlass",
"preRequisites": {
"fields": [
{
"configKey": "connectionModes.cloud",
"value": true
}
]
},
"fields": [
{
"type": "mapping",
"labelLeft": "RudderStack Event Name",
"labelRight": "Optimizely Event Name",
"label": "RudderStack to Optimizely event mappings",
"keyLeft": "from",
"keyRight": "to",
"placeholderLeft": "e.g Product Searched",
"placeholderRight": "e.g Searched",
"configKey": "eventMapping",
"default": []
}
]
}
]
},
{
"groups": [
{
"title": "Attribute mappings",
"icon": "sliders",
"preRequisites": {
"fields": [
{
"configKey": "connectionModes.cloud",
"value": true
}
]
},
"fields": [
{
"type": "mapping",
"labelLeft": "RudderStack Attribute Name",
"labelRight": "Optimizely Attribute Name",
"label": "RudderStack to Optimizely attribute mappings",
"keyLeft": "from",
"keyRight": "to",
"placeholderLeft": "e.g firstName",
"placeholderRight": "e.g first_name",
"configKey": "attributeMapping",
"default": []
}
]
}
]
},
Expand Down Expand Up @@ -481,6 +384,55 @@
]
}
]
},
{
"title": "Event mapping",
"note": "Map RudderStack to Optimizely events",
"hideEditIcon": true,
"sections": [
{
"groups": [
{
"title": "RudderStack to Optimizely mappings",
"preRequisites": {
"fields": [
{
"configKey": "connectionModes.cloud",
"value": true
}
]
},
"fields": [
{
"type": "redirect",
"redirectGroupKey": "customEventMapping",
"label": "RudderStack to Optimizely event and attribute mappings",
"note": "Map your RudderStack events/attributes to Optimizely custom events/attributes"
},
{
"type": "redirect",
"redirectGroupKey": "pageEventMapping",
"label": "RudderStack Page Name/Category to Optimizely event mappings",
"note": "Map your RudderStack page name/Category to Optimizely custom events",
"preRequisites": {
"fields": [
{
"configKey": "trackCategorizedPages",
"value": true
},
{
"configKey": "trackNamedPages",
"value": true
}
],
"condition": "or"
}
}
]
}
]
}
]
}
],
"sdkTemplate": {
Expand All @@ -501,6 +453,89 @@
"default": true
}
]
},
"redirectGroups": {
"customEventMapping": {
"tabs": [
{
"name": "Custom track events",
"fields": [
{
"type": "mapping",
"label": "Map your RudderStack events to Optimizely events for Track events",
"note": "Map RudderStack events/properties to Optimizely custom events/properties using either our mapping interface or JSON text editor. Learn more about mappings in our docs.",
"configKey": "eventMapping",
"default": [],
"columns": [
{
"type": "textInput",
"key": "from",
"label": "RudderStack Event",
"placeholder": "e.g: Product Searched"
},
{
"type": "textInput",
"key": "to",
"label": "Optimizely Event",
"placeholder": "e.g: Searched"
}
]
}
]
},
{
"name": "Custom attributes",
"fields": [
{
"type": "mapping",
"label": "Map your RudderStack attributes to Optimizely attributes",
"note": "Map RudderStack attributes to Optimizely custom attributes using either our mapping interface or JSON text editor. Learn more about mappings in our docs.",
"configKey": "attributeMapping",
"default": [],
"columns": [
{
"type": "textInput",
"key": "from",
"label": "RudderStack Attribute",
"placeholder": "e.g: firstName"
},
{
"type": "textInput",
"key": "to",
"label": "Optimizely Attribute",
"placeholder": "e.g: first_name"
}
]
}
]
}
]
},
"pageEventMapping": {
"fields": [
{
"type": "mapping",
"label": "Map your RudderStack Page Name/Category to Optimizely events",
"note": "Map RudderStack Page Name/Category to Optimizely events using either our mapping interface or JSON text editor. Learn more about mappings in our docs.",
"configKey": "pageMapping",
"default": [],
"columns": [
{
"type": "textInput",
"key": "from",
"label": "RudderStack Page Name/Category",
"placeholder": "e.g: Index"
},
{
"type": "textInput",
"key": "to",
"label": "Optimizely Event",
"placeholder": "e.g: Viewed Home Page"
}
]
}
]
}
}
}
}

0 comments on commit fe4484b

Please sign in to comment.