diff --git a/types/server/requests/user/login.ts b/types/server/requests/user/login.ts index ad6fd62..b18de96 100644 --- a/types/server/requests/user/login.ts +++ b/types/server/requests/user/login.ts @@ -1,4 +1,5 @@ -import type { BaseResponse, UserResponse } from "./base"; +import type { BaseResponse } from "../base"; +import type { UserResponse } from "./base"; interface LoginRequest { identifier: string; // Username or email diff --git a/types/server/requests/user/responses.ts b/types/server/requests/user/responses.ts index 72bbd9c..9ce8232 100644 --- a/types/server/requests/user/responses.ts +++ b/types/server/requests/user/responses.ts @@ -1,4 +1,5 @@ -import type { BaseResponse, UserResponse } from "./base"; +import type { BaseResponse } from "../base"; +import type { UserResponse } from "./base"; interface UserInfoResponse extends BaseResponse { user?: UserResponse; diff --git a/types/server/requests/user/update/info.ts b/types/server/requests/user/update/info.ts index fac594f..3429cfc 100644 --- a/types/server/requests/user/update/info.ts +++ b/types/server/requests/user/update/info.ts @@ -1,4 +1,5 @@ -import type { BaseResponse, UserResponse } from "../base"; +import type { BaseResponse } from "../../base"; +import type { UserResponse } from "../base"; interface UpdateInfoRequest { username?: string; diff --git a/types/server/requests/user/update/password.ts b/types/server/requests/user/update/password.ts index 3cd637a..a83b102 100644 --- a/types/server/requests/user/update/password.ts +++ b/types/server/requests/user/update/password.ts @@ -1,4 +1,5 @@ -import type { BaseResponse, UserResponse } from "../base"; +import type { BaseResponse } from "../../base"; +import type { UserResponse } from "../base"; interface UpdatePasswordRequest { currentPassword: string;