gg
Deploy Iddaai Frontend / build-and-deploy (push) Failing after 34s

This commit is contained in:
2026-05-10 22:59:27 +03:00
parent 6dadc5f613
commit 5c8619b282
161 changed files with 6708 additions and 3435 deletions
+9
View File
@@ -16,6 +16,14 @@ export interface ChangePasswordDto {
newPassword: string;
}
export interface UsageLimitDto {
analysisCount: number;
couponCount: number;
maxAnalyses: number;
maxCoupons: number;
lastResetDate: string;
}
export interface UserResponseDto {
id: string;
email: string;
@@ -25,6 +33,7 @@ export interface UserResponseDto {
isActive: boolean;
createdAt: string;
updatedAt: string;
usageLimit?: UsageLimitDto;
}
const getMe = () => {