This commit is contained in:
john 2025-05-18 13:41:08 +02:00
parent abd7c2f073
commit 384da1e832
18 changed files with 150 additions and 116 deletions

View file

@ -275,6 +275,7 @@ export interface components {
authorId: string
content: string
media: components['schemas']['CreatePostRequestMedia'][]
isPublic: boolean | null
}
CreatePostRequestMedia: {
/** Format: uuid */
@ -292,7 +293,7 @@ export interface components {
postId: string
}
GetAllPublicPostsResponse: {
posts: components['schemas']['PublicPostDto'][]
posts: components['schemas']['PostDto'][]
/** Format: uuid */
next: string | null
}
@ -305,21 +306,21 @@ export interface components {
userId: string
username: string
}
PublicPostAuthorDto: {
PostAuthorDto: {
/** Format: uuid */
authorId: string
username: string
}
PublicPostDto: {
author: components['schemas']['PublicPostAuthorDto']
PostDto: {
author: components['schemas']['PostAuthorDto']
/** Format: uuid */
postId: string
content: string
media: components['schemas']['PublicPostMediaDto'][]
media: components['schemas']['PostMediaDto'][]
/** Format: date-time */
createdAt: string
}
PublicPostMediaDto: {
PostMediaDto: {
/** Format: uri */
url: string
/** Format: int32 */