## 后端改动 - 添加 Project.envPresets 字段(JSON 格式) - 移除 Deployment.env 字段,统一使用 envVars - 更新部署 DTO,支持 envVars (Record<string, string>) - pipeline-runner 支持解析并注入 envVars 到环境 - 移除稀疏检出模板和相关环境变量 - 优化代码格式(Biome lint & format) ## 前端改动 - 新增 EnvPresetsEditor 组件(支持单选/多选/输入框类型) - 项目创建/编辑界面集成环境预设编辑器 - 部署界面基于预设动态生成环境变量表单 - 移除稀疏检出表单项 - 项目详情页添加环境变量预设配置 tab - 优化部署界面布局(基本参数 & 环境变量分区) ## 文档 - 添加完整文档目录结构(docs/) - 创建设计文档 design-0005(部署流程重构) - 添加 API 文档、架构设计文档等 ## 数据库 - 执行 prisma db push 同步 schema 变更
178 lines
4.8 KiB
TypeScript
178 lines
4.8 KiB
TypeScript
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
/* eslint-disable */
|
|
// biome-ignore-all lint: generated file
|
|
// @ts-nocheck
|
|
/*
|
|
* WARNING: This is an internal file that is subject to change!
|
|
*
|
|
* 🛑 Under no circumstances should you import this file directly! 🛑
|
|
*
|
|
* All exports from this file are wrapped under a `Prisma` namespace object in the browser.ts file.
|
|
* While this enables partial backward compatibility, it is not part of the stable public API.
|
|
*
|
|
* If you are looking for your Models, Enums, and Input Types, please import them from the respective
|
|
* model files in the `model` directory!
|
|
*/
|
|
|
|
import * as runtime from '@prisma/client/runtime/index-browser';
|
|
|
|
export type * from '../models.ts';
|
|
export type * from './prismaNamespace.ts';
|
|
|
|
export const Decimal = runtime.Decimal;
|
|
|
|
export const NullTypes = {
|
|
DbNull: runtime.NullTypes.DbNull as new (
|
|
secret: never,
|
|
) => typeof runtime.DbNull,
|
|
JsonNull: runtime.NullTypes.JsonNull as new (
|
|
secret: never,
|
|
) => typeof runtime.JsonNull,
|
|
AnyNull: runtime.NullTypes.AnyNull as new (
|
|
secret: never,
|
|
) => typeof runtime.AnyNull,
|
|
};
|
|
/**
|
|
* Helper for filtering JSON entries that have `null` on the database (empty on the db)
|
|
*
|
|
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
*/
|
|
export const DbNull = runtime.DbNull;
|
|
|
|
/**
|
|
* Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
|
|
*
|
|
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
*/
|
|
export const JsonNull = runtime.JsonNull;
|
|
|
|
/**
|
|
* Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
|
|
*
|
|
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
|
|
*/
|
|
export const AnyNull = runtime.AnyNull;
|
|
|
|
export const ModelName = {
|
|
Project: 'Project',
|
|
User: 'User',
|
|
Pipeline: 'Pipeline',
|
|
Step: 'Step',
|
|
Deployment: 'Deployment',
|
|
} as const;
|
|
|
|
export type ModelName = (typeof ModelName)[keyof typeof ModelName];
|
|
|
|
/*
|
|
* Enums
|
|
*/
|
|
|
|
export const TransactionIsolationLevel = {
|
|
Serializable: 'Serializable',
|
|
} as const;
|
|
|
|
export type TransactionIsolationLevel =
|
|
(typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel];
|
|
|
|
export const ProjectScalarFieldEnum = {
|
|
id: 'id',
|
|
name: 'name',
|
|
description: 'description',
|
|
repository: 'repository',
|
|
projectDir: 'projectDir',
|
|
envPresets: 'envPresets',
|
|
valid: 'valid',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt',
|
|
createdBy: 'createdBy',
|
|
updatedBy: 'updatedBy',
|
|
} as const;
|
|
|
|
export type ProjectScalarFieldEnum =
|
|
(typeof ProjectScalarFieldEnum)[keyof typeof ProjectScalarFieldEnum];
|
|
|
|
export const UserScalarFieldEnum = {
|
|
id: 'id',
|
|
username: 'username',
|
|
login: 'login',
|
|
email: 'email',
|
|
avatar_url: 'avatar_url',
|
|
active: 'active',
|
|
valid: 'valid',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt',
|
|
createdBy: 'createdBy',
|
|
updatedBy: 'updatedBy',
|
|
} as const;
|
|
|
|
export type UserScalarFieldEnum =
|
|
(typeof UserScalarFieldEnum)[keyof typeof UserScalarFieldEnum];
|
|
|
|
export const PipelineScalarFieldEnum = {
|
|
id: 'id',
|
|
name: 'name',
|
|
description: 'description',
|
|
valid: 'valid',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt',
|
|
createdBy: 'createdBy',
|
|
updatedBy: 'updatedBy',
|
|
projectId: 'projectId',
|
|
} as const;
|
|
|
|
export type PipelineScalarFieldEnum =
|
|
(typeof PipelineScalarFieldEnum)[keyof typeof PipelineScalarFieldEnum];
|
|
|
|
export const StepScalarFieldEnum = {
|
|
id: 'id',
|
|
name: 'name',
|
|
order: 'order',
|
|
script: 'script',
|
|
valid: 'valid',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt',
|
|
createdBy: 'createdBy',
|
|
updatedBy: 'updatedBy',
|
|
pipelineId: 'pipelineId',
|
|
} as const;
|
|
|
|
export type StepScalarFieldEnum =
|
|
(typeof StepScalarFieldEnum)[keyof typeof StepScalarFieldEnum];
|
|
|
|
export const DeploymentScalarFieldEnum = {
|
|
id: 'id',
|
|
branch: 'branch',
|
|
envVars: 'envVars',
|
|
status: 'status',
|
|
commitHash: 'commitHash',
|
|
commitMessage: 'commitMessage',
|
|
buildLog: 'buildLog',
|
|
sparseCheckoutPaths: 'sparseCheckoutPaths',
|
|
startedAt: 'startedAt',
|
|
finishedAt: 'finishedAt',
|
|
valid: 'valid',
|
|
createdAt: 'createdAt',
|
|
updatedAt: 'updatedAt',
|
|
createdBy: 'createdBy',
|
|
updatedBy: 'updatedBy',
|
|
projectId: 'projectId',
|
|
pipelineId: 'pipelineId',
|
|
} as const;
|
|
|
|
export type DeploymentScalarFieldEnum =
|
|
(typeof DeploymentScalarFieldEnum)[keyof typeof DeploymentScalarFieldEnum];
|
|
|
|
export const SortOrder = {
|
|
asc: 'asc',
|
|
desc: 'desc',
|
|
} as const;
|
|
|
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
|
|
export const NullsOrder = {
|
|
first: 'first',
|
|
last: 'last',
|
|
} as const;
|
|
|
|
export type NullsOrder = (typeof NullsOrder)[keyof typeof NullsOrder];
|