change flow

This commit is contained in:
2026-07-03 12:25:44 +03:30
parent 1f06b378e6
commit 713734b842
10 changed files with 287 additions and 20 deletions
@@ -0,0 +1,17 @@
import { ApiProperty } from '@nestjs/swagger';
export class RequestSalonOtpResponseDto {
@ApiProperty({ example: 'OTP sent' })
message: string;
@ApiProperty({
description: 'Whether a salon-owner account exists for this mobile',
})
isRegistered: boolean;
@ApiProperty({
description: 'OTP validity window in seconds',
example: 900,
})
expiresInSeconds: number;
}