feat: create api service PAI

This commit is contained in:
2025-05-31 17:31:33 +02:00
parent 63437d6dc7
commit e92dde20ca
3 changed files with 63 additions and 3 deletions

View File

@ -21,3 +21,8 @@ export interface ApiService {
updated_at: string;
is_active: boolean;
}
export interface ApiServiceCredentials {
client_id: string;
client_secret: string;
}