VORKOUT-6 #11

Merged
vlad.dev merged 15 commits from VORKOUT-6 into master 2025-06-16 16:34:25 +05:00
8 changed files with 872 additions and 2 deletions
Showing only changes of commit 9d2aef5671 - Show all commits

4
client/src/types/auth.ts Normal file
View File

@@ -0,0 +1,4 @@
import { components } from './openapi-types';
export type Auth = components['schemas']['Auth'];
export type Access = components['schemas']['Access'];

3
client/src/types/user.ts Normal file
View File

@@ -0,0 +1,3 @@
import { components } from "./openapi-types"
export type User = components["schemas"]["User"];