summary refs log tree commit diff
path: root/src/util/schemas/UserProfileResponse.ts
diff options
context:
space:
mode:
authorPuyodead1 <puyodead@proton.me>2023-03-27 15:51:34 -0400
committerPuyodead1 <puyodead@proton.me>2023-04-13 15:44:39 -0400
commit866eb15d90f35cc789bfacea4b70b904471d8eae (patch)
treee63e01e5860c8190e2829a0919c76c5bd7b535df /src/util/schemas/UserProfileResponse.ts
parentoapi: fix a few response types in auth (diff)
downloadserver-866eb15d90f35cc789bfacea4b70b904471d8eae.tar.xz
clusterfuck
Diffstat (limited to 'src/util/schemas/UserProfileResponse.ts')
-rw-r--r--src/util/schemas/UserProfileResponse.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/schemas/UserProfileResponse.ts b/src/util/schemas/UserProfileResponse.ts

index 4ef6431e..10bbcdbf 100644 --- a/src/util/schemas/UserProfileResponse.ts +++ b/src/util/schemas/UserProfileResponse.ts
@@ -16,10 +16,10 @@ along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { PublicConnectedAccount, PublicUserResponse } from ".."; +import { PublicConnectedAccount, PublicUser } from ".."; export interface UserProfileResponse { - user: PublicUserResponse; + user: PublicUser; connected_accounts: PublicConnectedAccount; premium_guild_since?: Date; premium_since?: Date;