|
1 | | -// (C) 2020-2024 GoodData Corporation |
| 1 | +// (C) 2020-2025 GoodData Corporation |
2 | 2 | import { IEarlyAccessFeaturesConfig } from "@gooddata/sdk-model"; |
3 | 3 |
|
4 | 4 | /** |
@@ -123,6 +123,7 @@ export enum TigerFeaturesNames { |
123 | 123 | EnableNewUserCreationFlow = "enableNewUserCreationFlow", |
124 | 124 | EnableDestinationTesting = "enableDestinationTesting", |
125 | 125 | EnableInPlatformNotifications = "enableInPlatformNotifications", |
| 126 | + EnableExternalRecipients = "enableExternalRecipients", |
126 | 127 | EnableVisualizationFineTuning = "enableVisualizationFineTuning", |
127 | 128 | } |
128 | 129 |
|
@@ -211,6 +212,7 @@ export type ITigerFeatureFlags = { |
211 | 212 | enableDestinationTesting: typeof FeatureFlagsValues["enableDestinationTesting"][number]; |
212 | 213 | enableInPlatformNotifications: typeof FeatureFlagsValues["enableInPlatformNotifications"][number]; |
213 | 214 | enableVisualizationFineTuning: typeof FeatureFlagsValues["enableVisualizationFineTuning"][number]; |
| 215 | + enableExternalRecipients: typeof FeatureFlagsValues["enableExternalRecipients"][number]; |
214 | 216 | }; |
215 | 217 |
|
216 | 218 | export const DefaultFeatureFlags: ITigerFeatureFlags = { |
@@ -298,6 +300,7 @@ export const DefaultFeatureFlags: ITigerFeatureFlags = { |
298 | 300 | enableDestinationTesting: false, |
299 | 301 | enableInPlatformNotifications: false, |
300 | 302 | enableVisualizationFineTuning: false, |
| 303 | + enableExternalRecipients: false, |
301 | 304 | }; |
302 | 305 |
|
303 | 306 | export const FeatureFlagsValues = { |
@@ -389,4 +392,5 @@ export const FeatureFlagsValues = { |
389 | 392 | enableDestinationTesting: [true, false] as const, |
390 | 393 | enableInPlatformNotifications: [true, false] as const, |
391 | 394 | enableVisualizationFineTuning: [true, false] as const, |
| 395 | + enableExternalRecipients: [true, false] as const, |
392 | 396 | }; |
0 commit comments