keycloakify 11.8.50 → 11.8.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/375.index.js +3 -0
- package/bin/start-keycloak/realmConfig/ParsedRealmJson/ParsedRealmJson.d.ts +1 -0
- package/package.json +1 -1
- package/src/bin/start-keycloak/realmConfig/ParsedRealmJson/ParsedRealmJson.ts +2 -0
- package/src/bin/start-keycloak/realmConfig/prepareRealmConfig.ts +2 -0
- package/src/bin/start-keycloak/start-keycloak.ts +1 -0
package/bin/375.index.js
CHANGED
@@ -582,6 +582,7 @@ const zParsedRealmJson = (() => {
|
|
582
582
|
accountTheme: lib.z.string().optional(),
|
583
583
|
adminTheme: lib.z.string().optional(),
|
584
584
|
emailTheme: lib.z.string().optional(),
|
585
|
+
sslRequired: lib.z.string().optional(),
|
585
586
|
eventsListeners: lib.z.array(lib.z.string()),
|
586
587
|
users: lib.z.array(lib.z.object({
|
587
588
|
id: lib.z.string(),
|
@@ -885,6 +886,7 @@ function prepareRealmConfig(params) {
|
|
885
886
|
parsedRealmJson.eventsListeners.push(name);
|
886
887
|
parsedRealmJson.eventsListeners.sort();
|
887
888
|
}
|
889
|
+
parsedRealmJson.sslRequired = "none";
|
888
890
|
return {
|
889
891
|
realmName: parsedRealmJson.realm,
|
890
892
|
clientName: clientId,
|
@@ -1857,6 +1859,7 @@ async function command(params) {
|
|
1857
1859
|
...(keycloakMajorVersionNumber <= 20
|
1858
1860
|
? [`-e${SPACE_PLACEHOLDER}JAVA_OPTS=-Dkeycloak.profile=preview`]
|
1859
1861
|
: []),
|
1862
|
+
`-e${SPACE_PLACEHOLDER}KC_HOSTNAME_STRICT_HTTPS=false`,
|
1860
1863
|
...[
|
1861
1864
|
...buildContext.themeNames,
|
1862
1865
|
...(external_fs_.existsSync((0,external_path_.join)(buildContext.keycloakifyBuildDirPath, "theme", "account-v1"))
|
package/package.json
CHANGED
@@ -8,6 +8,7 @@ export type ParsedRealmJson = {
|
|
8
8
|
accountTheme?: string;
|
9
9
|
adminTheme?: string;
|
10
10
|
emailTheme?: string;
|
11
|
+
sslRequired?: string;
|
11
12
|
eventsListeners: string[];
|
12
13
|
users: {
|
13
14
|
id: string;
|
@@ -57,6 +58,7 @@ export const zParsedRealmJson = (() => {
|
|
57
58
|
accountTheme: z.string().optional(),
|
58
59
|
adminTheme: z.string().optional(),
|
59
60
|
emailTheme: z.string().optional(),
|
61
|
+
sslRequired: z.string().optional(),
|
60
62
|
eventsListeners: z.array(z.string()),
|
61
63
|
users: z.array(
|
62
64
|
z.object({
|
@@ -537,6 +537,7 @@ export async function command(params: {
|
|
537
537
|
...(keycloakMajorVersionNumber <= 20
|
538
538
|
? [`-e${SPACE_PLACEHOLDER}JAVA_OPTS=-Dkeycloak.profile=preview`]
|
539
539
|
: []),
|
540
|
+
`-e${SPACE_PLACEHOLDER}KC_HOSTNAME_STRICT_HTTPS=false`,
|
540
541
|
...[
|
541
542
|
...buildContext.themeNames,
|
542
543
|
...(fs.existsSync(
|