/* !!! 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_dispo` 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_dispo * */ export type staff_dispoModel = runtime.Types.Result.DefaultSelection export type AggregateStaff_dispo = { _count: Staff_dispoCountAggregateOutputType | null _avg: Staff_dispoAvgAggregateOutputType | null _sum: Staff_dispoSumAggregateOutputType | null _min: Staff_dispoMinAggregateOutputType | null _max: Staff_dispoMaxAggregateOutputType | null } export type Staff_dispoAvgAggregateOutputType = { id: number | null day_num: number | null staff_id: number | null } export type Staff_dispoSumAggregateOutputType = { id: number | null day_num: number | null staff_id: number | null } export type Staff_dispoMinAggregateOutputType = { id: number | null day_num: number | null staff_id: number | null } export type Staff_dispoMaxAggregateOutputType = { id: number | null day_num: number | null staff_id: number | null } export type Staff_dispoCountAggregateOutputType = { id: number day_num: number staff_id: number _all: number } export type Staff_dispoAvgAggregateInputType = { id?: true day_num?: true staff_id?: true } export type Staff_dispoSumAggregateInputType = { id?: true day_num?: true staff_id?: true } export type Staff_dispoMinAggregateInputType = { id?: true day_num?: true staff_id?: true } export type Staff_dispoMaxAggregateInputType = { id?: true day_num?: true staff_id?: true } export type Staff_dispoCountAggregateInputType = { id?: true day_num?: true staff_id?: true _all?: true } export type Staff_dispoAggregateArgs = { /** * Filter which staff_dispo to aggregate. */ where?: Prisma.staff_dispoWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of staff_dispos to fetch. */ orderBy?: Prisma.staff_dispoOrderByWithRelationInput | Prisma.staff_dispoOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.staff_dispoWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` staff_dispos 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_dispos. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned staff_dispos **/ _count?: true | Staff_dispoCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Staff_dispoAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Staff_dispoSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Staff_dispoMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Staff_dispoMaxAggregateInputType } export type GetStaff_dispoAggregateType = { [P in keyof T & keyof AggregateStaff_dispo]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type staff_dispoGroupByArgs = { where?: Prisma.staff_dispoWhereInput orderBy?: Prisma.staff_dispoOrderByWithAggregationInput | Prisma.staff_dispoOrderByWithAggregationInput[] by: Prisma.Staff_dispoScalarFieldEnum[] | Prisma.Staff_dispoScalarFieldEnum having?: Prisma.staff_dispoScalarWhereWithAggregatesInput take?: number skip?: number _count?: Staff_dispoCountAggregateInputType | true _avg?: Staff_dispoAvgAggregateInputType _sum?: Staff_dispoSumAggregateInputType _min?: Staff_dispoMinAggregateInputType _max?: Staff_dispoMaxAggregateInputType } export type Staff_dispoGroupByOutputType = { id: number day_num: number staff_id: number | null _count: Staff_dispoCountAggregateOutputType | null _avg: Staff_dispoAvgAggregateOutputType | null _sum: Staff_dispoSumAggregateOutputType | null _min: Staff_dispoMinAggregateOutputType | null _max: Staff_dispoMaxAggregateOutputType | null } type GetStaff_dispoGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Staff_dispoGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type staff_dispoWhereInput = { AND?: Prisma.staff_dispoWhereInput | Prisma.staff_dispoWhereInput[] OR?: Prisma.staff_dispoWhereInput[] NOT?: Prisma.staff_dispoWhereInput | Prisma.staff_dispoWhereInput[] id?: Prisma.IntFilter<"staff_dispo"> | number day_num?: Prisma.IntFilter<"staff_dispo"> | number staff_id?: Prisma.IntNullableFilter<"staff_dispo"> | number | null } export type staff_dispoOrderByWithRelationInput = { id?: Prisma.SortOrder day_num?: Prisma.SortOrder staff_id?: Prisma.SortOrderInput | Prisma.SortOrder } export type staff_dispoWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.staff_dispoWhereInput | Prisma.staff_dispoWhereInput[] OR?: Prisma.staff_dispoWhereInput[] NOT?: Prisma.staff_dispoWhereInput | Prisma.staff_dispoWhereInput[] day_num?: Prisma.IntFilter<"staff_dispo"> | number staff_id?: Prisma.IntNullableFilter<"staff_dispo"> | number | null }, "id"> export type staff_dispoOrderByWithAggregationInput = { id?: Prisma.SortOrder day_num?: Prisma.SortOrder staff_id?: Prisma.SortOrderInput | Prisma.SortOrder _count?: Prisma.staff_dispoCountOrderByAggregateInput _avg?: Prisma.staff_dispoAvgOrderByAggregateInput _max?: Prisma.staff_dispoMaxOrderByAggregateInput _min?: Prisma.staff_dispoMinOrderByAggregateInput _sum?: Prisma.staff_dispoSumOrderByAggregateInput } export type staff_dispoScalarWhereWithAggregatesInput = { AND?: Prisma.staff_dispoScalarWhereWithAggregatesInput | Prisma.staff_dispoScalarWhereWithAggregatesInput[] OR?: Prisma.staff_dispoScalarWhereWithAggregatesInput[] NOT?: Prisma.staff_dispoScalarWhereWithAggregatesInput | Prisma.staff_dispoScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"staff_dispo"> | number day_num?: Prisma.IntWithAggregatesFilter<"staff_dispo"> | number staff_id?: Prisma.IntNullableWithAggregatesFilter<"staff_dispo"> | number | null } export type staff_dispoCreateInput = { day_num: number staff_id?: number | null } export type staff_dispoUncheckedCreateInput = { id?: number day_num: number staff_id?: number | null } export type staff_dispoUpdateInput = { day_num?: Prisma.IntFieldUpdateOperationsInput | number staff_id?: Prisma.NullableIntFieldUpdateOperationsInput | number | null } export type staff_dispoUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number day_num?: Prisma.IntFieldUpdateOperationsInput | number staff_id?: Prisma.NullableIntFieldUpdateOperationsInput | number | null } export type staff_dispoCreateManyInput = { id?: number day_num: number staff_id?: number | null } export type staff_dispoUpdateManyMutationInput = { day_num?: Prisma.IntFieldUpdateOperationsInput | number staff_id?: Prisma.NullableIntFieldUpdateOperationsInput | number | null } export type staff_dispoUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number day_num?: Prisma.IntFieldUpdateOperationsInput | number staff_id?: Prisma.NullableIntFieldUpdateOperationsInput | number | null } export type staff_dispoCountOrderByAggregateInput = { id?: Prisma.SortOrder day_num?: Prisma.SortOrder staff_id?: Prisma.SortOrder } export type staff_dispoAvgOrderByAggregateInput = { id?: Prisma.SortOrder day_num?: Prisma.SortOrder staff_id?: Prisma.SortOrder } export type staff_dispoMaxOrderByAggregateInput = { id?: Prisma.SortOrder day_num?: Prisma.SortOrder staff_id?: Prisma.SortOrder } export type staff_dispoMinOrderByAggregateInput = { id?: Prisma.SortOrder day_num?: Prisma.SortOrder staff_id?: Prisma.SortOrder } export type staff_dispoSumOrderByAggregateInput = { id?: Prisma.SortOrder day_num?: Prisma.SortOrder staff_id?: Prisma.SortOrder } export type staff_dispoSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean day_num?: boolean staff_id?: boolean }, ExtArgs["result"]["staff_dispo"]> export type staff_dispoSelectScalar = { id?: boolean day_num?: boolean staff_id?: boolean } export type staff_dispoOmit = runtime.Types.Extensions.GetOmit<"id" | "day_num" | "staff_id", ExtArgs["result"]["staff_dispo"]> export type $staff_dispoPayload = { name: "staff_dispo" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number day_num: number staff_id: number | null }, ExtArgs["result"]["staff_dispo"]> composites: {} } export type staff_dispoGetPayload = runtime.Types.Result.GetResult export type staff_dispoCountArgs = Omit & { select?: Staff_dispoCountAggregateInputType | true } export interface staff_dispoDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['staff_dispo'], meta: { name: 'staff_dispo' } } /** * Find zero or one Staff_dispo that matches the filter. * @param {staff_dispoFindUniqueArgs} args - Arguments to find a Staff_dispo * @example * // Get one Staff_dispo * const staff_dispo = await prisma.staff_dispo.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__staff_dispoClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Staff_dispo that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {staff_dispoFindUniqueOrThrowArgs} args - Arguments to find a Staff_dispo * @example * // Get one Staff_dispo * const staff_dispo = await prisma.staff_dispo.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__staff_dispoClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Staff_dispo 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_dispoFindFirstArgs} args - Arguments to find a Staff_dispo * @example * // Get one Staff_dispo * const staff_dispo = await prisma.staff_dispo.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__staff_dispoClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Staff_dispo 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_dispoFindFirstOrThrowArgs} args - Arguments to find a Staff_dispo * @example * // Get one Staff_dispo * const staff_dispo = await prisma.staff_dispo.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__staff_dispoClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Staff_dispos 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_dispoFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Staff_dispos * const staff_dispos = await prisma.staff_dispo.findMany() * * // Get first 10 Staff_dispos * const staff_dispos = await prisma.staff_dispo.findMany({ take: 10 }) * * // Only select the `id` * const staff_dispoWithIdOnly = await prisma.staff_dispo.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Staff_dispo. * @param {staff_dispoCreateArgs} args - Arguments to create a Staff_dispo. * @example * // Create one Staff_dispo * const Staff_dispo = await prisma.staff_dispo.create({ * data: { * // ... data to create a Staff_dispo * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__staff_dispoClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Staff_dispos. * @param {staff_dispoCreateManyArgs} args - Arguments to create many Staff_dispos. * @example * // Create many Staff_dispos * const staff_dispo = await prisma.staff_dispo.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Staff_dispo. * @param {staff_dispoDeleteArgs} args - Arguments to delete one Staff_dispo. * @example * // Delete one Staff_dispo * const Staff_dispo = await prisma.staff_dispo.delete({ * where: { * // ... filter to delete one Staff_dispo * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__staff_dispoClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Staff_dispo. * @param {staff_dispoUpdateArgs} args - Arguments to update one Staff_dispo. * @example * // Update one Staff_dispo * const staff_dispo = await prisma.staff_dispo.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__staff_dispoClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Staff_dispos. * @param {staff_dispoDeleteManyArgs} args - Arguments to filter Staff_dispos to delete. * @example * // Delete a few Staff_dispos * const { count } = await prisma.staff_dispo.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Staff_dispos. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {staff_dispoUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Staff_dispos * const staff_dispo = await prisma.staff_dispo.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Staff_dispo. * @param {staff_dispoUpsertArgs} args - Arguments to update or create a Staff_dispo. * @example * // Update or create a Staff_dispo * const staff_dispo = await prisma.staff_dispo.upsert({ * create: { * // ... data to create a Staff_dispo * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Staff_dispo we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__staff_dispoClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Staff_dispos. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {staff_dispoCountArgs} args - Arguments to filter Staff_dispos to count. * @example * // Count the number of Staff_dispos * const count = await prisma.staff_dispo.count({ * where: { * // ... the filter for the Staff_dispos 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_dispo. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Staff_dispoAggregateArgs} 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_dispo. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {staff_dispoGroupByArgs} 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_dispoGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: staff_dispoGroupByArgs['orderBy'] } : { orderBy?: staff_dispoGroupByArgs['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_dispoGroupByPayload : Prisma.PrismaPromise /** * Fields of the staff_dispo model */ readonly fields: staff_dispoFieldRefs; } /** * The delegate class that acts as a "Promise-like" for staff_dispo. * 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_dispoClient 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_dispo model */ export interface staff_dispoFieldRefs { readonly id: Prisma.FieldRef<"staff_dispo", 'Int'> readonly day_num: Prisma.FieldRef<"staff_dispo", 'Int'> readonly staff_id: Prisma.FieldRef<"staff_dispo", 'Int'> } // Custom InputTypes /** * staff_dispo findUnique */ export type staff_dispoFindUniqueArgs = { /** * Select specific fields to fetch from the staff_dispo */ select?: Prisma.staff_dispoSelect | null /** * Omit specific fields from the staff_dispo */ omit?: Prisma.staff_dispoOmit | null /** * Filter, which staff_dispo to fetch. */ where: Prisma.staff_dispoWhereUniqueInput } /** * staff_dispo findUniqueOrThrow */ export type staff_dispoFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the staff_dispo */ select?: Prisma.staff_dispoSelect | null /** * Omit specific fields from the staff_dispo */ omit?: Prisma.staff_dispoOmit | null /** * Filter, which staff_dispo to fetch. */ where: Prisma.staff_dispoWhereUniqueInput } /** * staff_dispo findFirst */ export type staff_dispoFindFirstArgs = { /** * Select specific fields to fetch from the staff_dispo */ select?: Prisma.staff_dispoSelect | null /** * Omit specific fields from the staff_dispo */ omit?: Prisma.staff_dispoOmit | null /** * Filter, which staff_dispo to fetch. */ where?: Prisma.staff_dispoWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of staff_dispos to fetch. */ orderBy?: Prisma.staff_dispoOrderByWithRelationInput | Prisma.staff_dispoOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for staff_dispos. */ cursor?: Prisma.staff_dispoWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` staff_dispos 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_dispos. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of staff_dispos. */ distinct?: Prisma.Staff_dispoScalarFieldEnum | Prisma.Staff_dispoScalarFieldEnum[] } /** * staff_dispo findFirstOrThrow */ export type staff_dispoFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the staff_dispo */ select?: Prisma.staff_dispoSelect | null /** * Omit specific fields from the staff_dispo */ omit?: Prisma.staff_dispoOmit | null /** * Filter, which staff_dispo to fetch. */ where?: Prisma.staff_dispoWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of staff_dispos to fetch. */ orderBy?: Prisma.staff_dispoOrderByWithRelationInput | Prisma.staff_dispoOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for staff_dispos. */ cursor?: Prisma.staff_dispoWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` staff_dispos 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_dispos. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of staff_dispos. */ distinct?: Prisma.Staff_dispoScalarFieldEnum | Prisma.Staff_dispoScalarFieldEnum[] } /** * staff_dispo findMany */ export type staff_dispoFindManyArgs = { /** * Select specific fields to fetch from the staff_dispo */ select?: Prisma.staff_dispoSelect | null /** * Omit specific fields from the staff_dispo */ omit?: Prisma.staff_dispoOmit | null /** * Filter, which staff_dispos to fetch. */ where?: Prisma.staff_dispoWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of staff_dispos to fetch. */ orderBy?: Prisma.staff_dispoOrderByWithRelationInput | Prisma.staff_dispoOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing staff_dispos. */ cursor?: Prisma.staff_dispoWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` staff_dispos 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_dispos. */ skip?: number distinct?: Prisma.Staff_dispoScalarFieldEnum | Prisma.Staff_dispoScalarFieldEnum[] } /** * staff_dispo create */ export type staff_dispoCreateArgs = { /** * Select specific fields to fetch from the staff_dispo */ select?: Prisma.staff_dispoSelect | null /** * Omit specific fields from the staff_dispo */ omit?: Prisma.staff_dispoOmit | null /** * The data needed to create a staff_dispo. */ data: Prisma.XOR } /** * staff_dispo createMany */ export type staff_dispoCreateManyArgs = { /** * The data used to create many staff_dispos. */ data: Prisma.staff_dispoCreateManyInput | Prisma.staff_dispoCreateManyInput[] skipDuplicates?: boolean } /** * staff_dispo update */ export type staff_dispoUpdateArgs = { /** * Select specific fields to fetch from the staff_dispo */ select?: Prisma.staff_dispoSelect | null /** * Omit specific fields from the staff_dispo */ omit?: Prisma.staff_dispoOmit | null /** * The data needed to update a staff_dispo. */ data: Prisma.XOR /** * Choose, which staff_dispo to update. */ where: Prisma.staff_dispoWhereUniqueInput } /** * staff_dispo updateMany */ export type staff_dispoUpdateManyArgs = { /** * The data used to update staff_dispos. */ data: Prisma.XOR /** * Filter which staff_dispos to update */ where?: Prisma.staff_dispoWhereInput /** * Limit how many staff_dispos to update. */ limit?: number } /** * staff_dispo upsert */ export type staff_dispoUpsertArgs = { /** * Select specific fields to fetch from the staff_dispo */ select?: Prisma.staff_dispoSelect | null /** * Omit specific fields from the staff_dispo */ omit?: Prisma.staff_dispoOmit | null /** * The filter to search for the staff_dispo to update in case it exists. */ where: Prisma.staff_dispoWhereUniqueInput /** * In case the staff_dispo found by the `where` argument doesn't exist, create a new staff_dispo with this data. */ create: Prisma.XOR /** * In case the staff_dispo was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * staff_dispo delete */ export type staff_dispoDeleteArgs = { /** * Select specific fields to fetch from the staff_dispo */ select?: Prisma.staff_dispoSelect | null /** * Omit specific fields from the staff_dispo */ omit?: Prisma.staff_dispoOmit | null /** * Filter which staff_dispo to delete. */ where: Prisma.staff_dispoWhereUniqueInput } /** * staff_dispo deleteMany */ export type staff_dispoDeleteManyArgs = { /** * Filter which staff_dispos to delete */ where?: Prisma.staff_dispoWhereInput /** * Limit how many staff_dispos to delete. */ limit?: number } /** * staff_dispo without action */ export type staff_dispoDefaultArgs = { /** * Select specific fields to fetch from the staff_dispo */ select?: Prisma.staff_dispoSelect | null /** * Omit specific fields from the staff_dispo */ omit?: Prisma.staff_dispoOmit | null }