1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

fixed return types of social delete

This commit is contained in:
Fedor Katurov 2022-09-15 21:06:15 +07:00
parent 373dc04a6b
commit be8eaac6c5

View file

@ -8,7 +8,10 @@ export type ApiAuthGetUserResult = { user: IUser };
export type ApiUpdateUserRequest = { export type ApiUpdateUserRequest = {
user: Partial<IUser & { password: string; newPassword: string }>; user: Partial<IUser & { password: string; newPassword: string }>;
}; };
export type ApiUpdateUserResult = { user: IUser; errors: Record<Partial<keyof IUser>, string> }; export type ApiUpdateUserResult = {
user: IUser;
errors: Record<Partial<keyof IUser>, string>;
};
export type ApiAuthGetUserProfileRequest = { username: string }; export type ApiAuthGetUserProfileRequest = { username: string };
export type ApiAuthGetUserProfileResult = { user: IUser }; export type ApiAuthGetUserProfileResult = { user: IUser };
export type ApiAuthGetUpdatesRequest = { export type ApiAuthGetUpdatesRequest = {
@ -25,7 +28,7 @@ export type ApiRestoreCodeRequest = { code: string; password: string };
export type ApiRestoreCodeResult = { token: string; user: IUser }; export type ApiRestoreCodeResult = { token: string; user: IUser };
export type ApiGetSocialsResult = { accounts: ISocialAccount[] }; export type ApiGetSocialsResult = { accounts: ISocialAccount[] };
export type ApiDropSocialRequest = { id: string; provider: string }; export type ApiDropSocialRequest = { id: string; provider: string };
export type ApiDropSocialResult = { accounts: ISocialAccount[] }; export type ApiDropSocialResult = {};
export type ApiAttachSocialRequest = { token: string }; export type ApiAttachSocialRequest = { token: string };
export type ApiAttachSocialResult = { account: ISocialAccount }; export type ApiAttachSocialResult = { account: ISocialAccount };
export type ApiLoginWithSocialRequest = { export type ApiLoginWithSocialRequest = {