Area restrita - Questionario

This commit is contained in:
2026-06-08 23:50:59 -03:00
parent f2e2400637
commit ef968f10ae
6972 changed files with 23454 additions and 2267883 deletions
+18
View File
@@ -0,0 +1,18 @@
export type TokenResponse = {
access_token: string;
token_type: string;
expires_in: number;
refresh_token?: string;
scope: string;
};
export type SessionPayload = {
unionId: string;
clientId: string;
};
export type UserProfile = {
user_id: string;
name: string;
avatar_url: string;
};