updated friend field to be optional (frontend bug fix, not that I have

no friends)
This commit is contained in:
2026-02-17 21:37:15 +08:00
parent 8578ba3376
commit f1d03fc96a
4 changed files with 31 additions and 24 deletions

View File

@@ -1,4 +1,4 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { UserBasicDto } from "./UserBasicDto";
export type FriendshipResponseDto = { id: string, friend: UserBasicDto, createdAt: string, };
export type FriendshipResponseDto = { id: string, friend: UserBasicDto | null, createdAt: string, };