autodoload
This commit is contained in:
parent
8cd565c647
commit
62afad71d3
6 changed files with 144 additions and 88 deletions
|
@ -112,6 +112,11 @@ export interface paths {
|
|||
export type webhooks = Record<string, never>
|
||||
export interface components {
|
||||
schemas: {
|
||||
AuthoPostAuthorDto: {
|
||||
/** Format: uuid */
|
||||
authorId: string
|
||||
username: string
|
||||
}
|
||||
AuthorPostDto: {
|
||||
/** Format: uuid */
|
||||
postId: string
|
||||
|
@ -119,6 +124,7 @@ export interface components {
|
|||
media: string[]
|
||||
/** Format: date-time */
|
||||
createdAt: string
|
||||
author: components['schemas']['AuthoPostAuthorDto']
|
||||
}
|
||||
CreatePostRequest: {
|
||||
/** Format: uuid */
|
||||
|
@ -142,7 +148,7 @@ export interface components {
|
|||
username: string
|
||||
}
|
||||
PublicPostDto: {
|
||||
authorDto: components['schemas']['PublicPostAuthorDto']
|
||||
author: components['schemas']['PublicPostAuthorDto']
|
||||
/** Format: uuid */
|
||||
postId: string
|
||||
content: string
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue