feat: API service type
This commit is contained in:
@ -9,3 +9,15 @@ export interface UserProfile {
|
|||||||
updated_at: string;
|
updated_at: string;
|
||||||
created_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;
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user