feat: invite code

This commit is contained in:
2025-03-05 18:38:56 +03:00
parent be666c5158
commit 6cc61dbf08
7 changed files with 140 additions and 47 deletions

View File

@@ -8,5 +8,6 @@ export type AuthLoginRequest = {
hash: string;
id: number;
photo_url?: (string | null);
invite_code?: (string | null);
};

View File

@@ -0,0 +1,10 @@
/* generated using openapi-typescript-codegen -- do not edit */
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type GenerateInviteCodeResponse = {
ok: boolean;
message: string;
inviteCode?: (string | null);
};