2024-05-20 15:48:51 +02:00
|
|
|
export type KeycloakVersionRange =
|
2024-07-07 18:45:14 +02:00
|
|
|
| KeycloakVersionRange.WithAccountV1Theme
|
|
|
|
| KeycloakVersionRange.WithoutAccountV1Theme;
|
2024-05-17 05:13:41 +02:00
|
|
|
|
|
|
|
export namespace KeycloakVersionRange {
|
2024-10-04 12:17:08 +02:00
|
|
|
export type WithoutAccountV1Theme = "22-to-25" | "all-other-versions";
|
2024-05-17 05:13:41 +02:00
|
|
|
|
2024-10-04 12:58:31 +02:00
|
|
|
export type WithAccountV1Theme = "21-and-below" | "23" | "24" | "25" | "26-and-above";
|
2024-05-17 05:13:41 +02:00
|
|
|
}
|