import { Locale, LocaleCode } from '../app-i18n'; export type NewUser = { email: string; firstname: string; lastname: string; password: string; recaptcha: string | null; }; export type ImportMapInfo = { title: string; description?: string; contentType?: string; content?: ArrayBuffer | null | string; }; export type Label = { id: number; title: string; color: string; iconName: string; }; export type Role = 'owner' | 'editor' | 'viewer'; export type MapInfo = { id: number; starred: boolean; title: string; labels: number[]; createdBy: string; creationTime: string; lastModificationBy: string; lastModificationTime: string; description: string; isPublic: boolean; role: Role; }; export type ChangeHistory = { id: number; lastModificationBy: string; lastModificationTime: string; }; export type BasicMapInfo = { title: string; description?: string; }; export type FieldError = { id: string; msg: string; }; export type ErrorInfo = { msg?: string; fields?: Map; }; export type AccountInfo = { firstname: string; lastname: string; email: string; locale: Locale; }; export type Permission = { name?: string; email: string; role: Role; }; interface Client { deleteAccount(): Promise; importMap(model: ImportMapInfo): Promise; createMap(map: BasicMapInfo): Promise; deleteMaps(ids: number[]): Promise; deleteMap(id: number): Promise; renameMap(id: number, basicInfo: BasicMapInfo): Promise; fetchAllMaps(): Promise; fetchMapPermissions(id: number): Promise; addMapPermissions(id: number, message: string, permissions: Permission[]): Promise; deleteMapPermission(id: number, email: string): Promise; duplicateMap(id: number, basicInfo: BasicMapInfo): Promise; updateAccountLanguage(locale: LocaleCode): Promise; updateAccountPassword(pasword: string): Promise; updateAccountInfo(firstname: string, lastname: string): Promise; updateStarred(id: number, starred: boolean): Promise; updateMapToPublic(id: number, isPublic: boolean): Promise; fetchLabels(): Promise; deleteLabel(id: number): Promise; fetchAccountInfo(): Promise; registerNewUser(user: NewUser): Promise; resetPassword(email: string): Promise; fetchHistory(id: number): Promise; revertHistory(id: number, cid: number): Promise; } export default Client;