diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e12d9427bc..1b0b04bcd4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ The types of changes are: ### Fixed - Fix wording in tooltip for Yotpo Reviews [#5274](https://github.com/ethyca/fides/pull/5274) +- Hardcode ConnectionConfigurationResponse.secrets [#5283](https://github.com/ethyca/fides/pull/5283) - Fix Fides.shouldShouldShowExperience() to return false for modal-only experiences [#5281](https://github.com/ethyca/fides/pull/5281) diff --git a/clients/admin-ui/src/types/api/models/ConnectionConfigurationResponse.ts b/clients/admin-ui/src/types/api/models/ConnectionConfigurationResponse.ts index 581d6202cd1..bc511df7fee 100644 --- a/clients/admin-ui/src/types/api/models/ConnectionConfigurationResponse.ts +++ b/clients/admin-ui/src/types/api/models/ConnectionConfigurationResponse.ts @@ -22,7 +22,7 @@ export type ConnectionConfigurationResponse = { last_test_timestamp?: string | null; last_test_succeeded?: boolean | null; saas_config?: SaaSConfigBase | null; - secrets?: null; + secrets?: any; authorized?: boolean | null; enabled_actions?: Array | null; };