feat: User services

This commit is contained in:
sauravdhakal12
2026-02-20 15:53:45 +05:45
parent 9561693cb4
commit f6bce78aee
39 changed files with 6509 additions and 66 deletions

View File

@@ -1,10 +1,10 @@
import { Prisma } from 'prisma/generated/prisma/client';
import { AuthPayload } from 'src/auth/types';
import { JwtPayload } from 'src/auth/types';
export interface RequestContext {
requestId: string;
correlationId?: string;
headers: Record<string, string>;
user?: AuthPayload;
user?: JwtPayload;
tx?: Prisma.TransactionClient;
}