/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `staff_supp` 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 staff_supp * */ export type staff_suppModel = runtime.Types.Result.DefaultSelection export type AggregateStaff_supp = { _count: Staff_suppCountAggregateOutputType | null _avg: Staff_suppAvgAggregateOutputType | null _sum: Staff_suppSumAggregateOutputType | null _min: Staff_suppMinAggregateOutputType | null _max: Staff_suppMaxAggregateOutputType | null } export type Staff_suppAvgAggregateOutputType = { id: number | null } export type Staff_suppSumAggregateOutputType = { id: number | null } export type Staff_suppMinAggregateOutputType = { id: number | null nom: string | null staff_ids: string | null } export type Staff_suppMaxAggregateOutputType = { id: number | null nom: string | null staff_ids: string | null } export type Staff_suppCountAggregateOutputType = { id: number nom: number staff_ids: number _all: number } export type Staff_suppAvgAggregateInputType = { id?: true } export type Staff_suppSumAggregateInputType = { id?: true } export type Staff_suppMinAggregateInputType = { id?: true nom?: true staff_ids?: true } export type Staff_suppMaxAggregateInputType = { id?: true nom?: true staff_ids?: true } export type Staff_suppCountAggregateInputType = { id?: true nom?: true staff_ids?: true _all?: true } export type Staff_suppAggregateArgs = { /** * Filter which staff_supp to aggregate. */ where?: Prisma.staff_suppWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of staff_supps to fetch. */ orderBy?: Prisma.staff_suppOrderByWithRelationInput | Prisma.staff_suppOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.staff_suppWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` staff_supps 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` staff_supps. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned staff_supps **/ _count?: true | Staff_suppCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Staff_suppAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Staff_suppSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Staff_suppMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Staff_suppMaxAggregateInputType } export type GetStaff_suppAggregateType = { [P in keyof T & keyof AggregateStaff_supp]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type staff_suppGroupByArgs = { where?: Prisma.staff_suppWhereInput orderBy?: Prisma.staff_suppOrderByWithAggregationInput | Prisma.staff_suppOrderByWithAggregationInput[] by: Prisma.Staff_suppScalarFieldEnum[] | Prisma.Staff_suppScalarFieldEnum having?: Prisma.staff_suppScalarWhereWithAggregatesInput take?: number skip?: number _count?: Staff_suppCountAggregateInputType | true _avg?: Staff_suppAvgAggregateInputType _sum?: Staff_suppSumAggregateInputType _min?: Staff_suppMinAggregateInputType _max?: Staff_suppMaxAggregateInputType } export type Staff_suppGroupByOutputType = { id: number nom: string staff_ids: string _count: Staff_suppCountAggregateOutputType | null _avg: Staff_suppAvgAggregateOutputType | null _sum: Staff_suppSumAggregateOutputType | null _min: Staff_suppMinAggregateOutputType | null _max: Staff_suppMaxAggregateOutputType | null } type GetStaff_suppGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Staff_suppGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type staff_suppWhereInput = { AND?: Prisma.staff_suppWhereInput | Prisma.staff_suppWhereInput[] OR?: Prisma.staff_suppWhereInput[] NOT?: Prisma.staff_suppWhereInput | Prisma.staff_suppWhereInput[] id?: Prisma.IntFilter<"staff_supp"> | number nom?: Prisma.StringFilter<"staff_supp"> | string staff_ids?: Prisma.StringFilter<"staff_supp"> | string } export type staff_suppOrderByWithRelationInput = { id?: Prisma.SortOrder nom?: Prisma.SortOrder staff_ids?: Prisma.SortOrder _relevance?: Prisma.staff_suppOrderByRelevanceInput } export type staff_suppWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.staff_suppWhereInput | Prisma.staff_suppWhereInput[] OR?: Prisma.staff_suppWhereInput[] NOT?: Prisma.staff_suppWhereInput | Prisma.staff_suppWhereInput[] nom?: Prisma.StringFilter<"staff_supp"> | string staff_ids?: Prisma.StringFilter<"staff_supp"> | string }, "id"> export type staff_suppOrderByWithAggregationInput = { id?: Prisma.SortOrder nom?: Prisma.SortOrder staff_ids?: Prisma.SortOrder _count?: Prisma.staff_suppCountOrderByAggregateInput _avg?: Prisma.staff_suppAvgOrderByAggregateInput _max?: Prisma.staff_suppMaxOrderByAggregateInput _min?: Prisma.staff_suppMinOrderByAggregateInput _sum?: Prisma.staff_suppSumOrderByAggregateInput } export type staff_suppScalarWhereWithAggregatesInput = { AND?: Prisma.staff_suppScalarWhereWithAggregatesInput | Prisma.staff_suppScalarWhereWithAggregatesInput[] OR?: Prisma.staff_suppScalarWhereWithAggregatesInput[] NOT?: Prisma.staff_suppScalarWhereWithAggregatesInput | Prisma.staff_suppScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"staff_supp"> | number nom?: Prisma.StringWithAggregatesFilter<"staff_supp"> | string staff_ids?: Prisma.StringWithAggregatesFilter<"staff_supp"> | string } export type staff_suppCreateInput = { nom: string staff_ids: string } export type staff_suppUncheckedCreateInput = { id?: number nom: string staff_ids: string } export type staff_suppUpdateInput = { nom?: Prisma.StringFieldUpdateOperationsInput | string staff_ids?: Prisma.StringFieldUpdateOperationsInput | string } export type staff_suppUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number nom?: Prisma.StringFieldUpdateOperationsInput | string staff_ids?: Prisma.StringFieldUpdateOperationsInput | string } export type staff_suppCreateManyInput = { id?: number nom: string staff_ids: string } export type staff_suppUpdateManyMutationInput = { nom?: Prisma.StringFieldUpdateOperationsInput | string staff_ids?: Prisma.StringFieldUpdateOperationsInput | string } export type staff_suppUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number nom?: Prisma.StringFieldUpdateOperationsInput | string staff_ids?: Prisma.StringFieldUpdateOperationsInput | string } export type staff_suppOrderByRelevanceInput = { fields: Prisma.staff_suppOrderByRelevanceFieldEnum | Prisma.staff_suppOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type staff_suppCountOrderByAggregateInput = { id?: Prisma.SortOrder nom?: Prisma.SortOrder staff_ids?: Prisma.SortOrder } export type staff_suppAvgOrderByAggregateInput = { id?: Prisma.SortOrder } export type staff_suppMaxOrderByAggregateInput = { id?: Prisma.SortOrder nom?: Prisma.SortOrder staff_ids?: Prisma.SortOrder } export type staff_suppMinOrderByAggregateInput = { id?: Prisma.SortOrder nom?: Prisma.SortOrder staff_ids?: Prisma.SortOrder } export type staff_suppSumOrderByAggregateInput = { id?: Prisma.SortOrder } export type staff_suppSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean nom?: boolean staff_ids?: boolean }, ExtArgs["result"]["staff_supp"]> export type staff_suppSelectScalar = { id?: boolean nom?: boolean staff_ids?: boolean } export type staff_suppOmit = runtime.Types.Extensions.GetOmit<"id" | "nom" | "staff_ids", ExtArgs["result"]["staff_supp"]> export type $staff_suppPayload = { name: "staff_supp" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number nom: string staff_ids: string }, ExtArgs["result"]["staff_supp"]> composites: {} } export type staff_suppGetPayload = runtime.Types.Result.GetResult export type staff_suppCountArgs = Omit & { select?: Staff_suppCountAggregateInputType | true } export interface staff_suppDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['staff_supp'], meta: { name: 'staff_supp' } } /** * Find zero or one Staff_supp that matches the filter. * @param {staff_suppFindUniqueArgs} args - Arguments to find a Staff_supp * @example * // Get one Staff_supp * const staff_supp = await prisma.staff_supp.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__staff_suppClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Staff_supp that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {staff_suppFindUniqueOrThrowArgs} args - Arguments to find a Staff_supp * @example * // Get one Staff_supp * const staff_supp = await prisma.staff_supp.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__staff_suppClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Staff_supp 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 {staff_suppFindFirstArgs} args - Arguments to find a Staff_supp * @example * // Get one Staff_supp * const staff_supp = await prisma.staff_supp.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__staff_suppClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Staff_supp 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 {staff_suppFindFirstOrThrowArgs} args - Arguments to find a Staff_supp * @example * // Get one Staff_supp * const staff_supp = await prisma.staff_supp.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__staff_suppClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Staff_supps 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 {staff_suppFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Staff_supps * const staff_supps = await prisma.staff_supp.findMany() * * // Get first 10 Staff_supps * const staff_supps = await prisma.staff_supp.findMany({ take: 10 }) * * // Only select the `id` * const staff_suppWithIdOnly = await prisma.staff_supp.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Staff_supp. * @param {staff_suppCreateArgs} args - Arguments to create a Staff_supp. * @example * // Create one Staff_supp * const Staff_supp = await prisma.staff_supp.create({ * data: { * // ... data to create a Staff_supp * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__staff_suppClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Staff_supps. * @param {staff_suppCreateManyArgs} args - Arguments to create many Staff_supps. * @example * // Create many Staff_supps * const staff_supp = await prisma.staff_supp.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Staff_supp. * @param {staff_suppDeleteArgs} args - Arguments to delete one Staff_supp. * @example * // Delete one Staff_supp * const Staff_supp = await prisma.staff_supp.delete({ * where: { * // ... filter to delete one Staff_supp * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__staff_suppClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Staff_supp. * @param {staff_suppUpdateArgs} args - Arguments to update one Staff_supp. * @example * // Update one Staff_supp * const staff_supp = await prisma.staff_supp.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__staff_suppClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Staff_supps. * @param {staff_suppDeleteManyArgs} args - Arguments to filter Staff_supps to delete. * @example * // Delete a few Staff_supps * const { count } = await prisma.staff_supp.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Staff_supps. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {staff_suppUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Staff_supps * const staff_supp = await prisma.staff_supp.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Staff_supp. * @param {staff_suppUpsertArgs} args - Arguments to update or create a Staff_supp. * @example * // Update or create a Staff_supp * const staff_supp = await prisma.staff_supp.upsert({ * create: { * // ... data to create a Staff_supp * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Staff_supp we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__staff_suppClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Staff_supps. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {staff_suppCountArgs} args - Arguments to filter Staff_supps to count. * @example * // Count the number of Staff_supps * const count = await prisma.staff_supp.count({ * where: { * // ... the filter for the Staff_supps 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 Staff_supp. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Staff_suppAggregateArgs} 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 Staff_supp. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {staff_suppGroupByArgs} 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 staff_suppGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: staff_suppGroupByArgs['orderBy'] } : { orderBy?: staff_suppGroupByArgs['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 ? GetStaff_suppGroupByPayload : Prisma.PrismaPromise /** * Fields of the staff_supp model */ readonly fields: staff_suppFieldRefs; } /** * The delegate class that acts as a "Promise-like" for staff_supp. * 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__staff_suppClient 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 staff_supp model */ export interface staff_suppFieldRefs { readonly id: Prisma.FieldRef<"staff_supp", 'Int'> readonly nom: Prisma.FieldRef<"staff_supp", 'String'> readonly staff_ids: Prisma.FieldRef<"staff_supp", 'String'> } // Custom InputTypes /** * staff_supp findUnique */ export type staff_suppFindUniqueArgs = { /** * Select specific fields to fetch from the staff_supp */ select?: Prisma.staff_suppSelect | null /** * Omit specific fields from the staff_supp */ omit?: Prisma.staff_suppOmit | null /** * Filter, which staff_supp to fetch. */ where: Prisma.staff_suppWhereUniqueInput } /** * staff_supp findUniqueOrThrow */ export type staff_suppFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the staff_supp */ select?: Prisma.staff_suppSelect | null /** * Omit specific fields from the staff_supp */ omit?: Prisma.staff_suppOmit | null /** * Filter, which staff_supp to fetch. */ where: Prisma.staff_suppWhereUniqueInput } /** * staff_supp findFirst */ export type staff_suppFindFirstArgs = { /** * Select specific fields to fetch from the staff_supp */ select?: Prisma.staff_suppSelect | null /** * Omit specific fields from the staff_supp */ omit?: Prisma.staff_suppOmit | null /** * Filter, which staff_supp to fetch. */ where?: Prisma.staff_suppWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of staff_supps to fetch. */ orderBy?: Prisma.staff_suppOrderByWithRelationInput | Prisma.staff_suppOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for staff_supps. */ cursor?: Prisma.staff_suppWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` staff_supps 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` staff_supps. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of staff_supps. */ distinct?: Prisma.Staff_suppScalarFieldEnum | Prisma.Staff_suppScalarFieldEnum[] } /** * staff_supp findFirstOrThrow */ export type staff_suppFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the staff_supp */ select?: Prisma.staff_suppSelect | null /** * Omit specific fields from the staff_supp */ omit?: Prisma.staff_suppOmit | null /** * Filter, which staff_supp to fetch. */ where?: Prisma.staff_suppWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of staff_supps to fetch. */ orderBy?: Prisma.staff_suppOrderByWithRelationInput | Prisma.staff_suppOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for staff_supps. */ cursor?: Prisma.staff_suppWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` staff_supps 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` staff_supps. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of staff_supps. */ distinct?: Prisma.Staff_suppScalarFieldEnum | Prisma.Staff_suppScalarFieldEnum[] } /** * staff_supp findMany */ export type staff_suppFindManyArgs = { /** * Select specific fields to fetch from the staff_supp */ select?: Prisma.staff_suppSelect | null /** * Omit specific fields from the staff_supp */ omit?: Prisma.staff_suppOmit | null /** * Filter, which staff_supps to fetch. */ where?: Prisma.staff_suppWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of staff_supps to fetch. */ orderBy?: Prisma.staff_suppOrderByWithRelationInput | Prisma.staff_suppOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing staff_supps. */ cursor?: Prisma.staff_suppWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` staff_supps 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` staff_supps. */ skip?: number distinct?: Prisma.Staff_suppScalarFieldEnum | Prisma.Staff_suppScalarFieldEnum[] } /** * staff_supp create */ export type staff_suppCreateArgs = { /** * Select specific fields to fetch from the staff_supp */ select?: Prisma.staff_suppSelect | null /** * Omit specific fields from the staff_supp */ omit?: Prisma.staff_suppOmit | null /** * The data needed to create a staff_supp. */ data: Prisma.XOR } /** * staff_supp createMany */ export type staff_suppCreateManyArgs = { /** * The data used to create many staff_supps. */ data: Prisma.staff_suppCreateManyInput | Prisma.staff_suppCreateManyInput[] skipDuplicates?: boolean } /** * staff_supp update */ export type staff_suppUpdateArgs = { /** * Select specific fields to fetch from the staff_supp */ select?: Prisma.staff_suppSelect | null /** * Omit specific fields from the staff_supp */ omit?: Prisma.staff_suppOmit | null /** * The data needed to update a staff_supp. */ data: Prisma.XOR /** * Choose, which staff_supp to update. */ where: Prisma.staff_suppWhereUniqueInput } /** * staff_supp updateMany */ export type staff_suppUpdateManyArgs = { /** * The data used to update staff_supps. */ data: Prisma.XOR /** * Filter which staff_supps to update */ where?: Prisma.staff_suppWhereInput /** * Limit how many staff_supps to update. */ limit?: number } /** * staff_supp upsert */ export type staff_suppUpsertArgs = { /** * Select specific fields to fetch from the staff_supp */ select?: Prisma.staff_suppSelect | null /** * Omit specific fields from the staff_supp */ omit?: Prisma.staff_suppOmit | null /** * The filter to search for the staff_supp to update in case it exists. */ where: Prisma.staff_suppWhereUniqueInput /** * In case the staff_supp found by the `where` argument doesn't exist, create a new staff_supp with this data. */ create: Prisma.XOR /** * In case the staff_supp was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * staff_supp delete */ export type staff_suppDeleteArgs = { /** * Select specific fields to fetch from the staff_supp */ select?: Prisma.staff_suppSelect | null /** * Omit specific fields from the staff_supp */ omit?: Prisma.staff_suppOmit | null /** * Filter which staff_supp to delete. */ where: Prisma.staff_suppWhereUniqueInput } /** * staff_supp deleteMany */ export type staff_suppDeleteManyArgs = { /** * Filter which staff_supps to delete */ where?: Prisma.staff_suppWhereInput /** * Limit how many staff_supps to delete. */ limit?: number } /** * staff_supp without action */ export type staff_suppDefaultArgs = { /** * Select specific fields to fetch from the staff_supp */ select?: Prisma.staff_suppSelect | null /** * Omit specific fields from the staff_supp */ omit?: Prisma.staff_suppOmit | null }