feat: 接入真实登录与成员权限

- auth/members/messages: 新增超级管理员登录、成员权限和密码消息流程
- agent-config/agent: 支持服务端保存 Agent 配置并取消未配置 mock 成功结果
- projects/deploy-runs/settings: 按当前用户权限保护真实接口
- prisma: 新增用户、项目权限和平台消息表结构
This commit is contained in:
湛兮
2026-06-12 00:38:23 +08:00
parent cf1bebf625
commit bc3aa31289
83 changed files with 3844 additions and 378 deletions
+8 -3
View File
@@ -17,11 +17,13 @@ export const createDeployRunSchema = z.object({
projectKey: z.string().trim().min(1).max(80),
environment: z.enum(['test', 'production']),
ref: z.string().trim().min(1).max(200),
operator: z.string().trim().min(1).max(120),
operator: optionalTrimmedString(120),
remark: optionalTrimmedString(500),
idempotencyKey: optionalTrimmedString(260),
});
export type CreateDeployRunRequestInput = z.infer<typeof createDeployRunSchema>;
export class CreateDeployRunDto {
@ApiProperty({ example: 'access-manage' })
projectKey!: string;
@@ -32,8 +34,11 @@ export class CreateDeployRunDto {
@ApiProperty({ example: 'develop' })
ref!: string;
@ApiProperty({ example: 'operator@example.com' })
operator!: string;
@ApiPropertyOptional({
example: 'operator@example.com',
description: '兼容旧前端字段;后端会优先使用当前登录账号',
})
operator?: string;
@ApiPropertyOptional({ example: 'Manual test deploy before release.' })
remark?: string;