@authup/core-kit
Version:
Package containing global constants, types & interfaces.
20 lines • 447 B
TypeScript
export declare enum IdentityProviderProtocol {
LDAP = "ldap",
OAUTH2 = "oauth2",
OIDC = "oidc"
}
export declare enum IdentityProviderMappingSyncMode {
/**
* Synchronize on initial user login.
*/
ONCE = "once",
/**
* Synchronize on every user login.
*/
ALWAYS = "always",
/**
* Synchronize based on idp configuration.
*/
INHERIT = "inherit"
}
//# sourceMappingURL=constants.d.ts.map