mirror of
https://github.com/teamhanko/hanko.git
synced 2025-11-01 22:28:27 +08:00
feat: add third party integrations
add third party integrations
This commit is contained in:
@ -12,6 +12,7 @@ import { PasswordClient } from "./lib/client/PasswordClient";
|
||||
import { UserClient } from "./lib/client/UserClient";
|
||||
import { WebauthnClient } from "./lib/client/WebauthnClient";
|
||||
import { EmailClient } from "./lib/client/EmailClient";
|
||||
import { ThirdPartyClient } from "./lib/client/ThirdPartyClient";
|
||||
|
||||
export {
|
||||
ConfigClient,
|
||||
@ -20,6 +21,7 @@ export {
|
||||
PasswordClient,
|
||||
PasscodeClient,
|
||||
EmailClient,
|
||||
ThirdPartyClient,
|
||||
};
|
||||
|
||||
// Utils
|
||||
@ -42,6 +44,7 @@ import {
|
||||
WebauthnCredential,
|
||||
WebauthnCredentials,
|
||||
Passcode,
|
||||
Identity,
|
||||
} from "./lib/Dto";
|
||||
|
||||
export type {
|
||||
@ -56,6 +59,7 @@ export type {
|
||||
WebauthnCredential,
|
||||
WebauthnCredentials,
|
||||
Passcode,
|
||||
Identity,
|
||||
};
|
||||
|
||||
// Errors
|
||||
@ -73,6 +77,7 @@ import {
|
||||
PasscodeExpiredError,
|
||||
RequestTimeoutError,
|
||||
TechnicalError,
|
||||
ThirdPartyError,
|
||||
TooManyRequestsError,
|
||||
UnauthorizedError,
|
||||
UserVerificationError,
|
||||
@ -92,6 +97,7 @@ export {
|
||||
PasscodeExpiredError,
|
||||
RequestTimeoutError,
|
||||
TechnicalError,
|
||||
ThirdPartyError,
|
||||
TooManyRequestsError,
|
||||
UnauthorizedError,
|
||||
UserVerificationError,
|
||||
|
||||
Reference in New Issue
Block a user