mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-11 00:08:30 +01:00
81 lines
1.9 KiB
TypeScript
81 lines
1.9 KiB
TypeScript
import { ReactNode } from 'react';
|
|
import { Variant } from 'utils/variants';
|
|
|
|
export interface IUiConfig {
|
|
authenticationType?: string;
|
|
baseUriPath?: string;
|
|
flags: IFlags;
|
|
name: string;
|
|
slogan: string;
|
|
environment?: string;
|
|
unleashUrl?: string;
|
|
version: string;
|
|
versionInfo?: IVersionInfo;
|
|
links: ILinks[];
|
|
disablePasswordAuth?: boolean;
|
|
emailEnabled?: boolean;
|
|
networkViewEnabled: boolean;
|
|
maintenanceMode?: boolean;
|
|
toast?: IProclamationToast;
|
|
segmentValuesLimit?: number;
|
|
strategySegmentsLimit?: number;
|
|
frontendApiOrigins?: string[];
|
|
}
|
|
|
|
export interface IProclamationToast {
|
|
message: string;
|
|
id: string;
|
|
severity: 'success' | 'info' | 'warning' | 'error';
|
|
link: string;
|
|
}
|
|
|
|
export interface IFlags {
|
|
P: boolean;
|
|
RE: boolean;
|
|
EEA?: boolean;
|
|
SE?: boolean;
|
|
T?: boolean;
|
|
UNLEASH_CLOUD?: boolean;
|
|
UG?: boolean;
|
|
embedProxyFrontend?: boolean;
|
|
maintenanceMode?: boolean;
|
|
messageBanner?: Variant;
|
|
featuresExportImport?: boolean;
|
|
caseInsensitiveInOperators?: boolean;
|
|
proPlanAutoCharge?: boolean;
|
|
notifications?: boolean;
|
|
personalAccessTokensKillSwitch?: boolean;
|
|
demo?: boolean;
|
|
googleAuthEnabled?: boolean;
|
|
disableBulkToggle?: boolean;
|
|
disableNotifications?: boolean;
|
|
advancedPlayground?: boolean;
|
|
customRootRolesKillSwitch?: boolean;
|
|
strategyVariant?: boolean;
|
|
newProjectLayout?: boolean;
|
|
configurableFeatureTypeLifetimes?: boolean;
|
|
frontendNavigationUpdate?: boolean;
|
|
segmentChangeRequests?: boolean;
|
|
changeRequestReject?: boolean;
|
|
lastSeenByEnvironment?: boolean;
|
|
}
|
|
|
|
export interface IVersionInfo {
|
|
instanceId: string;
|
|
isLatest: boolean;
|
|
latest: Partial<IVersion>;
|
|
current: IVersion;
|
|
}
|
|
|
|
export interface IVersion {
|
|
oss: string;
|
|
enterprise: string;
|
|
}
|
|
|
|
export interface ILinks {
|
|
value: string;
|
|
icon: ReactNode;
|
|
href: string;
|
|
title: string;
|
|
}
|