added frontend for social + feed partiali working
This commit is contained in:
@@ -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 PatchedPost {
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user