Files
hurole d22fdc9618 feat: 实现环境变量预设功能 & 移除稀疏检出
## 后端改动
- 添加 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 变更
2026-01-03 22:59:20 +08:00

1636 lines
45 KiB
TypeScript

/* !!! This is code generated by Prisma. Do not edit directly. !!! */
/* eslint-disable */
// biome-ignore-all lint: generated file
// @ts-nocheck
/*
* This file exports the `User` model and its related types.
*
* 🟢 You can import this file directly.
*/
import type * as runtime from '@prisma/client/runtime/client';
import type * as $Enums from '../enums.ts';
import type * as Prisma from '../internal/prismaNamespace.ts';
/**
* Model User
*
*/
export type UserModel =
runtime.Types.Result.DefaultSelection<Prisma.$UserPayload>;
export type AggregateUser = {
_count: UserCountAggregateOutputType | null;
_avg: UserAvgAggregateOutputType | null;
_sum: UserSumAggregateOutputType | null;
_min: UserMinAggregateOutputType | null;
_max: UserMaxAggregateOutputType | null;
};
export type UserAvgAggregateOutputType = {
id: number | null;
valid: number | null;
};
export type UserSumAggregateOutputType = {
id: number | null;
valid: number | null;
};
export type UserMinAggregateOutputType = {
id: number | null;
username: string | null;
login: string | null;
email: string | null;
avatar_url: string | null;
active: boolean | null;
valid: number | null;
createdAt: Date | null;
updatedAt: Date | null;
createdBy: string | null;
updatedBy: string | null;
};
export type UserMaxAggregateOutputType = {
id: number | null;
username: string | null;
login: string | null;
email: string | null;
avatar_url: string | null;
active: boolean | null;
valid: number | null;
createdAt: Date | null;
updatedAt: Date | null;
createdBy: string | null;
updatedBy: string | null;
};
export type UserCountAggregateOutputType = {
id: number;
username: number;
login: number;
email: number;
avatar_url: number;
active: number;
valid: number;
createdAt: number;
updatedAt: number;
createdBy: number;
updatedBy: number;
_all: number;
};
export type UserAvgAggregateInputType = {
id?: true;
valid?: true;
};
export type UserSumAggregateInputType = {
id?: true;
valid?: true;
};
export type UserMinAggregateInputType = {
id?: true;
username?: true;
login?: true;
email?: true;
avatar_url?: true;
active?: true;
valid?: true;
createdAt?: true;
updatedAt?: true;
createdBy?: true;
updatedBy?: true;
};
export type UserMaxAggregateInputType = {
id?: true;
username?: true;
login?: true;
email?: true;
avatar_url?: true;
active?: true;
valid?: true;
createdAt?: true;
updatedAt?: true;
createdBy?: true;
updatedBy?: true;
};
export type UserCountAggregateInputType = {
id?: true;
username?: true;
login?: true;
email?: true;
avatar_url?: true;
active?: true;
valid?: true;
createdAt?: true;
updatedAt?: true;
createdBy?: true;
updatedBy?: true;
_all?: true;
};
export type UserAggregateArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Filter which User to aggregate.
*/
where?: Prisma.UserWhereInput;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
*
* Determine the order of Users to fetch.
*/
orderBy?:
| Prisma.UserOrderByWithRelationInput
| Prisma.UserOrderByWithRelationInput[];
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
*
* Sets the start position
*/
cursor?: Prisma.UserWhereUniqueInput;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Take `±n` Users from the position of the cursor.
*/
take?: number;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Skip the first `n` Users.
*/
skip?: number;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
*
* Count returned Users
**/
_count?: true | UserCountAggregateInputType;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
*
* Select which fields to average
**/
_avg?: UserAvgAggregateInputType;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
*
* Select which fields to sum
**/
_sum?: UserSumAggregateInputType;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
*
* Select which fields to find the minimum value
**/
_min?: UserMinAggregateInputType;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
*
* Select which fields to find the maximum value
**/
_max?: UserMaxAggregateInputType;
};
export type GetUserAggregateType<T extends UserAggregateArgs> = {
[P in keyof T & keyof AggregateUser]: P extends '_count' | 'count'
? T[P] extends true
? number
: Prisma.GetScalarType<T[P], AggregateUser[P]>
: Prisma.GetScalarType<T[P], AggregateUser[P]>;
};
export type UserGroupByArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
where?: Prisma.UserWhereInput;
orderBy?:
| Prisma.UserOrderByWithAggregationInput
| Prisma.UserOrderByWithAggregationInput[];
by: Prisma.UserScalarFieldEnum[] | Prisma.UserScalarFieldEnum;
having?: Prisma.UserScalarWhereWithAggregatesInput;
take?: number;
skip?: number;
_count?: UserCountAggregateInputType | true;
_avg?: UserAvgAggregateInputType;
_sum?: UserSumAggregateInputType;
_min?: UserMinAggregateInputType;
_max?: UserMaxAggregateInputType;
};
export type UserGroupByOutputType = {
id: number;
username: string;
login: string;
email: string;
avatar_url: string | null;
active: boolean;
valid: number;
createdAt: Date;
updatedAt: Date;
createdBy: string;
updatedBy: string;
_count: UserCountAggregateOutputType | null;
_avg: UserAvgAggregateOutputType | null;
_sum: UserSumAggregateOutputType | null;
_min: UserMinAggregateOutputType | null;
_max: UserMaxAggregateOutputType | null;
};
type GetUserGroupByPayload<T extends UserGroupByArgs> = Prisma.PrismaPromise<
Array<
Prisma.PickEnumerable<UserGroupByOutputType, T['by']> & {
[P in keyof T & keyof UserGroupByOutputType]: P extends '_count'
? T[P] extends boolean
? number
: Prisma.GetScalarType<T[P], UserGroupByOutputType[P]>
: Prisma.GetScalarType<T[P], UserGroupByOutputType[P]>;
}
>
>;
export type UserWhereInput = {
AND?: Prisma.UserWhereInput | Prisma.UserWhereInput[];
OR?: Prisma.UserWhereInput[];
NOT?: Prisma.UserWhereInput | Prisma.UserWhereInput[];
id?: Prisma.IntFilter<'User'> | number;
username?: Prisma.StringFilter<'User'> | string;
login?: Prisma.StringFilter<'User'> | string;
email?: Prisma.StringFilter<'User'> | string;
avatar_url?: Prisma.StringNullableFilter<'User'> | string | null;
active?: Prisma.BoolFilter<'User'> | boolean;
valid?: Prisma.IntFilter<'User'> | number;
createdAt?: Prisma.DateTimeFilter<'User'> | Date | string;
updatedAt?: Prisma.DateTimeFilter<'User'> | Date | string;
createdBy?: Prisma.StringFilter<'User'> | string;
updatedBy?: Prisma.StringFilter<'User'> | string;
};
export type UserOrderByWithRelationInput = {
id?: Prisma.SortOrder;
username?: Prisma.SortOrder;
login?: Prisma.SortOrder;
email?: Prisma.SortOrder;
avatar_url?: Prisma.SortOrderInput | Prisma.SortOrder;
active?: Prisma.SortOrder;
valid?: Prisma.SortOrder;
createdAt?: Prisma.SortOrder;
updatedAt?: Prisma.SortOrder;
createdBy?: Prisma.SortOrder;
updatedBy?: Prisma.SortOrder;
};
export type UserWhereUniqueInput = Prisma.AtLeast<
{
id?: number;
AND?: Prisma.UserWhereInput | Prisma.UserWhereInput[];
OR?: Prisma.UserWhereInput[];
NOT?: Prisma.UserWhereInput | Prisma.UserWhereInput[];
username?: Prisma.StringFilter<'User'> | string;
login?: Prisma.StringFilter<'User'> | string;
email?: Prisma.StringFilter<'User'> | string;
avatar_url?: Prisma.StringNullableFilter<'User'> | string | null;
active?: Prisma.BoolFilter<'User'> | boolean;
valid?: Prisma.IntFilter<'User'> | number;
createdAt?: Prisma.DateTimeFilter<'User'> | Date | string;
updatedAt?: Prisma.DateTimeFilter<'User'> | Date | string;
createdBy?: Prisma.StringFilter<'User'> | string;
updatedBy?: Prisma.StringFilter<'User'> | string;
},
'id'
>;
export type UserOrderByWithAggregationInput = {
id?: Prisma.SortOrder;
username?: Prisma.SortOrder;
login?: Prisma.SortOrder;
email?: Prisma.SortOrder;
avatar_url?: Prisma.SortOrderInput | Prisma.SortOrder;
active?: Prisma.SortOrder;
valid?: Prisma.SortOrder;
createdAt?: Prisma.SortOrder;
updatedAt?: Prisma.SortOrder;
createdBy?: Prisma.SortOrder;
updatedBy?: Prisma.SortOrder;
_count?: Prisma.UserCountOrderByAggregateInput;
_avg?: Prisma.UserAvgOrderByAggregateInput;
_max?: Prisma.UserMaxOrderByAggregateInput;
_min?: Prisma.UserMinOrderByAggregateInput;
_sum?: Prisma.UserSumOrderByAggregateInput;
};
export type UserScalarWhereWithAggregatesInput = {
AND?:
| Prisma.UserScalarWhereWithAggregatesInput
| Prisma.UserScalarWhereWithAggregatesInput[];
OR?: Prisma.UserScalarWhereWithAggregatesInput[];
NOT?:
| Prisma.UserScalarWhereWithAggregatesInput
| Prisma.UserScalarWhereWithAggregatesInput[];
id?: Prisma.IntWithAggregatesFilter<'User'> | number;
username?: Prisma.StringWithAggregatesFilter<'User'> | string;
login?: Prisma.StringWithAggregatesFilter<'User'> | string;
email?: Prisma.StringWithAggregatesFilter<'User'> | string;
avatar_url?:
| Prisma.StringNullableWithAggregatesFilter<'User'>
| string
| null;
active?: Prisma.BoolWithAggregatesFilter<'User'> | boolean;
valid?: Prisma.IntWithAggregatesFilter<'User'> | number;
createdAt?: Prisma.DateTimeWithAggregatesFilter<'User'> | Date | string;
updatedAt?: Prisma.DateTimeWithAggregatesFilter<'User'> | Date | string;
createdBy?: Prisma.StringWithAggregatesFilter<'User'> | string;
updatedBy?: Prisma.StringWithAggregatesFilter<'User'> | string;
};
export type UserCreateInput = {
username: string;
login: string;
email: string;
avatar_url?: string | null;
active?: boolean;
valid?: number;
createdAt?: Date | string;
updatedAt?: Date | string;
createdBy?: string;
updatedBy?: string;
};
export type UserUncheckedCreateInput = {
id?: number;
username: string;
login: string;
email: string;
avatar_url?: string | null;
active?: boolean;
valid?: number;
createdAt?: Date | string;
updatedAt?: Date | string;
createdBy?: string;
updatedBy?: string;
};
export type UserUpdateInput = {
username?: Prisma.StringFieldUpdateOperationsInput | string;
login?: Prisma.StringFieldUpdateOperationsInput | string;
email?: Prisma.StringFieldUpdateOperationsInput | string;
avatar_url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
active?: Prisma.BoolFieldUpdateOperationsInput | boolean;
valid?: Prisma.IntFieldUpdateOperationsInput | number;
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
createdBy?: Prisma.StringFieldUpdateOperationsInput | string;
updatedBy?: Prisma.StringFieldUpdateOperationsInput | string;
};
export type UserUncheckedUpdateInput = {
id?: Prisma.IntFieldUpdateOperationsInput | number;
username?: Prisma.StringFieldUpdateOperationsInput | string;
login?: Prisma.StringFieldUpdateOperationsInput | string;
email?: Prisma.StringFieldUpdateOperationsInput | string;
avatar_url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
active?: Prisma.BoolFieldUpdateOperationsInput | boolean;
valid?: Prisma.IntFieldUpdateOperationsInput | number;
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
createdBy?: Prisma.StringFieldUpdateOperationsInput | string;
updatedBy?: Prisma.StringFieldUpdateOperationsInput | string;
};
export type UserCreateManyInput = {
id?: number;
username: string;
login: string;
email: string;
avatar_url?: string | null;
active?: boolean;
valid?: number;
createdAt?: Date | string;
updatedAt?: Date | string;
createdBy?: string;
updatedBy?: string;
};
export type UserUpdateManyMutationInput = {
username?: Prisma.StringFieldUpdateOperationsInput | string;
login?: Prisma.StringFieldUpdateOperationsInput | string;
email?: Prisma.StringFieldUpdateOperationsInput | string;
avatar_url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
active?: Prisma.BoolFieldUpdateOperationsInput | boolean;
valid?: Prisma.IntFieldUpdateOperationsInput | number;
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
createdBy?: Prisma.StringFieldUpdateOperationsInput | string;
updatedBy?: Prisma.StringFieldUpdateOperationsInput | string;
};
export type UserUncheckedUpdateManyInput = {
id?: Prisma.IntFieldUpdateOperationsInput | number;
username?: Prisma.StringFieldUpdateOperationsInput | string;
login?: Prisma.StringFieldUpdateOperationsInput | string;
email?: Prisma.StringFieldUpdateOperationsInput | string;
avatar_url?: Prisma.NullableStringFieldUpdateOperationsInput | string | null;
active?: Prisma.BoolFieldUpdateOperationsInput | boolean;
valid?: Prisma.IntFieldUpdateOperationsInput | number;
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string;
createdBy?: Prisma.StringFieldUpdateOperationsInput | string;
updatedBy?: Prisma.StringFieldUpdateOperationsInput | string;
};
export type UserCountOrderByAggregateInput = {
id?: Prisma.SortOrder;
username?: Prisma.SortOrder;
login?: Prisma.SortOrder;
email?: Prisma.SortOrder;
avatar_url?: Prisma.SortOrder;
active?: Prisma.SortOrder;
valid?: Prisma.SortOrder;
createdAt?: Prisma.SortOrder;
updatedAt?: Prisma.SortOrder;
createdBy?: Prisma.SortOrder;
updatedBy?: Prisma.SortOrder;
};
export type UserAvgOrderByAggregateInput = {
id?: Prisma.SortOrder;
valid?: Prisma.SortOrder;
};
export type UserMaxOrderByAggregateInput = {
id?: Prisma.SortOrder;
username?: Prisma.SortOrder;
login?: Prisma.SortOrder;
email?: Prisma.SortOrder;
avatar_url?: Prisma.SortOrder;
active?: Prisma.SortOrder;
valid?: Prisma.SortOrder;
createdAt?: Prisma.SortOrder;
updatedAt?: Prisma.SortOrder;
createdBy?: Prisma.SortOrder;
updatedBy?: Prisma.SortOrder;
};
export type UserMinOrderByAggregateInput = {
id?: Prisma.SortOrder;
username?: Prisma.SortOrder;
login?: Prisma.SortOrder;
email?: Prisma.SortOrder;
avatar_url?: Prisma.SortOrder;
active?: Prisma.SortOrder;
valid?: Prisma.SortOrder;
createdAt?: Prisma.SortOrder;
updatedAt?: Prisma.SortOrder;
createdBy?: Prisma.SortOrder;
updatedBy?: Prisma.SortOrder;
};
export type UserSumOrderByAggregateInput = {
id?: Prisma.SortOrder;
valid?: Prisma.SortOrder;
};
export type BoolFieldUpdateOperationsInput = {
set?: boolean;
};
export type UserSelect<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = runtime.Types.Extensions.GetSelect<
{
id?: boolean;
username?: boolean;
login?: boolean;
email?: boolean;
avatar_url?: boolean;
active?: boolean;
valid?: boolean;
createdAt?: boolean;
updatedAt?: boolean;
createdBy?: boolean;
updatedBy?: boolean;
},
ExtArgs['result']['user']
>;
export type UserSelectCreateManyAndReturn<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = runtime.Types.Extensions.GetSelect<
{
id?: boolean;
username?: boolean;
login?: boolean;
email?: boolean;
avatar_url?: boolean;
active?: boolean;
valid?: boolean;
createdAt?: boolean;
updatedAt?: boolean;
createdBy?: boolean;
updatedBy?: boolean;
},
ExtArgs['result']['user']
>;
export type UserSelectUpdateManyAndReturn<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = runtime.Types.Extensions.GetSelect<
{
id?: boolean;
username?: boolean;
login?: boolean;
email?: boolean;
avatar_url?: boolean;
active?: boolean;
valid?: boolean;
createdAt?: boolean;
updatedAt?: boolean;
createdBy?: boolean;
updatedBy?: boolean;
},
ExtArgs['result']['user']
>;
export type UserSelectScalar = {
id?: boolean;
username?: boolean;
login?: boolean;
email?: boolean;
avatar_url?: boolean;
active?: boolean;
valid?: boolean;
createdAt?: boolean;
updatedAt?: boolean;
createdBy?: boolean;
updatedBy?: boolean;
};
export type UserOmit<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = runtime.Types.Extensions.GetOmit<
| 'id'
| 'username'
| 'login'
| 'email'
| 'avatar_url'
| 'active'
| 'valid'
| 'createdAt'
| 'updatedAt'
| 'createdBy'
| 'updatedBy',
ExtArgs['result']['user']
>;
export type $UserPayload<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
name: 'User';
objects: {};
scalars: runtime.Types.Extensions.GetPayloadResult<
{
id: number;
username: string;
login: string;
email: string;
avatar_url: string | null;
active: boolean;
valid: number;
createdAt: Date;
updatedAt: Date;
createdBy: string;
updatedBy: string;
},
ExtArgs['result']['user']
>;
composites: {};
};
export type UserGetPayload<
S extends boolean | null | undefined | UserDefaultArgs,
> = runtime.Types.Result.GetResult<Prisma.$UserPayload, S>;
export type UserCountArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = Omit<UserFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
select?: UserCountAggregateInputType | true;
};
export interface UserDelegate<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
GlobalOmitOptions = {},
> {
[K: symbol]: {
types: Prisma.TypeMap<ExtArgs>['model']['User'];
meta: { name: 'User' };
};
/**
* Find zero or one User that matches the filter.
* @param {UserFindUniqueArgs} args - Arguments to find a User
* @example
* // Get one User
* const user = await prisma.user.findUnique({
* where: {
* // ... provide filter here
* }
* })
*/
findUnique<T extends UserFindUniqueArgs>(
args: Prisma.SelectSubset<T, UserFindUniqueArgs<ExtArgs>>,
): Prisma.Prisma__UserClient<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'findUnique',
GlobalOmitOptions
> | null,
null,
ExtArgs,
GlobalOmitOptions
>;
/**
* Find one User that matches the filter or throw an error with `error.code='P2025'`
* if no matches were found.
* @param {UserFindUniqueOrThrowArgs} args - Arguments to find a User
* @example
* // Get one User
* const user = await prisma.user.findUniqueOrThrow({
* where: {
* // ... provide filter here
* }
* })
*/
findUniqueOrThrow<T extends UserFindUniqueOrThrowArgs>(
args: Prisma.SelectSubset<T, UserFindUniqueOrThrowArgs<ExtArgs>>,
): Prisma.Prisma__UserClient<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'findUniqueOrThrow',
GlobalOmitOptions
>,
never,
ExtArgs,
GlobalOmitOptions
>;
/**
* Find the first User that matches the filter.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UserFindFirstArgs} args - Arguments to find a User
* @example
* // Get one User
* const user = await prisma.user.findFirst({
* where: {
* // ... provide filter here
* }
* })
*/
findFirst<T extends UserFindFirstArgs>(
args?: Prisma.SelectSubset<T, UserFindFirstArgs<ExtArgs>>,
): Prisma.Prisma__UserClient<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'findFirst',
GlobalOmitOptions
> | null,
null,
ExtArgs,
GlobalOmitOptions
>;
/**
* Find the first User that matches the filter or
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UserFindFirstOrThrowArgs} args - Arguments to find a User
* @example
* // Get one User
* const user = await prisma.user.findFirstOrThrow({
* where: {
* // ... provide filter here
* }
* })
*/
findFirstOrThrow<T extends UserFindFirstOrThrowArgs>(
args?: Prisma.SelectSubset<T, UserFindFirstOrThrowArgs<ExtArgs>>,
): Prisma.Prisma__UserClient<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'findFirstOrThrow',
GlobalOmitOptions
>,
never,
ExtArgs,
GlobalOmitOptions
>;
/**
* Find zero or more Users that matches the filter.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UserFindManyArgs} args - Arguments to filter and select certain fields only.
* @example
* // Get all Users
* const users = await prisma.user.findMany()
*
* // Get first 10 Users
* const users = await prisma.user.findMany({ take: 10 })
*
* // Only select the `id`
* const userWithIdOnly = await prisma.user.findMany({ select: { id: true } })
*
*/
findMany<T extends UserFindManyArgs>(
args?: Prisma.SelectSubset<T, UserFindManyArgs<ExtArgs>>,
): Prisma.PrismaPromise<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'findMany',
GlobalOmitOptions
>
>;
/**
* Create a User.
* @param {UserCreateArgs} args - Arguments to create a User.
* @example
* // Create one User
* const User = await prisma.user.create({
* data: {
* // ... data to create a User
* }
* })
*
*/
create<T extends UserCreateArgs>(
args: Prisma.SelectSubset<T, UserCreateArgs<ExtArgs>>,
): Prisma.Prisma__UserClient<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'create',
GlobalOmitOptions
>,
never,
ExtArgs,
GlobalOmitOptions
>;
/**
* Create many Users.
* @param {UserCreateManyArgs} args - Arguments to create many Users.
* @example
* // Create many Users
* const user = await prisma.user.createMany({
* data: [
* // ... provide data here
* ]
* })
*
*/
createMany<T extends UserCreateManyArgs>(
args?: Prisma.SelectSubset<T, UserCreateManyArgs<ExtArgs>>,
): Prisma.PrismaPromise<Prisma.BatchPayload>;
/**
* Create many Users and returns the data saved in the database.
* @param {UserCreateManyAndReturnArgs} args - Arguments to create many Users.
* @example
* // Create many Users
* const user = await prisma.user.createManyAndReturn({
* data: [
* // ... provide data here
* ]
* })
*
* // Create many Users and only return the `id`
* const userWithIdOnly = await prisma.user.createManyAndReturn({
* select: { id: true },
* data: [
* // ... provide data here
* ]
* })
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
*
*/
createManyAndReturn<T extends UserCreateManyAndReturnArgs>(
args?: Prisma.SelectSubset<T, UserCreateManyAndReturnArgs<ExtArgs>>,
): Prisma.PrismaPromise<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'createManyAndReturn',
GlobalOmitOptions
>
>;
/**
* Delete a User.
* @param {UserDeleteArgs} args - Arguments to delete one User.
* @example
* // Delete one User
* const User = await prisma.user.delete({
* where: {
* // ... filter to delete one User
* }
* })
*
*/
delete<T extends UserDeleteArgs>(
args: Prisma.SelectSubset<T, UserDeleteArgs<ExtArgs>>,
): Prisma.Prisma__UserClient<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'delete',
GlobalOmitOptions
>,
never,
ExtArgs,
GlobalOmitOptions
>;
/**
* Update one User.
* @param {UserUpdateArgs} args - Arguments to update one User.
* @example
* // Update one User
* const user = await prisma.user.update({
* where: {
* // ... provide filter here
* },
* data: {
* // ... provide data here
* }
* })
*
*/
update<T extends UserUpdateArgs>(
args: Prisma.SelectSubset<T, UserUpdateArgs<ExtArgs>>,
): Prisma.Prisma__UserClient<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'update',
GlobalOmitOptions
>,
never,
ExtArgs,
GlobalOmitOptions
>;
/**
* Delete zero or more Users.
* @param {UserDeleteManyArgs} args - Arguments to filter Users to delete.
* @example
* // Delete a few Users
* const { count } = await prisma.user.deleteMany({
* where: {
* // ... provide filter here
* }
* })
*
*/
deleteMany<T extends UserDeleteManyArgs>(
args?: Prisma.SelectSubset<T, UserDeleteManyArgs<ExtArgs>>,
): Prisma.PrismaPromise<Prisma.BatchPayload>;
/**
* Update zero or more Users.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UserUpdateManyArgs} args - Arguments to update one or more rows.
* @example
* // Update many Users
* const user = await prisma.user.updateMany({
* where: {
* // ... provide filter here
* },
* data: {
* // ... provide data here
* }
* })
*
*/
updateMany<T extends UserUpdateManyArgs>(
args: Prisma.SelectSubset<T, UserUpdateManyArgs<ExtArgs>>,
): Prisma.PrismaPromise<Prisma.BatchPayload>;
/**
* Update zero or more Users and returns the data updated in the database.
* @param {UserUpdateManyAndReturnArgs} args - Arguments to update many Users.
* @example
* // Update many Users
* const user = await prisma.user.updateManyAndReturn({
* where: {
* // ... provide filter here
* },
* data: [
* // ... provide data here
* ]
* })
*
* // Update zero or more Users and only return the `id`
* const userWithIdOnly = await prisma.user.updateManyAndReturn({
* select: { id: true },
* where: {
* // ... provide filter here
* },
* data: [
* // ... provide data here
* ]
* })
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
*
*/
updateManyAndReturn<T extends UserUpdateManyAndReturnArgs>(
args: Prisma.SelectSubset<T, UserUpdateManyAndReturnArgs<ExtArgs>>,
): Prisma.PrismaPromise<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'updateManyAndReturn',
GlobalOmitOptions
>
>;
/**
* Create or update one User.
* @param {UserUpsertArgs} args - Arguments to update or create a User.
* @example
* // Update or create a User
* const user = await prisma.user.upsert({
* create: {
* // ... data to create a User
* },
* update: {
* // ... in case it already exists, update
* },
* where: {
* // ... the filter for the User we want to update
* }
* })
*/
upsert<T extends UserUpsertArgs>(
args: Prisma.SelectSubset<T, UserUpsertArgs<ExtArgs>>,
): Prisma.Prisma__UserClient<
runtime.Types.Result.GetResult<
Prisma.$UserPayload<ExtArgs>,
T,
'upsert',
GlobalOmitOptions
>,
never,
ExtArgs,
GlobalOmitOptions
>;
/**
* Count the number of Users.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UserCountArgs} args - Arguments to filter Users to count.
* @example
* // Count the number of Users
* const count = await prisma.user.count({
* where: {
* // ... the filter for the Users we want to count
* }
* })
**/
count<T extends UserCountArgs>(
args?: Prisma.Subset<T, UserCountArgs>,
): Prisma.PrismaPromise<
T extends runtime.Types.Utils.Record<'select', any>
? T['select'] extends true
? number
: Prisma.GetScalarType<T['select'], UserCountAggregateOutputType>
: number
>;
/**
* Allows you to perform aggregations operations on a User.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UserAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
* @example
* // Ordered by age ascending
* // Where email contains prisma.io
* // Limited to the 10 users
* const aggregations = await prisma.user.aggregate({
* _avg: {
* age: true,
* },
* where: {
* email: {
* contains: "prisma.io",
* },
* },
* orderBy: {
* age: "asc",
* },
* take: 10,
* })
**/
aggregate<T extends UserAggregateArgs>(
args: Prisma.Subset<T, UserAggregateArgs>,
): Prisma.PrismaPromise<GetUserAggregateType<T>>;
/**
* Group by User.
* Note, that providing `undefined` is treated as the value not being there.
* Read more here: https://pris.ly/d/null-undefined
* @param {UserGroupByArgs} args - Group by arguments.
* @example
* // Group by city, order by createdAt, get count
* const result = await prisma.user.groupBy({
* by: ['city', 'createdAt'],
* orderBy: {
* createdAt: true
* },
* _count: {
* _all: true
* },
* })
*
**/
groupBy<
T extends UserGroupByArgs,
HasSelectOrTake extends Prisma.Or<
Prisma.Extends<'skip', Prisma.Keys<T>>,
Prisma.Extends<'take', Prisma.Keys<T>>
>,
OrderByArg extends Prisma.True extends HasSelectOrTake
? { orderBy: UserGroupByArgs['orderBy'] }
: { orderBy?: UserGroupByArgs['orderBy'] },
OrderFields extends Prisma.ExcludeUnderscoreKeys<
Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>
>,
ByFields extends Prisma.MaybeTupleToUnion<T['by']>,
ByValid extends Prisma.Has<ByFields, OrderFields>,
HavingFields extends Prisma.GetHavingFields<T['having']>,
HavingValid extends Prisma.Has<ByFields, HavingFields>,
ByEmpty extends T['by'] extends never[] ? Prisma.True : Prisma.False,
InputErrors extends ByEmpty extends Prisma.True
? `Error: "by" must not be empty.`
: HavingValid extends Prisma.False
? {
[P in HavingFields]: P extends ByFields
? never
: P extends string
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
: [
Error,
'Field ',
P,
` in "having" needs to be provided in "by"`,
];
}[HavingFields]
: 'take' extends Prisma.Keys<T>
? 'orderBy' extends Prisma.Keys<T>
? ByValid extends Prisma.True
? {}
: {
[P in OrderFields]: P extends ByFields
? never
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
}[OrderFields]
: 'Error: If you provide "take", you also need to provide "orderBy"'
: 'skip' extends Prisma.Keys<T>
? 'orderBy' extends Prisma.Keys<T>
? ByValid extends Prisma.True
? {}
: {
[P in OrderFields]: P extends ByFields
? never
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
}[OrderFields]
: 'Error: If you provide "skip", you also need to provide "orderBy"'
: ByValid extends Prisma.True
? {}
: {
[P in OrderFields]: P extends ByFields
? never
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`;
}[OrderFields],
>(
args: Prisma.SubsetIntersection<T, UserGroupByArgs, OrderByArg> &
InputErrors,
): {} extends InputErrors
? GetUserGroupByPayload<T>
: Prisma.PrismaPromise<InputErrors>;
/**
* Fields of the User model
*/
readonly fields: UserFieldRefs;
}
/**
* The delegate class that acts as a "Promise-like" for User.
* Why is this prefixed with `Prisma__`?
* Because we want to prevent naming conflicts as mentioned in
* https://github.com/prisma/prisma-client-js/issues/707
*/
export interface Prisma__UserClient<
T,
Null = never,
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
GlobalOmitOptions = {},
> extends Prisma.PrismaPromise<T> {
readonly [Symbol.toStringTag]: 'PrismaPromise';
/**
* Attaches callbacks for the resolution and/or rejection of the Promise.
* @param onfulfilled The callback to execute when the Promise is resolved.
* @param onrejected The callback to execute when the Promise is rejected.
* @returns A Promise for the completion of which ever callback is executed.
*/
then<TResult1 = T, TResult2 = never>(
onfulfilled?:
| ((value: T) => TResult1 | PromiseLike<TResult1>)
| undefined
| null,
onrejected?:
| ((reason: any) => TResult2 | PromiseLike<TResult2>)
| undefined
| null,
): runtime.Types.Utils.JsPromise<TResult1 | TResult2>;
/**
* Attaches a callback for only the rejection of the Promise.
* @param onrejected The callback to execute when the Promise is rejected.
* @returns A Promise for the completion of the callback.
*/
catch<TResult = never>(
onrejected?:
| ((reason: any) => TResult | PromiseLike<TResult>)
| undefined
| null,
): runtime.Types.Utils.JsPromise<T | TResult>;
/**
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
* resolved value cannot be modified from the callback.
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
* @returns A Promise for the completion of the callback.
*/
finally(
onfinally?: (() => void) | undefined | null,
): runtime.Types.Utils.JsPromise<T>;
}
/**
* Fields of the User model
*/
export interface UserFieldRefs {
readonly id: Prisma.FieldRef<'User', 'Int'>;
readonly username: Prisma.FieldRef<'User', 'String'>;
readonly login: Prisma.FieldRef<'User', 'String'>;
readonly email: Prisma.FieldRef<'User', 'String'>;
readonly avatar_url: Prisma.FieldRef<'User', 'String'>;
readonly active: Prisma.FieldRef<'User', 'Boolean'>;
readonly valid: Prisma.FieldRef<'User', 'Int'>;
readonly createdAt: Prisma.FieldRef<'User', 'DateTime'>;
readonly updatedAt: Prisma.FieldRef<'User', 'DateTime'>;
readonly createdBy: Prisma.FieldRef<'User', 'String'>;
readonly updatedBy: Prisma.FieldRef<'User', 'String'>;
}
// Custom InputTypes
/**
* User findUnique
*/
export type UserFindUniqueArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelect<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* Filter, which User to fetch.
*/
where: Prisma.UserWhereUniqueInput;
};
/**
* User findUniqueOrThrow
*/
export type UserFindUniqueOrThrowArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelect<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* Filter, which User to fetch.
*/
where: Prisma.UserWhereUniqueInput;
};
/**
* User findFirst
*/
export type UserFindFirstArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelect<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* Filter, which User to fetch.
*/
where?: Prisma.UserWhereInput;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
*
* Determine the order of Users to fetch.
*/
orderBy?:
| Prisma.UserOrderByWithRelationInput
| Prisma.UserOrderByWithRelationInput[];
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
*
* Sets the position for searching for Users.
*/
cursor?: Prisma.UserWhereUniqueInput;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Take `±n` Users from the position of the cursor.
*/
take?: number;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Skip the first `n` Users.
*/
skip?: number;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
*
* Filter by unique combinations of Users.
*/
distinct?: Prisma.UserScalarFieldEnum | Prisma.UserScalarFieldEnum[];
};
/**
* User findFirstOrThrow
*/
export type UserFindFirstOrThrowArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelect<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* Filter, which User to fetch.
*/
where?: Prisma.UserWhereInput;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
*
* Determine the order of Users to fetch.
*/
orderBy?:
| Prisma.UserOrderByWithRelationInput
| Prisma.UserOrderByWithRelationInput[];
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
*
* Sets the position for searching for Users.
*/
cursor?: Prisma.UserWhereUniqueInput;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Take `±n` Users from the position of the cursor.
*/
take?: number;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Skip the first `n` Users.
*/
skip?: number;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
*
* Filter by unique combinations of Users.
*/
distinct?: Prisma.UserScalarFieldEnum | Prisma.UserScalarFieldEnum[];
};
/**
* User findMany
*/
export type UserFindManyArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelect<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* Filter, which Users to fetch.
*/
where?: Prisma.UserWhereInput;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
*
* Determine the order of Users to fetch.
*/
orderBy?:
| Prisma.UserOrderByWithRelationInput
| Prisma.UserOrderByWithRelationInput[];
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
*
* Sets the position for listing Users.
*/
cursor?: Prisma.UserWhereUniqueInput;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Take `±n` Users from the position of the cursor.
*/
take?: number;
/**
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
*
* Skip the first `n` Users.
*/
skip?: number;
distinct?: Prisma.UserScalarFieldEnum | Prisma.UserScalarFieldEnum[];
};
/**
* User create
*/
export type UserCreateArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelect<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* The data needed to create a User.
*/
data: Prisma.XOR<Prisma.UserCreateInput, Prisma.UserUncheckedCreateInput>;
};
/**
* User createMany
*/
export type UserCreateManyArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* The data used to create many Users.
*/
data: Prisma.UserCreateManyInput | Prisma.UserCreateManyInput[];
};
/**
* User createManyAndReturn
*/
export type UserCreateManyAndReturnArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelectCreateManyAndReturn<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* The data used to create many Users.
*/
data: Prisma.UserCreateManyInput | Prisma.UserCreateManyInput[];
};
/**
* User update
*/
export type UserUpdateArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelect<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* The data needed to update a User.
*/
data: Prisma.XOR<Prisma.UserUpdateInput, Prisma.UserUncheckedUpdateInput>;
/**
* Choose, which User to update.
*/
where: Prisma.UserWhereUniqueInput;
};
/**
* User updateMany
*/
export type UserUpdateManyArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* The data used to update Users.
*/
data: Prisma.XOR<
Prisma.UserUpdateManyMutationInput,
Prisma.UserUncheckedUpdateManyInput
>;
/**
* Filter which Users to update
*/
where?: Prisma.UserWhereInput;
/**
* Limit how many Users to update.
*/
limit?: number;
};
/**
* User updateManyAndReturn
*/
export type UserUpdateManyAndReturnArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelectUpdateManyAndReturn<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* The data used to update Users.
*/
data: Prisma.XOR<
Prisma.UserUpdateManyMutationInput,
Prisma.UserUncheckedUpdateManyInput
>;
/**
* Filter which Users to update
*/
where?: Prisma.UserWhereInput;
/**
* Limit how many Users to update.
*/
limit?: number;
};
/**
* User upsert
*/
export type UserUpsertArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelect<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* The filter to search for the User to update in case it exists.
*/
where: Prisma.UserWhereUniqueInput;
/**
* In case the User found by the `where` argument doesn't exist, create a new User with this data.
*/
create: Prisma.XOR<Prisma.UserCreateInput, Prisma.UserUncheckedCreateInput>;
/**
* In case the User was found with the provided `where` argument, update it with this data.
*/
update: Prisma.XOR<Prisma.UserUpdateInput, Prisma.UserUncheckedUpdateInput>;
};
/**
* User delete
*/
export type UserDeleteArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelect<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
/**
* Filter which User to delete.
*/
where: Prisma.UserWhereUniqueInput;
};
/**
* User deleteMany
*/
export type UserDeleteManyArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Filter which Users to delete
*/
where?: Prisma.UserWhereInput;
/**
* Limit how many Users to delete.
*/
limit?: number;
};
/**
* User without action
*/
export type UserDefaultArgs<
ExtArgs extends
runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs,
> = {
/**
* Select specific fields to fetch from the User
*/
select?: Prisma.UserSelect<ExtArgs> | null;
/**
* Omit specific fields from the User
*/
omit?: Prisma.UserOmit<ExtArgs> | null;
};