feat: API service type

This commit is contained in:
2025-05-30 21:28:06 +02:00
parent 8abc4396ac
commit 800e1afbe5

View File

@ -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;
}