diff --git a/CHANGELOG.md b/CHANGELOG.md index faaa38436..def1a0688 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.93.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.92.1...v1.93.0) (2024-09-24) + + +### Features + +* **fb_custom_audience:** hide particular fields from ui config when VDMv2 is enabled ([#1706](https://github.com/rudderlabs/rudder-config-schema/issues/1706)) ([016e822](https://github.com/rudderlabs/rudder-config-schema/commit/016e82250c08dfd0db12fdb107905a25a746a9e8)) + ### [1.92.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.92.0...v1.92.1) (2024-09-20) diff --git a/package-lock.json b/package-lock.json index fa34d5a0b..60d2003ff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rudder-config-schema", - "version": "1.92.1", + "version": "1.93.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rudder-config-schema", - "version": "1.92.1", + "version": "1.93.0", "license": "MIT", "dependencies": { "ajv": "^8.12.0", diff --git a/package.json b/package.json index 3dbd3ecdb..6954907a2 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rudder-config-schema", - "version": "1.92.1", + "version": "1.93.0", "description": "", "main": "src/index.ts", "private": true, diff --git a/src/configurations/destinations/fb_custom_audience/ui-config.json b/src/configurations/destinations/fb_custom_audience/ui-config.json index 2dbe5c9d1..c399a702b 100644 --- a/src/configurations/destinations/fb_custom_audience/ui-config.json +++ b/src/configurations/destinations/fb_custom_audience/ui-config.json @@ -464,7 +464,22 @@ ], "default": "NA" } - ] + ], + "preRequisites": { + "fields": [ + { + "configKey": "connectionMode.cloud", + "value": "cloud" + } + ], + "prerequisitesCondition": "or", + "featureFlags": [ + { + "configKey": "AMP_vdm-next", + "value": false + } + ] + } } ] },