diff --git a/web/src/types/index.ts b/web/src/types/index.ts index 7192632..cb81811 100644 --- a/web/src/types/index.ts +++ b/web/src/types/index.ts @@ -9,3 +9,15 @@ export interface UserProfile { updated_at: string; created_at: string; } + +export interface ApiService { + id: string; + client_id: string; + name: string; + redirect_uris: string[]; + scopes: string[]; + grant_types: string[]; + created_at: string; + updated_at: string; + is_active: boolean; +}