fix: regenerated api
This commit is contained in:
parent
a0df0dff00
commit
0b5ea285de
1 changed files with 31 additions and 1 deletions
|
|
@ -2,4 +2,34 @@
|
||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type User = Record<string, any>;
|
export type User = {
|
||||||
|
/**
|
||||||
|
* Unique user ID (primary key)
|
||||||
|
*/
|
||||||
|
user_id: number;
|
||||||
|
/**
|
||||||
|
* ID of the user avatar (references images table)
|
||||||
|
*/
|
||||||
|
avatar_id?: number | null;
|
||||||
|
/**
|
||||||
|
* User email
|
||||||
|
*/
|
||||||
|
mail?: string;
|
||||||
|
/**
|
||||||
|
* Username (alphanumeric + _ or -)
|
||||||
|
*/
|
||||||
|
nickname: string;
|
||||||
|
/**
|
||||||
|
* Display name
|
||||||
|
*/
|
||||||
|
disp_name?: string;
|
||||||
|
/**
|
||||||
|
* User description
|
||||||
|
*/
|
||||||
|
user_desc?: string;
|
||||||
|
/**
|
||||||
|
* Timestamp when the user was created
|
||||||
|
*/
|
||||||
|
creation_date: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue