/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `project_manager_checklist` 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" import type * as Prisma from "../internal/prismaNamespace" /** * Model project_manager_checklist * */ export type project_manager_checklistModel = runtime.Types.Result.DefaultSelection export type AggregateProject_manager_checklist = { _count: Project_manager_checklistCountAggregateOutputType | null _avg: Project_manager_checklistAvgAggregateOutputType | null _sum: Project_manager_checklistSumAggregateOutputType | null _min: Project_manager_checklistMinAggregateOutputType | null _max: Project_manager_checklistMaxAggregateOutputType | null } export type Project_manager_checklistAvgAggregateOutputType = { id: number | null task_id: number | null ticket_id: number | null poids: number | null done: number | null } export type Project_manager_checklistSumAggregateOutputType = { id: number | null task_id: number | null ticket_id: number | null poids: number | null done: number | null } export type Project_manager_checklistMinAggregateOutputType = { id: number | null task_id: number | null ticket_id: number | null desc: string | null poids: number | null done: number | null } export type Project_manager_checklistMaxAggregateOutputType = { id: number | null task_id: number | null ticket_id: number | null desc: string | null poids: number | null done: number | null } export type Project_manager_checklistCountAggregateOutputType = { id: number task_id: number ticket_id: number desc: number poids: number done: number _all: number } export type Project_manager_checklistAvgAggregateInputType = { id?: true task_id?: true ticket_id?: true poids?: true done?: true } export type Project_manager_checklistSumAggregateInputType = { id?: true task_id?: true ticket_id?: true poids?: true done?: true } export type Project_manager_checklistMinAggregateInputType = { id?: true task_id?: true ticket_id?: true desc?: true poids?: true done?: true } export type Project_manager_checklistMaxAggregateInputType = { id?: true task_id?: true ticket_id?: true desc?: true poids?: true done?: true } export type Project_manager_checklistCountAggregateInputType = { id?: true task_id?: true ticket_id?: true desc?: true poids?: true done?: true _all?: true } export type Project_manager_checklistAggregateArgs = { /** * Filter which project_manager_checklist to aggregate. */ where?: Prisma.project_manager_checklistWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of project_manager_checklists to fetch. */ orderBy?: Prisma.project_manager_checklistOrderByWithRelationInput | Prisma.project_manager_checklistOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.project_manager_checklistWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` project_manager_checklists 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` project_manager_checklists. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned project_manager_checklists **/ _count?: true | Project_manager_checklistCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Project_manager_checklistAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Project_manager_checklistSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Project_manager_checklistMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Project_manager_checklistMaxAggregateInputType } export type GetProject_manager_checklistAggregateType = { [P in keyof T & keyof AggregateProject_manager_checklist]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type project_manager_checklistGroupByArgs = { where?: Prisma.project_manager_checklistWhereInput orderBy?: Prisma.project_manager_checklistOrderByWithAggregationInput | Prisma.project_manager_checklistOrderByWithAggregationInput[] by: Prisma.Project_manager_checklistScalarFieldEnum[] | Prisma.Project_manager_checklistScalarFieldEnum having?: Prisma.project_manager_checklistScalarWhereWithAggregatesInput take?: number skip?: number _count?: Project_manager_checklistCountAggregateInputType | true _avg?: Project_manager_checklistAvgAggregateInputType _sum?: Project_manager_checklistSumAggregateInputType _min?: Project_manager_checklistMinAggregateInputType _max?: Project_manager_checklistMaxAggregateInputType } export type Project_manager_checklistGroupByOutputType = { id: number task_id: number ticket_id: number desc: string poids: number done: number _count: Project_manager_checklistCountAggregateOutputType | null _avg: Project_manager_checklistAvgAggregateOutputType | null _sum: Project_manager_checklistSumAggregateOutputType | null _min: Project_manager_checklistMinAggregateOutputType | null _max: Project_manager_checklistMaxAggregateOutputType | null } type GetProject_manager_checklistGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Project_manager_checklistGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type project_manager_checklistWhereInput = { AND?: Prisma.project_manager_checklistWhereInput | Prisma.project_manager_checklistWhereInput[] OR?: Prisma.project_manager_checklistWhereInput[] NOT?: Prisma.project_manager_checklistWhereInput | Prisma.project_manager_checklistWhereInput[] id?: Prisma.IntFilter<"project_manager_checklist"> | number task_id?: Prisma.IntFilter<"project_manager_checklist"> | number ticket_id?: Prisma.IntFilter<"project_manager_checklist"> | number desc?: Prisma.StringFilter<"project_manager_checklist"> | string poids?: Prisma.IntFilter<"project_manager_checklist"> | number done?: Prisma.IntFilter<"project_manager_checklist"> | number } export type project_manager_checklistOrderByWithRelationInput = { id?: Prisma.SortOrder task_id?: Prisma.SortOrder ticket_id?: Prisma.SortOrder desc?: Prisma.SortOrder poids?: Prisma.SortOrder done?: Prisma.SortOrder _relevance?: Prisma.project_manager_checklistOrderByRelevanceInput } export type project_manager_checklistWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.project_manager_checklistWhereInput | Prisma.project_manager_checklistWhereInput[] OR?: Prisma.project_manager_checklistWhereInput[] NOT?: Prisma.project_manager_checklistWhereInput | Prisma.project_manager_checklistWhereInput[] task_id?: Prisma.IntFilter<"project_manager_checklist"> | number ticket_id?: Prisma.IntFilter<"project_manager_checklist"> | number desc?: Prisma.StringFilter<"project_manager_checklist"> | string poids?: Prisma.IntFilter<"project_manager_checklist"> | number done?: Prisma.IntFilter<"project_manager_checklist"> | number }, "id"> export type project_manager_checklistOrderByWithAggregationInput = { id?: Prisma.SortOrder task_id?: Prisma.SortOrder ticket_id?: Prisma.SortOrder desc?: Prisma.SortOrder poids?: Prisma.SortOrder done?: Prisma.SortOrder _count?: Prisma.project_manager_checklistCountOrderByAggregateInput _avg?: Prisma.project_manager_checklistAvgOrderByAggregateInput _max?: Prisma.project_manager_checklistMaxOrderByAggregateInput _min?: Prisma.project_manager_checklistMinOrderByAggregateInput _sum?: Prisma.project_manager_checklistSumOrderByAggregateInput } export type project_manager_checklistScalarWhereWithAggregatesInput = { AND?: Prisma.project_manager_checklistScalarWhereWithAggregatesInput | Prisma.project_manager_checklistScalarWhereWithAggregatesInput[] OR?: Prisma.project_manager_checklistScalarWhereWithAggregatesInput[] NOT?: Prisma.project_manager_checklistScalarWhereWithAggregatesInput | Prisma.project_manager_checklistScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"project_manager_checklist"> | number task_id?: Prisma.IntWithAggregatesFilter<"project_manager_checklist"> | number ticket_id?: Prisma.IntWithAggregatesFilter<"project_manager_checklist"> | number desc?: Prisma.StringWithAggregatesFilter<"project_manager_checklist"> | string poids?: Prisma.IntWithAggregatesFilter<"project_manager_checklist"> | number done?: Prisma.IntWithAggregatesFilter<"project_manager_checklist"> | number } export type project_manager_checklistCreateInput = { task_id: number ticket_id: number desc: string poids?: number done?: number } export type project_manager_checklistUncheckedCreateInput = { id?: number task_id: number ticket_id: number desc: string poids?: number done?: number } export type project_manager_checklistUpdateInput = { task_id?: Prisma.IntFieldUpdateOperationsInput | number ticket_id?: Prisma.IntFieldUpdateOperationsInput | number desc?: Prisma.StringFieldUpdateOperationsInput | string poids?: Prisma.IntFieldUpdateOperationsInput | number done?: Prisma.IntFieldUpdateOperationsInput | number } export type project_manager_checklistUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number task_id?: Prisma.IntFieldUpdateOperationsInput | number ticket_id?: Prisma.IntFieldUpdateOperationsInput | number desc?: Prisma.StringFieldUpdateOperationsInput | string poids?: Prisma.IntFieldUpdateOperationsInput | number done?: Prisma.IntFieldUpdateOperationsInput | number } export type project_manager_checklistCreateManyInput = { id?: number task_id: number ticket_id: number desc: string poids?: number done?: number } export type project_manager_checklistUpdateManyMutationInput = { task_id?: Prisma.IntFieldUpdateOperationsInput | number ticket_id?: Prisma.IntFieldUpdateOperationsInput | number desc?: Prisma.StringFieldUpdateOperationsInput | string poids?: Prisma.IntFieldUpdateOperationsInput | number done?: Prisma.IntFieldUpdateOperationsInput | number } export type project_manager_checklistUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number task_id?: Prisma.IntFieldUpdateOperationsInput | number ticket_id?: Prisma.IntFieldUpdateOperationsInput | number desc?: Prisma.StringFieldUpdateOperationsInput | string poids?: Prisma.IntFieldUpdateOperationsInput | number done?: Prisma.IntFieldUpdateOperationsInput | number } export type project_manager_checklistOrderByRelevanceInput = { fields: Prisma.project_manager_checklistOrderByRelevanceFieldEnum | Prisma.project_manager_checklistOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type project_manager_checklistCountOrderByAggregateInput = { id?: Prisma.SortOrder task_id?: Prisma.SortOrder ticket_id?: Prisma.SortOrder desc?: Prisma.SortOrder poids?: Prisma.SortOrder done?: Prisma.SortOrder } export type project_manager_checklistAvgOrderByAggregateInput = { id?: Prisma.SortOrder task_id?: Prisma.SortOrder ticket_id?: Prisma.SortOrder poids?: Prisma.SortOrder done?: Prisma.SortOrder } export type project_manager_checklistMaxOrderByAggregateInput = { id?: Prisma.SortOrder task_id?: Prisma.SortOrder ticket_id?: Prisma.SortOrder desc?: Prisma.SortOrder poids?: Prisma.SortOrder done?: Prisma.SortOrder } export type project_manager_checklistMinOrderByAggregateInput = { id?: Prisma.SortOrder task_id?: Prisma.SortOrder ticket_id?: Prisma.SortOrder desc?: Prisma.SortOrder poids?: Prisma.SortOrder done?: Prisma.SortOrder } export type project_manager_checklistSumOrderByAggregateInput = { id?: Prisma.SortOrder task_id?: Prisma.SortOrder ticket_id?: Prisma.SortOrder poids?: Prisma.SortOrder done?: Prisma.SortOrder } export type project_manager_checklistSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean task_id?: boolean ticket_id?: boolean desc?: boolean poids?: boolean done?: boolean }, ExtArgs["result"]["project_manager_checklist"]> export type project_manager_checklistSelectScalar = { id?: boolean task_id?: boolean ticket_id?: boolean desc?: boolean poids?: boolean done?: boolean } export type project_manager_checklistOmit = runtime.Types.Extensions.GetOmit<"id" | "task_id" | "ticket_id" | "desc" | "poids" | "done", ExtArgs["result"]["project_manager_checklist"]> export type $project_manager_checklistPayload = { name: "project_manager_checklist" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number task_id: number ticket_id: number desc: string poids: number done: number }, ExtArgs["result"]["project_manager_checklist"]> composites: {} } export type project_manager_checklistGetPayload = runtime.Types.Result.GetResult export type project_manager_checklistCountArgs = Omit & { select?: Project_manager_checklistCountAggregateInputType | true } export interface project_manager_checklistDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['project_manager_checklist'], meta: { name: 'project_manager_checklist' } } /** * Find zero or one Project_manager_checklist that matches the filter. * @param {project_manager_checklistFindUniqueArgs} args - Arguments to find a Project_manager_checklist * @example * // Get one Project_manager_checklist * const project_manager_checklist = await prisma.project_manager_checklist.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__project_manager_checklistClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Project_manager_checklist that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {project_manager_checklistFindUniqueOrThrowArgs} args - Arguments to find a Project_manager_checklist * @example * // Get one Project_manager_checklist * const project_manager_checklist = await prisma.project_manager_checklist.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__project_manager_checklistClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Project_manager_checklist 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 {project_manager_checklistFindFirstArgs} args - Arguments to find a Project_manager_checklist * @example * // Get one Project_manager_checklist * const project_manager_checklist = await prisma.project_manager_checklist.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__project_manager_checklistClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Project_manager_checklist 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 {project_manager_checklistFindFirstOrThrowArgs} args - Arguments to find a Project_manager_checklist * @example * // Get one Project_manager_checklist * const project_manager_checklist = await prisma.project_manager_checklist.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__project_manager_checklistClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Project_manager_checklists 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 {project_manager_checklistFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Project_manager_checklists * const project_manager_checklists = await prisma.project_manager_checklist.findMany() * * // Get first 10 Project_manager_checklists * const project_manager_checklists = await prisma.project_manager_checklist.findMany({ take: 10 }) * * // Only select the `id` * const project_manager_checklistWithIdOnly = await prisma.project_manager_checklist.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Project_manager_checklist. * @param {project_manager_checklistCreateArgs} args - Arguments to create a Project_manager_checklist. * @example * // Create one Project_manager_checklist * const Project_manager_checklist = await prisma.project_manager_checklist.create({ * data: { * // ... data to create a Project_manager_checklist * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__project_manager_checklistClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Project_manager_checklists. * @param {project_manager_checklistCreateManyArgs} args - Arguments to create many Project_manager_checklists. * @example * // Create many Project_manager_checklists * const project_manager_checklist = await prisma.project_manager_checklist.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Project_manager_checklist. * @param {project_manager_checklistDeleteArgs} args - Arguments to delete one Project_manager_checklist. * @example * // Delete one Project_manager_checklist * const Project_manager_checklist = await prisma.project_manager_checklist.delete({ * where: { * // ... filter to delete one Project_manager_checklist * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__project_manager_checklistClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Project_manager_checklist. * @param {project_manager_checklistUpdateArgs} args - Arguments to update one Project_manager_checklist. * @example * // Update one Project_manager_checklist * const project_manager_checklist = await prisma.project_manager_checklist.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__project_manager_checklistClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Project_manager_checklists. * @param {project_manager_checklistDeleteManyArgs} args - Arguments to filter Project_manager_checklists to delete. * @example * // Delete a few Project_manager_checklists * const { count } = await prisma.project_manager_checklist.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Project_manager_checklists. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {project_manager_checklistUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Project_manager_checklists * const project_manager_checklist = await prisma.project_manager_checklist.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Project_manager_checklist. * @param {project_manager_checklistUpsertArgs} args - Arguments to update or create a Project_manager_checklist. * @example * // Update or create a Project_manager_checklist * const project_manager_checklist = await prisma.project_manager_checklist.upsert({ * create: { * // ... data to create a Project_manager_checklist * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Project_manager_checklist we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__project_manager_checklistClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Project_manager_checklists. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {project_manager_checklistCountArgs} args - Arguments to filter Project_manager_checklists to count. * @example * // Count the number of Project_manager_checklists * const count = await prisma.project_manager_checklist.count({ * where: { * // ... the filter for the Project_manager_checklists we want to count * } * }) **/ count( args?: Prisma.Subset, ): Prisma.PrismaPromise< T extends runtime.Types.Utils.Record<'select', any> ? T['select'] extends true ? number : Prisma.GetScalarType : number > /** * Allows you to perform aggregations operations on a Project_manager_checklist. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Project_manager_checklistAggregateArgs} 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(args: Prisma.Subset): Prisma.PrismaPromise> /** * Group by Project_manager_checklist. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {project_manager_checklistGroupByArgs} 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 project_manager_checklistGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: project_manager_checklistGroupByArgs['orderBy'] } : { orderBy?: project_manager_checklistGroupByArgs['orderBy'] }, OrderFields extends Prisma.ExcludeUnderscoreKeys>>, ByFields extends Prisma.MaybeTupleToUnion, ByValid extends Prisma.Has, HavingFields extends Prisma.GetHavingFields, HavingValid extends Prisma.Has, 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 ? 'orderBy' extends Prisma.Keys ? 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 ? 'orderBy' extends Prisma.Keys ? 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 & InputErrors): {} extends InputErrors ? GetProject_manager_checklistGroupByPayload : Prisma.PrismaPromise /** * Fields of the project_manager_checklist model */ readonly fields: project_manager_checklistFieldRefs; } /** * The delegate class that acts as a "Promise-like" for project_manager_checklist. * 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__project_manager_checklistClient extends Prisma.PrismaPromise { 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(onfulfilled?: ((value: T) => TResult1 | PromiseLike) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike) | undefined | null): runtime.Types.Utils.JsPromise /** * 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(onrejected?: ((reason: any) => TResult | PromiseLike) | undefined | null): runtime.Types.Utils.JsPromise /** * 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 } /** * Fields of the project_manager_checklist model */ export interface project_manager_checklistFieldRefs { readonly id: Prisma.FieldRef<"project_manager_checklist", 'Int'> readonly task_id: Prisma.FieldRef<"project_manager_checklist", 'Int'> readonly ticket_id: Prisma.FieldRef<"project_manager_checklist", 'Int'> readonly desc: Prisma.FieldRef<"project_manager_checklist", 'String'> readonly poids: Prisma.FieldRef<"project_manager_checklist", 'Int'> readonly done: Prisma.FieldRef<"project_manager_checklist", 'Int'> } // Custom InputTypes /** * project_manager_checklist findUnique */ export type project_manager_checklistFindUniqueArgs = { /** * Select specific fields to fetch from the project_manager_checklist */ select?: Prisma.project_manager_checklistSelect | null /** * Omit specific fields from the project_manager_checklist */ omit?: Prisma.project_manager_checklistOmit | null /** * Filter, which project_manager_checklist to fetch. */ where: Prisma.project_manager_checklistWhereUniqueInput } /** * project_manager_checklist findUniqueOrThrow */ export type project_manager_checklistFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the project_manager_checklist */ select?: Prisma.project_manager_checklistSelect | null /** * Omit specific fields from the project_manager_checklist */ omit?: Prisma.project_manager_checklistOmit | null /** * Filter, which project_manager_checklist to fetch. */ where: Prisma.project_manager_checklistWhereUniqueInput } /** * project_manager_checklist findFirst */ export type project_manager_checklistFindFirstArgs = { /** * Select specific fields to fetch from the project_manager_checklist */ select?: Prisma.project_manager_checklistSelect | null /** * Omit specific fields from the project_manager_checklist */ omit?: Prisma.project_manager_checklistOmit | null /** * Filter, which project_manager_checklist to fetch. */ where?: Prisma.project_manager_checklistWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of project_manager_checklists to fetch. */ orderBy?: Prisma.project_manager_checklistOrderByWithRelationInput | Prisma.project_manager_checklistOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for project_manager_checklists. */ cursor?: Prisma.project_manager_checklistWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` project_manager_checklists 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` project_manager_checklists. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of project_manager_checklists. */ distinct?: Prisma.Project_manager_checklistScalarFieldEnum | Prisma.Project_manager_checklistScalarFieldEnum[] } /** * project_manager_checklist findFirstOrThrow */ export type project_manager_checklistFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the project_manager_checklist */ select?: Prisma.project_manager_checklistSelect | null /** * Omit specific fields from the project_manager_checklist */ omit?: Prisma.project_manager_checklistOmit | null /** * Filter, which project_manager_checklist to fetch. */ where?: Prisma.project_manager_checklistWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of project_manager_checklists to fetch. */ orderBy?: Prisma.project_manager_checklistOrderByWithRelationInput | Prisma.project_manager_checklistOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for project_manager_checklists. */ cursor?: Prisma.project_manager_checklistWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` project_manager_checklists 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` project_manager_checklists. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of project_manager_checklists. */ distinct?: Prisma.Project_manager_checklistScalarFieldEnum | Prisma.Project_manager_checklistScalarFieldEnum[] } /** * project_manager_checklist findMany */ export type project_manager_checklistFindManyArgs = { /** * Select specific fields to fetch from the project_manager_checklist */ select?: Prisma.project_manager_checklistSelect | null /** * Omit specific fields from the project_manager_checklist */ omit?: Prisma.project_manager_checklistOmit | null /** * Filter, which project_manager_checklists to fetch. */ where?: Prisma.project_manager_checklistWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of project_manager_checklists to fetch. */ orderBy?: Prisma.project_manager_checklistOrderByWithRelationInput | Prisma.project_manager_checklistOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing project_manager_checklists. */ cursor?: Prisma.project_manager_checklistWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` project_manager_checklists 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` project_manager_checklists. */ skip?: number distinct?: Prisma.Project_manager_checklistScalarFieldEnum | Prisma.Project_manager_checklistScalarFieldEnum[] } /** * project_manager_checklist create */ export type project_manager_checklistCreateArgs = { /** * Select specific fields to fetch from the project_manager_checklist */ select?: Prisma.project_manager_checklistSelect | null /** * Omit specific fields from the project_manager_checklist */ omit?: Prisma.project_manager_checklistOmit | null /** * The data needed to create a project_manager_checklist. */ data: Prisma.XOR } /** * project_manager_checklist createMany */ export type project_manager_checklistCreateManyArgs = { /** * The data used to create many project_manager_checklists. */ data: Prisma.project_manager_checklistCreateManyInput | Prisma.project_manager_checklistCreateManyInput[] skipDuplicates?: boolean } /** * project_manager_checklist update */ export type project_manager_checklistUpdateArgs = { /** * Select specific fields to fetch from the project_manager_checklist */ select?: Prisma.project_manager_checklistSelect | null /** * Omit specific fields from the project_manager_checklist */ omit?: Prisma.project_manager_checklistOmit | null /** * The data needed to update a project_manager_checklist. */ data: Prisma.XOR /** * Choose, which project_manager_checklist to update. */ where: Prisma.project_manager_checklistWhereUniqueInput } /** * project_manager_checklist updateMany */ export type project_manager_checklistUpdateManyArgs = { /** * The data used to update project_manager_checklists. */ data: Prisma.XOR /** * Filter which project_manager_checklists to update */ where?: Prisma.project_manager_checklistWhereInput /** * Limit how many project_manager_checklists to update. */ limit?: number } /** * project_manager_checklist upsert */ export type project_manager_checklistUpsertArgs = { /** * Select specific fields to fetch from the project_manager_checklist */ select?: Prisma.project_manager_checklistSelect | null /** * Omit specific fields from the project_manager_checklist */ omit?: Prisma.project_manager_checklistOmit | null /** * The filter to search for the project_manager_checklist to update in case it exists. */ where: Prisma.project_manager_checklistWhereUniqueInput /** * In case the project_manager_checklist found by the `where` argument doesn't exist, create a new project_manager_checklist with this data. */ create: Prisma.XOR /** * In case the project_manager_checklist was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * project_manager_checklist delete */ export type project_manager_checklistDeleteArgs = { /** * Select specific fields to fetch from the project_manager_checklist */ select?: Prisma.project_manager_checklistSelect | null /** * Omit specific fields from the project_manager_checklist */ omit?: Prisma.project_manager_checklistOmit | null /** * Filter which project_manager_checklist to delete. */ where: Prisma.project_manager_checklistWhereUniqueInput } /** * project_manager_checklist deleteMany */ export type project_manager_checklistDeleteManyArgs = { /** * Filter which project_manager_checklists to delete */ where?: Prisma.project_manager_checklistWhereInput /** * Limit how many project_manager_checklists to delete. */ limit?: number } /** * project_manager_checklist without action */ export type project_manager_checklistDefaultArgs = { /** * Select specific fields to fetch from the project_manager_checklist */ select?: Prisma.project_manager_checklistSelect | null /** * Omit specific fields from the project_manager_checklist */ omit?: Prisma.project_manager_checklistOmit | null }