NeahNew/node_modules/@keycloak/keycloak-admin-client/lib/defs/featureRepresentation.d.ts
2025-05-03 15:36:20 +02:00

16 lines
421 B
TypeScript

export default interface FeatureRepresentation {
name: string;
label: string;
type: FeatureType;
enabled: boolean;
dependencies: string[];
}
export declare enum FeatureType {
Default = "DEFAULT",
DisabledByDefault = "DISABLED_BY_DEFAULT",
Preview = "PREVIEW",
PreviewDisabledByDefault = "PREVIEW_DISABLED_BY_DEFAULT",
Experimental = "EXPERIMENTAL",
Deprecated = "DEPRECATED"
}