We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The KeycloakConfig typedef is defined here:
KeycloakConfig
keycloak-nodejs-connect/keycloak.d.ts
Line 20 in cc4bb72
However in Keycloak 18, the config JSON is being generated as such:
Providing the public-client parameter to the KeycloakConfig object causes an error. Suggest updating the typedef to:
public-client
interface KeycloakConfig { 'confidential-port': string|number 'auth-server-url': string 'resource': string 'ssl-required': string 'bearer-only'?: boolean realm: string 'public-client': boolean; }
18.0.2
Expectation is that KeycloakConfig contains all attributes that can be generated by the Keycloak server
KeycloakConfig is missing a parameter
Try to add the public-client parameter to a KeycloakConfig results in a compilation error
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
The
KeycloakConfig
typedef is defined here:keycloak-nodejs-connect/keycloak.d.ts
Line 20 in cc4bb72
However in Keycloak 18, the config JSON is being generated as such:
Providing the
public-client
parameter to theKeycloakConfig
object causes an error. Suggest updating the typedef to:Version
18.0.2
Expected behavior
Expectation is that KeycloakConfig contains all attributes that can be generated by the Keycloak server
Actual behavior
KeycloakConfig is missing a parameter
How to Reproduce?
Try to add the
public-client
parameter to a KeycloakConfig results in a compilation errorAnything else?
No response
The text was updated successfully, but these errors were encountered: