/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `tv_mac` 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 tv_mac * */ export type tv_macModel = runtime.Types.Result.DefaultSelection export type AggregateTv_mac = { _count: Tv_macCountAggregateOutputType | null _avg: Tv_macAvgAggregateOutputType | null _sum: Tv_macSumAggregateOutputType | null _min: Tv_macMinAggregateOutputType | null _max: Tv_macMaxAggregateOutputType | null } export type Tv_macAvgAggregateOutputType = { id: number | null service_id: number | null } export type Tv_macSumAggregateOutputType = { id: number | null service_id: number | null } export type Tv_macMinAggregateOutputType = { id: number | null service_id: number | null mac: string | null } export type Tv_macMaxAggregateOutputType = { id: number | null service_id: number | null mac: string | null } export type Tv_macCountAggregateOutputType = { id: number service_id: number mac: number _all: number } export type Tv_macAvgAggregateInputType = { id?: true service_id?: true } export type Tv_macSumAggregateInputType = { id?: true service_id?: true } export type Tv_macMinAggregateInputType = { id?: true service_id?: true mac?: true } export type Tv_macMaxAggregateInputType = { id?: true service_id?: true mac?: true } export type Tv_macCountAggregateInputType = { id?: true service_id?: true mac?: true _all?: true } export type Tv_macAggregateArgs = { /** * Filter which tv_mac to aggregate. */ where?: Prisma.tv_macWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tv_macs to fetch. */ orderBy?: Prisma.tv_macOrderByWithRelationInput | Prisma.tv_macOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.tv_macWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tv_macs 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` tv_macs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned tv_macs **/ _count?: true | Tv_macCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Tv_macAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Tv_macSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Tv_macMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Tv_macMaxAggregateInputType } export type GetTv_macAggregateType = { [P in keyof T & keyof AggregateTv_mac]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type tv_macGroupByArgs = { where?: Prisma.tv_macWhereInput orderBy?: Prisma.tv_macOrderByWithAggregationInput | Prisma.tv_macOrderByWithAggregationInput[] by: Prisma.Tv_macScalarFieldEnum[] | Prisma.Tv_macScalarFieldEnum having?: Prisma.tv_macScalarWhereWithAggregatesInput take?: number skip?: number _count?: Tv_macCountAggregateInputType | true _avg?: Tv_macAvgAggregateInputType _sum?: Tv_macSumAggregateInputType _min?: Tv_macMinAggregateInputType _max?: Tv_macMaxAggregateInputType } export type Tv_macGroupByOutputType = { id: number service_id: number mac: string _count: Tv_macCountAggregateOutputType | null _avg: Tv_macAvgAggregateOutputType | null _sum: Tv_macSumAggregateOutputType | null _min: Tv_macMinAggregateOutputType | null _max: Tv_macMaxAggregateOutputType | null } type GetTv_macGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Tv_macGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type tv_macWhereInput = { AND?: Prisma.tv_macWhereInput | Prisma.tv_macWhereInput[] OR?: Prisma.tv_macWhereInput[] NOT?: Prisma.tv_macWhereInput | Prisma.tv_macWhereInput[] id?: Prisma.IntFilter<"tv_mac"> | number service_id?: Prisma.IntFilter<"tv_mac"> | number mac?: Prisma.StringFilter<"tv_mac"> | string } export type tv_macOrderByWithRelationInput = { id?: Prisma.SortOrder service_id?: Prisma.SortOrder mac?: Prisma.SortOrder _relevance?: Prisma.tv_macOrderByRelevanceInput } export type tv_macWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.tv_macWhereInput | Prisma.tv_macWhereInput[] OR?: Prisma.tv_macWhereInput[] NOT?: Prisma.tv_macWhereInput | Prisma.tv_macWhereInput[] service_id?: Prisma.IntFilter<"tv_mac"> | number mac?: Prisma.StringFilter<"tv_mac"> | string }, "id"> export type tv_macOrderByWithAggregationInput = { id?: Prisma.SortOrder service_id?: Prisma.SortOrder mac?: Prisma.SortOrder _count?: Prisma.tv_macCountOrderByAggregateInput _avg?: Prisma.tv_macAvgOrderByAggregateInput _max?: Prisma.tv_macMaxOrderByAggregateInput _min?: Prisma.tv_macMinOrderByAggregateInput _sum?: Prisma.tv_macSumOrderByAggregateInput } export type tv_macScalarWhereWithAggregatesInput = { AND?: Prisma.tv_macScalarWhereWithAggregatesInput | Prisma.tv_macScalarWhereWithAggregatesInput[] OR?: Prisma.tv_macScalarWhereWithAggregatesInput[] NOT?: Prisma.tv_macScalarWhereWithAggregatesInput | Prisma.tv_macScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"tv_mac"> | number service_id?: Prisma.IntWithAggregatesFilter<"tv_mac"> | number mac?: Prisma.StringWithAggregatesFilter<"tv_mac"> | string } export type tv_macCreateInput = { service_id: number mac: string } export type tv_macUncheckedCreateInput = { id?: number service_id: number mac: string } export type tv_macUpdateInput = { service_id?: Prisma.IntFieldUpdateOperationsInput | number mac?: Prisma.StringFieldUpdateOperationsInput | string } export type tv_macUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number service_id?: Prisma.IntFieldUpdateOperationsInput | number mac?: Prisma.StringFieldUpdateOperationsInput | string } export type tv_macCreateManyInput = { id?: number service_id: number mac: string } export type tv_macUpdateManyMutationInput = { service_id?: Prisma.IntFieldUpdateOperationsInput | number mac?: Prisma.StringFieldUpdateOperationsInput | string } export type tv_macUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number service_id?: Prisma.IntFieldUpdateOperationsInput | number mac?: Prisma.StringFieldUpdateOperationsInput | string } export type tv_macOrderByRelevanceInput = { fields: Prisma.tv_macOrderByRelevanceFieldEnum | Prisma.tv_macOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type tv_macCountOrderByAggregateInput = { id?: Prisma.SortOrder service_id?: Prisma.SortOrder mac?: Prisma.SortOrder } export type tv_macAvgOrderByAggregateInput = { id?: Prisma.SortOrder service_id?: Prisma.SortOrder } export type tv_macMaxOrderByAggregateInput = { id?: Prisma.SortOrder service_id?: Prisma.SortOrder mac?: Prisma.SortOrder } export type tv_macMinOrderByAggregateInput = { id?: Prisma.SortOrder service_id?: Prisma.SortOrder mac?: Prisma.SortOrder } export type tv_macSumOrderByAggregateInput = { id?: Prisma.SortOrder service_id?: Prisma.SortOrder } export type tv_macSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean service_id?: boolean mac?: boolean }, ExtArgs["result"]["tv_mac"]> export type tv_macSelectScalar = { id?: boolean service_id?: boolean mac?: boolean } export type tv_macOmit = runtime.Types.Extensions.GetOmit<"id" | "service_id" | "mac", ExtArgs["result"]["tv_mac"]> export type $tv_macPayload = { name: "tv_mac" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number service_id: number mac: string }, ExtArgs["result"]["tv_mac"]> composites: {} } export type tv_macGetPayload = runtime.Types.Result.GetResult export type tv_macCountArgs = Omit & { select?: Tv_macCountAggregateInputType | true } export interface tv_macDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['tv_mac'], meta: { name: 'tv_mac' } } /** * Find zero or one Tv_mac that matches the filter. * @param {tv_macFindUniqueArgs} args - Arguments to find a Tv_mac * @example * // Get one Tv_mac * const tv_mac = await prisma.tv_mac.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__tv_macClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Tv_mac that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {tv_macFindUniqueOrThrowArgs} args - Arguments to find a Tv_mac * @example * // Get one Tv_mac * const tv_mac = await prisma.tv_mac.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__tv_macClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Tv_mac 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 {tv_macFindFirstArgs} args - Arguments to find a Tv_mac * @example * // Get one Tv_mac * const tv_mac = await prisma.tv_mac.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__tv_macClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Tv_mac 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 {tv_macFindFirstOrThrowArgs} args - Arguments to find a Tv_mac * @example * // Get one Tv_mac * const tv_mac = await prisma.tv_mac.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__tv_macClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Tv_macs 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 {tv_macFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Tv_macs * const tv_macs = await prisma.tv_mac.findMany() * * // Get first 10 Tv_macs * const tv_macs = await prisma.tv_mac.findMany({ take: 10 }) * * // Only select the `id` * const tv_macWithIdOnly = await prisma.tv_mac.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Tv_mac. * @param {tv_macCreateArgs} args - Arguments to create a Tv_mac. * @example * // Create one Tv_mac * const Tv_mac = await prisma.tv_mac.create({ * data: { * // ... data to create a Tv_mac * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__tv_macClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Tv_macs. * @param {tv_macCreateManyArgs} args - Arguments to create many Tv_macs. * @example * // Create many Tv_macs * const tv_mac = await prisma.tv_mac.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Tv_mac. * @param {tv_macDeleteArgs} args - Arguments to delete one Tv_mac. * @example * // Delete one Tv_mac * const Tv_mac = await prisma.tv_mac.delete({ * where: { * // ... filter to delete one Tv_mac * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__tv_macClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Tv_mac. * @param {tv_macUpdateArgs} args - Arguments to update one Tv_mac. * @example * // Update one Tv_mac * const tv_mac = await prisma.tv_mac.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__tv_macClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Tv_macs. * @param {tv_macDeleteManyArgs} args - Arguments to filter Tv_macs to delete. * @example * // Delete a few Tv_macs * const { count } = await prisma.tv_mac.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Tv_macs. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tv_macUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Tv_macs * const tv_mac = await prisma.tv_mac.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Tv_mac. * @param {tv_macUpsertArgs} args - Arguments to update or create a Tv_mac. * @example * // Update or create a Tv_mac * const tv_mac = await prisma.tv_mac.upsert({ * create: { * // ... data to create a Tv_mac * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Tv_mac we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__tv_macClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Tv_macs. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tv_macCountArgs} args - Arguments to filter Tv_macs to count. * @example * // Count the number of Tv_macs * const count = await prisma.tv_mac.count({ * where: { * // ... the filter for the Tv_macs 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 Tv_mac. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Tv_macAggregateArgs} 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 Tv_mac. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tv_macGroupByArgs} 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 tv_macGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: tv_macGroupByArgs['orderBy'] } : { orderBy?: tv_macGroupByArgs['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 ? GetTv_macGroupByPayload : Prisma.PrismaPromise /** * Fields of the tv_mac model */ readonly fields: tv_macFieldRefs; } /** * The delegate class that acts as a "Promise-like" for tv_mac. * 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__tv_macClient 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 tv_mac model */ export interface tv_macFieldRefs { readonly id: Prisma.FieldRef<"tv_mac", 'Int'> readonly service_id: Prisma.FieldRef<"tv_mac", 'Int'> readonly mac: Prisma.FieldRef<"tv_mac", 'String'> } // Custom InputTypes /** * tv_mac findUnique */ export type tv_macFindUniqueArgs = { /** * Select specific fields to fetch from the tv_mac */ select?: Prisma.tv_macSelect | null /** * Omit specific fields from the tv_mac */ omit?: Prisma.tv_macOmit | null /** * Filter, which tv_mac to fetch. */ where: Prisma.tv_macWhereUniqueInput } /** * tv_mac findUniqueOrThrow */ export type tv_macFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the tv_mac */ select?: Prisma.tv_macSelect | null /** * Omit specific fields from the tv_mac */ omit?: Prisma.tv_macOmit | null /** * Filter, which tv_mac to fetch. */ where: Prisma.tv_macWhereUniqueInput } /** * tv_mac findFirst */ export type tv_macFindFirstArgs = { /** * Select specific fields to fetch from the tv_mac */ select?: Prisma.tv_macSelect | null /** * Omit specific fields from the tv_mac */ omit?: Prisma.tv_macOmit | null /** * Filter, which tv_mac to fetch. */ where?: Prisma.tv_macWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tv_macs to fetch. */ orderBy?: Prisma.tv_macOrderByWithRelationInput | Prisma.tv_macOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for tv_macs. */ cursor?: Prisma.tv_macWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tv_macs 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` tv_macs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of tv_macs. */ distinct?: Prisma.Tv_macScalarFieldEnum | Prisma.Tv_macScalarFieldEnum[] } /** * tv_mac findFirstOrThrow */ export type tv_macFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the tv_mac */ select?: Prisma.tv_macSelect | null /** * Omit specific fields from the tv_mac */ omit?: Prisma.tv_macOmit | null /** * Filter, which tv_mac to fetch. */ where?: Prisma.tv_macWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tv_macs to fetch. */ orderBy?: Prisma.tv_macOrderByWithRelationInput | Prisma.tv_macOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for tv_macs. */ cursor?: Prisma.tv_macWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tv_macs 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` tv_macs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of tv_macs. */ distinct?: Prisma.Tv_macScalarFieldEnum | Prisma.Tv_macScalarFieldEnum[] } /** * tv_mac findMany */ export type tv_macFindManyArgs = { /** * Select specific fields to fetch from the tv_mac */ select?: Prisma.tv_macSelect | null /** * Omit specific fields from the tv_mac */ omit?: Prisma.tv_macOmit | null /** * Filter, which tv_macs to fetch. */ where?: Prisma.tv_macWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tv_macs to fetch. */ orderBy?: Prisma.tv_macOrderByWithRelationInput | Prisma.tv_macOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing tv_macs. */ cursor?: Prisma.tv_macWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tv_macs 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` tv_macs. */ skip?: number distinct?: Prisma.Tv_macScalarFieldEnum | Prisma.Tv_macScalarFieldEnum[] } /** * tv_mac create */ export type tv_macCreateArgs = { /** * Select specific fields to fetch from the tv_mac */ select?: Prisma.tv_macSelect | null /** * Omit specific fields from the tv_mac */ omit?: Prisma.tv_macOmit | null /** * The data needed to create a tv_mac. */ data: Prisma.XOR } /** * tv_mac createMany */ export type tv_macCreateManyArgs = { /** * The data used to create many tv_macs. */ data: Prisma.tv_macCreateManyInput | Prisma.tv_macCreateManyInput[] skipDuplicates?: boolean } /** * tv_mac update */ export type tv_macUpdateArgs = { /** * Select specific fields to fetch from the tv_mac */ select?: Prisma.tv_macSelect | null /** * Omit specific fields from the tv_mac */ omit?: Prisma.tv_macOmit | null /** * The data needed to update a tv_mac. */ data: Prisma.XOR /** * Choose, which tv_mac to update. */ where: Prisma.tv_macWhereUniqueInput } /** * tv_mac updateMany */ export type tv_macUpdateManyArgs = { /** * The data used to update tv_macs. */ data: Prisma.XOR /** * Filter which tv_macs to update */ where?: Prisma.tv_macWhereInput /** * Limit how many tv_macs to update. */ limit?: number } /** * tv_mac upsert */ export type tv_macUpsertArgs = { /** * Select specific fields to fetch from the tv_mac */ select?: Prisma.tv_macSelect | null /** * Omit specific fields from the tv_mac */ omit?: Prisma.tv_macOmit | null /** * The filter to search for the tv_mac to update in case it exists. */ where: Prisma.tv_macWhereUniqueInput /** * In case the tv_mac found by the `where` argument doesn't exist, create a new tv_mac with this data. */ create: Prisma.XOR /** * In case the tv_mac was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * tv_mac delete */ export type tv_macDeleteArgs = { /** * Select specific fields to fetch from the tv_mac */ select?: Prisma.tv_macSelect | null /** * Omit specific fields from the tv_mac */ omit?: Prisma.tv_macOmit | null /** * Filter which tv_mac to delete. */ where: Prisma.tv_macWhereUniqueInput } /** * tv_mac deleteMany */ export type tv_macDeleteManyArgs = { /** * Filter which tv_macs to delete */ where?: Prisma.tv_macWhereInput /** * Limit how many tv_macs to delete. */ limit?: number } /** * tv_mac without action */ export type tv_macDefaultArgs = { /** * Select specific fields to fetch from the tv_mac */ select?: Prisma.tv_macSelect | null /** * Omit specific fields from the tv_mac */ omit?: Prisma.tv_macOmit | null }