UNPKG

@authup/core-kit

Version:

Package containing global constants, types & interfaces.

29 lines 704 B
import type { Realm } from '../realm'; export interface Client { id: string; active: boolean; built_in: boolean; is_confidential: boolean; name: string; display_name: string | null; description: string | null; secret: string | null; secret_hashed: boolean; secret_encrypted: boolean; redirect_uri: string | null; grant_types: string | null; scope: string | null; /** * Default redirect URL. */ base_url: string | null; /** * URL prepended to relative URLs. */ root_url: string | null; created_at: string; updated_at: string; realm_id: Realm['id']; realm: Realm; } //# sourceMappingURL=entity.d.ts.map