@authup/core-kit
Version:
Package containing global constants, types & interfaces.
14 lines • 424 B
TypeScript
import type { IdentityProvider } from '../identity-provider';
import type { Realm } from '../realm';
export interface IdentityProviderAttribute {
id: string;
name: string;
value: string | null;
provider_id: IdentityProvider['id'];
provider: IdentityProvider;
realm_id: Realm['id'] | null;
realm: Realm | null;
created_at: string;
updated_at: string;
}
//# sourceMappingURL=entity.d.ts.map