export type App = { id: number; name: string; display: string; enabled: boolean; url: string; abilities: string[]; activity_support: string[]; details: { app_id: string; authorized: boolean; }; updated: Date; created: Date; }; export type AppConfig = { provider: string; type: string; name: string; url: string; updated: Date; created: Date; };