gukgjzkgjhgjh

This commit is contained in:
2026-04-20 00:04:15 +02:00
parent 5280a87e8b
commit 659999f4fd
409 changed files with 19957 additions and 5176 deletions

View File

@@ -0,0 +1,25 @@
/**
* Generated by orval v8.8.0 🍺
* Do not edit manually.
* OpenAPI spec version: 0.0.0
*/
import type { ChatTypeEnum } from "./chatTypeEnum";
export interface Chat {
readonly id: number;
chat_type?: ChatTypeEnum;
/** @nullable */
readonly owner: number | null;
/** @maxLength 255 */
name?: string;
/** @nullable */
icon?: string | null;
/** @nullable */
banner?: string | null;
members?: number[];
moderators?: number[];
/** @nullable */
hub?: number | null;
readonly created_at: Date;
readonly updated_at: Date;
}