buttons
This commit is contained in:
parent
abd7c2f073
commit
384da1e832
18 changed files with 150 additions and 116 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue