feat(release): v3.4.13 experience optimizations across admin, mini-user, and H5 login
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -11,6 +11,10 @@ export class SupportTicketListQueryDto {
|
||||
@IsIn(['PENDING_REVIEW', 'REJECTED', 'DEVELOPING', 'TESTING', 'PASSED'])
|
||||
status?: string;
|
||||
|
||||
@IsOptional()
|
||||
@IsIn(['LOW', 'NORMAL', 'HIGH', 'URGENT'])
|
||||
priority?: string;
|
||||
|
||||
@IsOptional()
|
||||
@Type(() => Number)
|
||||
@IsInt()
|
||||
@@ -46,6 +50,10 @@ export class CreateSupportTicketDto {
|
||||
@IsArray()
|
||||
@IsString({ each: true })
|
||||
attachmentUrls?: string[];
|
||||
|
||||
@IsOptional()
|
||||
@IsIn(['LOW', 'NORMAL', 'HIGH', 'URGENT'])
|
||||
priority?: string;
|
||||
}
|
||||
|
||||
export class UpdateSupportTicketDto {
|
||||
@@ -72,6 +80,10 @@ export class UpdateSupportTicketDto {
|
||||
@IsArray()
|
||||
@IsString({ each: true })
|
||||
attachmentUrls?: string[];
|
||||
|
||||
@IsOptional()
|
||||
@IsIn(['LOW', 'NORMAL', 'HIGH', 'URGENT'])
|
||||
priority?: string;
|
||||
}
|
||||
|
||||
export class BatchUpdateSupportTicketStatusDto {
|
||||
|
||||
Reference in New Issue
Block a user