1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

[Gitar] Updating TypeScript files

This commit is contained in:
Gitar 2025-01-06 08:31:53 +00:00
parent 5cb6b3e827
commit bef60491b2
4 changed files with 1 additions and 10 deletions

View File

@ -86,7 +86,6 @@ export type UiFlags = {
flagCreator?: boolean;
releasePlans?: boolean;
'enterprise-payg'?: boolean;
simplifyProjectOverview?: boolean;
productivityReportEmail?: boolean;
showUserDeviceCount?: boolean;
flagOverviewRedesign?: boolean;

View File

@ -42,9 +42,7 @@ export default class ProjectHealthReport extends Controller {
middleware: [
openApiService.validPath({
tags: ['Projects'],
deprecated: config.flagResolver.isEnabled(
'simplifyProjectOverview',
),
deprecated: true,
operationId: 'getProjectHealthReport',
summary: 'Get a health report for a project.',
description:

View File

@ -52,7 +52,6 @@ export type IFlagKey =
| 'releasePlans'
| 'productivityReportEmail'
| 'enterprise-payg'
| 'simplifyProjectOverview'
| 'flagOverviewRedesign'
| 'showUserDeviceCount'
| 'deleteStaleUserSessions'
@ -262,10 +261,6 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_SHOW_USER_DEVICE_COUNT,
false,
),
simplifyProjectOverview: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_SIMPLIFY_PROJECT_OVERVIEW,
false,
),
flagOverviewRedesign: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_FLAG_OVERVIEW_REDESIGN,
false,

View File

@ -51,7 +51,6 @@ process.nextTick(async () => {
originMiddlewareRequestLogging: true,
webhookDomainLogging: true,
releasePlans: false,
simplifyProjectOverview: true,
showUserDeviceCount: true,
flagOverviewRedesign: false,
licensedUsers: true,