From 800e1afbe58e3c120135bad71850f2afe182c26e Mon Sep 17 00:00:00 2001 From: LandaMm Date: Fri, 30 May 2025 21:28:06 +0200 Subject: [PATCH] feat: API service type --- web/src/types/index.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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; +}