first commit

This commit is contained in:
dwindown
2025-10-09 12:52:41 +07:00
commit 0da6071eb3
205 changed files with 30980 additions and 0 deletions

16
apps/api/dist/users/users.service.d.ts vendored Normal file
View File

@@ -0,0 +1,16 @@
import { PrismaService } from '../prisma/prisma.service';
export declare class UsersService {
private prisma;
constructor(prisma: PrismaService);
me(): Promise<{
id: string;
email: string | null;
createdAt: Date;
updatedAt: Date;
status: string;
name: string | null;
avatarUrl: string | null;
defaultCurrency: string | null;
timeZone: string | null;
} | null>;
}