- 在部署DTO中添加sparseCheckoutPaths字段支持稀疏检出路径 - 数据模型Deployment新增稀疏检出路径字段及相关数据库映射 - 部署创建时支持设置稀疏检出路径字段 - 部署重试接口实现,支持复制原始部署记录并加入执行队列 - 新增流水线模板初始化与基于模板创建流水线接口 - 优化应用初始化流程,确保执行队列和流水线模板正确加载 - 添加启动日志,提示执行队列初始化完成
175 lines
4.6 KiB
TypeScript
175 lines
4.6 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',
|
|
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',
|
|
env: 'env',
|
|
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]
|
|
|