added frontend for social + feed partiali working

This commit is contained in:
2026-05-18 02:25:47 +02:00
parent e1df55df0e
commit 202ce22102
88 changed files with 4236 additions and 737 deletions

View File

@@ -3,6 +3,7 @@
* Do not edit manually.
* OpenAPI spec version: 0.0.0
*/
import type { AuthorMinimal } from "./authorMinimal";
import type { PostContent } from "./postContent";
import type { Tags } from "./tags";
@@ -12,10 +13,14 @@ export interface Post {
readonly created_at: Date;
readonly updated_at: Date;
readonly author: number;
readonly author_detail: AuthorMinimal;
/** @nullable */
hub?: number | null;
/** @nullable */
reply_to?: number | null;
readonly tags: readonly Tags[];
readonly contents: readonly PostContent[];
readonly vote_score: string;
readonly user_vote: string;
readonly reply_count: number;
}