1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-23 13:46:45 +02:00

[Gitar] Cleaning up Typescript files

This commit is contained in:
Gitar Bot 2024-04-03 09:07:32 +00:00
parent 717e541003
commit e64d1b92d2
4 changed files with 0 additions and 8 deletions

View File

@ -67,7 +67,6 @@ export type UiFlags = {
celebrateUnleash?: boolean; celebrateUnleash?: boolean;
featureSearchFeedback?: Variant; featureSearchFeedback?: Variant;
enableLicense?: boolean; enableLicense?: boolean;
newStrategyConfigurationFeedback?: boolean;
adminTokenKillSwitch?: boolean; adminTokenKillSwitch?: boolean;
executiveDashboardUI?: boolean; executiveDashboardUI?: boolean;
feedbackComments?: Variant; feedbackComments?: Variant;

View File

@ -130,7 +130,6 @@ exports[`should create default config 1`] = `
}, },
"migrationLock": true, "migrationLock": true,
"newContextFieldsUI": false, "newContextFieldsUI": false,
"newStrategyConfigurationFeedback": false,
"outdatedSdksBanner": false, "outdatedSdksBanner": false,
"personalAccessTokensKillSwitch": false, "personalAccessTokensKillSwitch": false,
"projectOverviewRefactor": false, "projectOverviewRefactor": false,

View File

@ -32,7 +32,6 @@ export type IFlagKey =
| 'celebrateUnleash' | 'celebrateUnleash'
| 'featureSearchFeedback' | 'featureSearchFeedback'
| 'featureSearchFeedbackPosting' | 'featureSearchFeedbackPosting'
| 'newStrategyConfigurationFeedback'
| 'edgeBulkMetrics' | 'edgeBulkMetrics'
| 'extendedUsageMetrics' | 'extendedUsageMetrics'
| 'adminTokenKillSwitch' | 'adminTokenKillSwitch'
@ -165,10 +164,6 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_FEATURE_SEARCH_FEEDBACK_POSTING, process.env.UNLEASH_EXPERIMENTAL_FEATURE_SEARCH_FEEDBACK_POSTING,
false, false,
), ),
newStrategyConfigurationFeedback: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_NEW_STRATEGY_CONFIGURATION_FEEDBACK,
false,
),
encryptEmails: parseEnvVarBoolean( encryptEmails: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_ENCRYPT_EMAILS, process.env.UNLEASH_EXPERIMENTAL_ENCRYPT_EMAILS,
false, false,

View File

@ -43,7 +43,6 @@ process.nextTick(async () => {
stripClientHeadersOn304: true, stripClientHeadersOn304: true,
stripHeadersOnAPI: true, stripHeadersOnAPI: true,
celebrateUnleash: true, celebrateUnleash: true,
newStrategyConfigurationFeedback: true,
featureSearchFeedbackPosting: true, featureSearchFeedbackPosting: true,
executiveDashboard: true, executiveDashboard: true,
executiveDashboardUI: true, executiveDashboardUI: true,