autodoload

This commit is contained in:
john 2025-05-04 00:28:51 +02:00
parent 8cd565c647
commit 62afad71d3
6 changed files with 144 additions and 88 deletions

View file

@ -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