2023-03-20 15:57:16 +01:00
|
|
|
import type { MeUser } from "./entities";
|
|
|
|
|
|
|
|
|
|
export interface SignupResponse {
|
|
|
|
|
user: MeUser;
|
|
|
|
|
token: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface MetaResponse {
|
|
|
|
|
git_repository: string;
|
|
|
|
|
git_commit: string;
|
|
|
|
|
users: number;
|
|
|
|
|
members: number;
|
|
|
|
|
require_invite: boolean;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface UrlsResponse {
|
|
|
|
|
discord: string;
|
2023-04-18 03:49:37 +02:00
|
|
|
tumblr: string;
|
2023-04-18 22:52:58 +02:00
|
|
|
google: string;
|
2023-03-20 15:57:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface ExportResponse {
|
|
|
|
|
path: string;
|
|
|
|
|
created_at: string;
|
|
|
|
|
}
|