From 83b71f62cf7ed7e2c86450c7e35dd0a46ace2b98 Mon Sep 17 00:00:00 2001 From: creations Date: Tue, 10 Jun 2025 16:38:44 -0400 Subject: [PATCH] fix types after i moved some --- types/server/requests/user/login.ts | 3 ++- types/server/requests/user/responses.ts | 3 ++- types/server/requests/user/update/info.ts | 3 ++- types/server/requests/user/update/password.ts | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) 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;