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

20 lines
566 B
TypeScript

/**
* https://www.keycloak.org/docs-api/11.0/rest-api/index.html#_identityproviderrepresentation
*/
export default interface IdentityProviderRepresentation {
addReadTokenRoleOnCreate?: boolean;
alias?: string;
config?: Record<string, any>;
displayName?: string;
enabled?: boolean;
firstBrokerLoginFlowAlias?: string;
internalId?: string;
linkOnly?: boolean;
hideOnLogin?: boolean;
postBrokerLoginFlowAlias?: string;
providerId?: string;
storeToken?: boolean;
trustEmail?: boolean;
organizationId?: string;
}