Keycloak
1export default interface FeatureRepresentation {
2name: string;
3label: string;
4type: FeatureType;
5enabled: boolean;
6dependencies: string[];
7}
8
9export enum FeatureType {
10Default = "DEFAULT",
11DisabledByDefault = "DISABLED_BY_DEFAULT",
12Preview = "PREVIEW",
13PreviewDisabledByDefault = "PREVIEW_DISABLED_BY_DEFAULT",
14Experimental = "EXPERIMENTAL",
15Deprecated = "DEPRECATED",
16}
17