fix: optional tg user fields
This commit is contained in:
@@ -4,8 +4,8 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type TgUserSchema = {
|
export type TgUserSchema = {
|
||||||
id: number;
|
id: number;
|
||||||
firstName: string;
|
firstName: (string | null);
|
||||||
lastName: string;
|
lastName: (string | null);
|
||||||
username: string;
|
username: (string | null);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user