UNPKG

@authup/core-kit

Version:

Package containing global constants, types & interfaces.

20 lines 630 B
import type { Realm } from '../realm'; import type { User } from '../user'; import type { IdentityProvider } from '../identity-provider'; export interface IdentityProviderAccount { id: string; provider_user_id: string; provider_user_name: string; provider_user_email: string; created_at: Date; updated_at: Date; user_id: string; user: User; user_realm_id: Realm['id'] | null; user_realm: Realm | null; provider_id: IdentityProvider['id']; provider: IdentityProvider; provider_realm_id: Realm['id'] | null; provider_realm: Realm | null; } //# sourceMappingURL=entity.d.ts.map