/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `codeDesjardins` 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 codeDesjardins * */ export type codeDesjardinsModel = runtime.Types.Result.DefaultSelection export type AggregateCodeDesjardins = { _count: CodeDesjardinsCountAggregateOutputType | null _min: CodeDesjardinsMinAggregateOutputType | null _max: CodeDesjardinsMaxAggregateOutputType | null } export type CodeDesjardinsMinAggregateOutputType = { id: string | null code: string | null label: string | null description: string | null } export type CodeDesjardinsMaxAggregateOutputType = { id: string | null code: string | null label: string | null description: string | null } export type CodeDesjardinsCountAggregateOutputType = { id: number code: number label: number description: number _all: number } export type CodeDesjardinsMinAggregateInputType = { id?: true code?: true label?: true description?: true } export type CodeDesjardinsMaxAggregateInputType = { id?: true code?: true label?: true description?: true } export type CodeDesjardinsCountAggregateInputType = { id?: true code?: true label?: true description?: true _all?: true } export type CodeDesjardinsAggregateArgs = { /** * Filter which codeDesjardins to aggregate. */ where?: Prisma.codeDesjardinsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of codeDesjardins to fetch. */ orderBy?: Prisma.codeDesjardinsOrderByWithRelationInput | Prisma.codeDesjardinsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.codeDesjardinsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` codeDesjardins 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` codeDesjardins. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned codeDesjardins **/ _count?: true | CodeDesjardinsCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: CodeDesjardinsMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: CodeDesjardinsMaxAggregateInputType } export type GetCodeDesjardinsAggregateType = { [P in keyof T & keyof AggregateCodeDesjardins]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type codeDesjardinsGroupByArgs = { where?: Prisma.codeDesjardinsWhereInput orderBy?: Prisma.codeDesjardinsOrderByWithAggregationInput | Prisma.codeDesjardinsOrderByWithAggregationInput[] by: Prisma.CodeDesjardinsScalarFieldEnum[] | Prisma.CodeDesjardinsScalarFieldEnum having?: Prisma.codeDesjardinsScalarWhereWithAggregatesInput take?: number skip?: number _count?: CodeDesjardinsCountAggregateInputType | true _min?: CodeDesjardinsMinAggregateInputType _max?: CodeDesjardinsMaxAggregateInputType } export type CodeDesjardinsGroupByOutputType = { id: string code: string label: string description: string _count: CodeDesjardinsCountAggregateOutputType | null _min: CodeDesjardinsMinAggregateOutputType | null _max: CodeDesjardinsMaxAggregateOutputType | null } type GetCodeDesjardinsGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof CodeDesjardinsGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type codeDesjardinsWhereInput = { AND?: Prisma.codeDesjardinsWhereInput | Prisma.codeDesjardinsWhereInput[] OR?: Prisma.codeDesjardinsWhereInput[] NOT?: Prisma.codeDesjardinsWhereInput | Prisma.codeDesjardinsWhereInput[] id?: Prisma.StringFilter<"codeDesjardins"> | string code?: Prisma.StringFilter<"codeDesjardins"> | string label?: Prisma.StringFilter<"codeDesjardins"> | string description?: Prisma.StringFilter<"codeDesjardins"> | string } export type codeDesjardinsOrderByWithRelationInput = { id?: Prisma.SortOrder code?: Prisma.SortOrder label?: Prisma.SortOrder description?: Prisma.SortOrder } export type codeDesjardinsWhereUniqueInput = Prisma.AtLeast<{ id?: string AND?: Prisma.codeDesjardinsWhereInput | Prisma.codeDesjardinsWhereInput[] OR?: Prisma.codeDesjardinsWhereInput[] NOT?: Prisma.codeDesjardinsWhereInput | Prisma.codeDesjardinsWhereInput[] code?: Prisma.StringFilter<"codeDesjardins"> | string label?: Prisma.StringFilter<"codeDesjardins"> | string description?: Prisma.StringFilter<"codeDesjardins"> | string }, "id"> export type codeDesjardinsOrderByWithAggregationInput = { id?: Prisma.SortOrder code?: Prisma.SortOrder label?: Prisma.SortOrder description?: Prisma.SortOrder _count?: Prisma.codeDesjardinsCountOrderByAggregateInput _max?: Prisma.codeDesjardinsMaxOrderByAggregateInput _min?: Prisma.codeDesjardinsMinOrderByAggregateInput } export type codeDesjardinsScalarWhereWithAggregatesInput = { AND?: Prisma.codeDesjardinsScalarWhereWithAggregatesInput | Prisma.codeDesjardinsScalarWhereWithAggregatesInput[] OR?: Prisma.codeDesjardinsScalarWhereWithAggregatesInput[] NOT?: Prisma.codeDesjardinsScalarWhereWithAggregatesInput | Prisma.codeDesjardinsScalarWhereWithAggregatesInput[] id?: Prisma.StringWithAggregatesFilter<"codeDesjardins"> | string code?: Prisma.StringWithAggregatesFilter<"codeDesjardins"> | string label?: Prisma.StringWithAggregatesFilter<"codeDesjardins"> | string description?: Prisma.StringWithAggregatesFilter<"codeDesjardins"> | string } export type codeDesjardinsCreateInput = { id: string code: string label: string description: string } export type codeDesjardinsUncheckedCreateInput = { id: string code: string label: string description: string } export type codeDesjardinsUpdateInput = { id?: Prisma.StringFieldUpdateOperationsInput | string code?: Prisma.StringFieldUpdateOperationsInput | string label?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.StringFieldUpdateOperationsInput | string } export type codeDesjardinsUncheckedUpdateInput = { id?: Prisma.StringFieldUpdateOperationsInput | string code?: Prisma.StringFieldUpdateOperationsInput | string label?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.StringFieldUpdateOperationsInput | string } export type codeDesjardinsCreateManyInput = { id: string code: string label: string description: string } export type codeDesjardinsUpdateManyMutationInput = { id?: Prisma.StringFieldUpdateOperationsInput | string code?: Prisma.StringFieldUpdateOperationsInput | string label?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.StringFieldUpdateOperationsInput | string } export type codeDesjardinsUncheckedUpdateManyInput = { id?: Prisma.StringFieldUpdateOperationsInput | string code?: Prisma.StringFieldUpdateOperationsInput | string label?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.StringFieldUpdateOperationsInput | string } export type codeDesjardinsCountOrderByAggregateInput = { id?: Prisma.SortOrder code?: Prisma.SortOrder label?: Prisma.SortOrder description?: Prisma.SortOrder } export type codeDesjardinsMaxOrderByAggregateInput = { id?: Prisma.SortOrder code?: Prisma.SortOrder label?: Prisma.SortOrder description?: Prisma.SortOrder } export type codeDesjardinsMinOrderByAggregateInput = { id?: Prisma.SortOrder code?: Prisma.SortOrder label?: Prisma.SortOrder description?: Prisma.SortOrder } export type StringFieldUpdateOperationsInput = { set?: string } export type codeDesjardinsSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean code?: boolean label?: boolean description?: boolean }, ExtArgs["result"]["codeDesjardins"]> export type codeDesjardinsSelectCreateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean code?: boolean label?: boolean description?: boolean }, ExtArgs["result"]["codeDesjardins"]> export type codeDesjardinsSelectUpdateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean code?: boolean label?: boolean description?: boolean }, ExtArgs["result"]["codeDesjardins"]> export type codeDesjardinsSelectScalar = { id?: boolean code?: boolean label?: boolean description?: boolean } export type codeDesjardinsOmit = runtime.Types.Extensions.GetOmit<"id" | "code" | "label" | "description", ExtArgs["result"]["codeDesjardins"]> export type $codeDesjardinsPayload = { name: "codeDesjardins" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: string code: string label: string description: string }, ExtArgs["result"]["codeDesjardins"]> composites: {} } export type codeDesjardinsGetPayload = runtime.Types.Result.GetResult export type codeDesjardinsCountArgs = Omit & { select?: CodeDesjardinsCountAggregateInputType | true } export interface codeDesjardinsDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['codeDesjardins'], meta: { name: 'codeDesjardins' } } /** * Find zero or one CodeDesjardins that matches the filter. * @param {codeDesjardinsFindUniqueArgs} args - Arguments to find a CodeDesjardins * @example * // Get one CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__codeDesjardinsClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one CodeDesjardins that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {codeDesjardinsFindUniqueOrThrowArgs} args - Arguments to find a CodeDesjardins * @example * // Get one CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__codeDesjardinsClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first CodeDesjardins 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 {codeDesjardinsFindFirstArgs} args - Arguments to find a CodeDesjardins * @example * // Get one CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__codeDesjardinsClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first CodeDesjardins 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 {codeDesjardinsFindFirstOrThrowArgs} args - Arguments to find a CodeDesjardins * @example * // Get one CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__codeDesjardinsClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more CodeDesjardins 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 {codeDesjardinsFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.findMany() * * // Get first 10 CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.findMany({ take: 10 }) * * // Only select the `id` * const codeDesjardinsWithIdOnly = await prisma.codeDesjardins.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a CodeDesjardins. * @param {codeDesjardinsCreateArgs} args - Arguments to create a CodeDesjardins. * @example * // Create one CodeDesjardins * const CodeDesjardins = await prisma.codeDesjardins.create({ * data: { * // ... data to create a CodeDesjardins * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__codeDesjardinsClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many CodeDesjardins. * @param {codeDesjardinsCreateManyArgs} args - Arguments to create many CodeDesjardins. * @example * // Create many CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create many CodeDesjardins and returns the data saved in the database. * @param {codeDesjardinsCreateManyAndReturnArgs} args - Arguments to create many CodeDesjardins. * @example * // Create many CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.createManyAndReturn({ * data: [ * // ... provide data here * ] * }) * * // Create many CodeDesjardins and only return the `id` * const codeDesjardinsWithIdOnly = await prisma.codeDesjardins.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(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "createManyAndReturn", GlobalOmitOptions>> /** * Delete a CodeDesjardins. * @param {codeDesjardinsDeleteArgs} args - Arguments to delete one CodeDesjardins. * @example * // Delete one CodeDesjardins * const CodeDesjardins = await prisma.codeDesjardins.delete({ * where: { * // ... filter to delete one CodeDesjardins * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__codeDesjardinsClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one CodeDesjardins. * @param {codeDesjardinsUpdateArgs} args - Arguments to update one CodeDesjardins. * @example * // Update one CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__codeDesjardinsClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more CodeDesjardins. * @param {codeDesjardinsDeleteManyArgs} args - Arguments to filter CodeDesjardins to delete. * @example * // Delete a few CodeDesjardins * const { count } = await prisma.codeDesjardins.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more CodeDesjardins. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {codeDesjardinsUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more CodeDesjardins and returns the data updated in the database. * @param {codeDesjardinsUpdateManyAndReturnArgs} args - Arguments to update many CodeDesjardins. * @example * // Update many CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.updateManyAndReturn({ * where: { * // ... provide filter here * }, * data: [ * // ... provide data here * ] * }) * * // Update zero or more CodeDesjardins and only return the `id` * const codeDesjardinsWithIdOnly = await prisma.codeDesjardins.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(args: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "updateManyAndReturn", GlobalOmitOptions>> /** * Create or update one CodeDesjardins. * @param {codeDesjardinsUpsertArgs} args - Arguments to update or create a CodeDesjardins. * @example * // Update or create a CodeDesjardins * const codeDesjardins = await prisma.codeDesjardins.upsert({ * create: { * // ... data to create a CodeDesjardins * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the CodeDesjardins we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__codeDesjardinsClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of CodeDesjardins. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {codeDesjardinsCountArgs} args - Arguments to filter CodeDesjardins to count. * @example * // Count the number of CodeDesjardins * const count = await prisma.codeDesjardins.count({ * where: { * // ... the filter for the CodeDesjardins 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 CodeDesjardins. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {CodeDesjardinsAggregateArgs} 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 CodeDesjardins. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {codeDesjardinsGroupByArgs} 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 codeDesjardinsGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: codeDesjardinsGroupByArgs['orderBy'] } : { orderBy?: codeDesjardinsGroupByArgs['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 ? GetCodeDesjardinsGroupByPayload : Prisma.PrismaPromise /** * Fields of the codeDesjardins model */ readonly fields: codeDesjardinsFieldRefs; } /** * The delegate class that acts as a "Promise-like" for codeDesjardins. * 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__codeDesjardinsClient 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 codeDesjardins model */ export interface codeDesjardinsFieldRefs { readonly id: Prisma.FieldRef<"codeDesjardins", 'String'> readonly code: Prisma.FieldRef<"codeDesjardins", 'String'> readonly label: Prisma.FieldRef<"codeDesjardins", 'String'> readonly description: Prisma.FieldRef<"codeDesjardins", 'String'> } // Custom InputTypes /** * codeDesjardins findUnique */ export type codeDesjardinsFindUniqueArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelect | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * Filter, which codeDesjardins to fetch. */ where: Prisma.codeDesjardinsWhereUniqueInput } /** * codeDesjardins findUniqueOrThrow */ export type codeDesjardinsFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelect | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * Filter, which codeDesjardins to fetch. */ where: Prisma.codeDesjardinsWhereUniqueInput } /** * codeDesjardins findFirst */ export type codeDesjardinsFindFirstArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelect | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * Filter, which codeDesjardins to fetch. */ where?: Prisma.codeDesjardinsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of codeDesjardins to fetch. */ orderBy?: Prisma.codeDesjardinsOrderByWithRelationInput | Prisma.codeDesjardinsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for codeDesjardins. */ cursor?: Prisma.codeDesjardinsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` codeDesjardins 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` codeDesjardins. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of codeDesjardins. */ distinct?: Prisma.CodeDesjardinsScalarFieldEnum | Prisma.CodeDesjardinsScalarFieldEnum[] } /** * codeDesjardins findFirstOrThrow */ export type codeDesjardinsFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelect | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * Filter, which codeDesjardins to fetch. */ where?: Prisma.codeDesjardinsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of codeDesjardins to fetch. */ orderBy?: Prisma.codeDesjardinsOrderByWithRelationInput | Prisma.codeDesjardinsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for codeDesjardins. */ cursor?: Prisma.codeDesjardinsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` codeDesjardins 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` codeDesjardins. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of codeDesjardins. */ distinct?: Prisma.CodeDesjardinsScalarFieldEnum | Prisma.CodeDesjardinsScalarFieldEnum[] } /** * codeDesjardins findMany */ export type codeDesjardinsFindManyArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelect | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * Filter, which codeDesjardins to fetch. */ where?: Prisma.codeDesjardinsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of codeDesjardins to fetch. */ orderBy?: Prisma.codeDesjardinsOrderByWithRelationInput | Prisma.codeDesjardinsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing codeDesjardins. */ cursor?: Prisma.codeDesjardinsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` codeDesjardins 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` codeDesjardins. */ skip?: number distinct?: Prisma.CodeDesjardinsScalarFieldEnum | Prisma.CodeDesjardinsScalarFieldEnum[] } /** * codeDesjardins create */ export type codeDesjardinsCreateArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelect | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * The data needed to create a codeDesjardins. */ data: Prisma.XOR } /** * codeDesjardins createMany */ export type codeDesjardinsCreateManyArgs = { /** * The data used to create many codeDesjardins. */ data: Prisma.codeDesjardinsCreateManyInput | Prisma.codeDesjardinsCreateManyInput[] skipDuplicates?: boolean } /** * codeDesjardins createManyAndReturn */ export type codeDesjardinsCreateManyAndReturnArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelectCreateManyAndReturn | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * The data used to create many codeDesjardins. */ data: Prisma.codeDesjardinsCreateManyInput | Prisma.codeDesjardinsCreateManyInput[] skipDuplicates?: boolean } /** * codeDesjardins update */ export type codeDesjardinsUpdateArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelect | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * The data needed to update a codeDesjardins. */ data: Prisma.XOR /** * Choose, which codeDesjardins to update. */ where: Prisma.codeDesjardinsWhereUniqueInput } /** * codeDesjardins updateMany */ export type codeDesjardinsUpdateManyArgs = { /** * The data used to update codeDesjardins. */ data: Prisma.XOR /** * Filter which codeDesjardins to update */ where?: Prisma.codeDesjardinsWhereInput /** * Limit how many codeDesjardins to update. */ limit?: number } /** * codeDesjardins updateManyAndReturn */ export type codeDesjardinsUpdateManyAndReturnArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelectUpdateManyAndReturn | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * The data used to update codeDesjardins. */ data: Prisma.XOR /** * Filter which codeDesjardins to update */ where?: Prisma.codeDesjardinsWhereInput /** * Limit how many codeDesjardins to update. */ limit?: number } /** * codeDesjardins upsert */ export type codeDesjardinsUpsertArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelect | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * The filter to search for the codeDesjardins to update in case it exists. */ where: Prisma.codeDesjardinsWhereUniqueInput /** * In case the codeDesjardins found by the `where` argument doesn't exist, create a new codeDesjardins with this data. */ create: Prisma.XOR /** * In case the codeDesjardins was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * codeDesjardins delete */ export type codeDesjardinsDeleteArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelect | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null /** * Filter which codeDesjardins to delete. */ where: Prisma.codeDesjardinsWhereUniqueInput } /** * codeDesjardins deleteMany */ export type codeDesjardinsDeleteManyArgs = { /** * Filter which codeDesjardins to delete */ where?: Prisma.codeDesjardinsWhereInput /** * Limit how many codeDesjardins to delete. */ limit?: number } /** * codeDesjardins without action */ export type codeDesjardinsDefaultArgs = { /** * Select specific fields to fetch from the codeDesjardins */ select?: Prisma.codeDesjardinsSelect | null /** * Omit specific fields from the codeDesjardins */ omit?: Prisma.codeDesjardinsOmit | null }