/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `fibre_olt` 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 fibre_olt * */ export type fibre_oltModel = runtime.Types.Result.DefaultSelection export type AggregateFibre_olt = { _count: Fibre_oltCountAggregateOutputType | null _avg: Fibre_oltAvgAggregateOutputType | null _sum: Fibre_oltSumAggregateOutputType | null _min: Fibre_oltMinAggregateOutputType | null _max: Fibre_oltMaxAggregateOutputType | null } export type Fibre_oltAvgAggregateOutputType = { id: number | null tech: number | null } export type Fibre_oltSumAggregateOutputType = { id: number | null tech: number | null } export type Fibre_oltMinAggregateOutputType = { id: number | null tech: number | null ip: string | null description: string | null } export type Fibre_oltMaxAggregateOutputType = { id: number | null tech: number | null ip: string | null description: string | null } export type Fibre_oltCountAggregateOutputType = { id: number tech: number ip: number description: number _all: number } export type Fibre_oltAvgAggregateInputType = { id?: true tech?: true } export type Fibre_oltSumAggregateInputType = { id?: true tech?: true } export type Fibre_oltMinAggregateInputType = { id?: true tech?: true ip?: true description?: true } export type Fibre_oltMaxAggregateInputType = { id?: true tech?: true ip?: true description?: true } export type Fibre_oltCountAggregateInputType = { id?: true tech?: true ip?: true description?: true _all?: true } export type Fibre_oltAggregateArgs = { /** * Filter which fibre_olt to aggregate. */ where?: Prisma.fibre_oltWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of fibre_olts to fetch. */ orderBy?: Prisma.fibre_oltOrderByWithRelationInput | Prisma.fibre_oltOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.fibre_oltWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` fibre_olts 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` fibre_olts. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned fibre_olts **/ _count?: true | Fibre_oltCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Fibre_oltAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Fibre_oltSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Fibre_oltMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Fibre_oltMaxAggregateInputType } export type GetFibre_oltAggregateType = { [P in keyof T & keyof AggregateFibre_olt]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type fibre_oltGroupByArgs = { where?: Prisma.fibre_oltWhereInput orderBy?: Prisma.fibre_oltOrderByWithAggregationInput | Prisma.fibre_oltOrderByWithAggregationInput[] by: Prisma.Fibre_oltScalarFieldEnum[] | Prisma.Fibre_oltScalarFieldEnum having?: Prisma.fibre_oltScalarWhereWithAggregatesInput take?: number skip?: number _count?: Fibre_oltCountAggregateInputType | true _avg?: Fibre_oltAvgAggregateInputType _sum?: Fibre_oltSumAggregateInputType _min?: Fibre_oltMinAggregateInputType _max?: Fibre_oltMaxAggregateInputType } export type Fibre_oltGroupByOutputType = { id: number tech: number ip: string description: string _count: Fibre_oltCountAggregateOutputType | null _avg: Fibre_oltAvgAggregateOutputType | null _sum: Fibre_oltSumAggregateOutputType | null _min: Fibre_oltMinAggregateOutputType | null _max: Fibre_oltMaxAggregateOutputType | null } type GetFibre_oltGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Fibre_oltGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type fibre_oltWhereInput = { AND?: Prisma.fibre_oltWhereInput | Prisma.fibre_oltWhereInput[] OR?: Prisma.fibre_oltWhereInput[] NOT?: Prisma.fibre_oltWhereInput | Prisma.fibre_oltWhereInput[] id?: Prisma.IntFilter<"fibre_olt"> | number tech?: Prisma.IntFilter<"fibre_olt"> | number ip?: Prisma.StringFilter<"fibre_olt"> | string description?: Prisma.StringFilter<"fibre_olt"> | string } export type fibre_oltOrderByWithRelationInput = { id?: Prisma.SortOrder tech?: Prisma.SortOrder ip?: Prisma.SortOrder description?: Prisma.SortOrder _relevance?: Prisma.fibre_oltOrderByRelevanceInput } export type fibre_oltWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.fibre_oltWhereInput | Prisma.fibre_oltWhereInput[] OR?: Prisma.fibre_oltWhereInput[] NOT?: Prisma.fibre_oltWhereInput | Prisma.fibre_oltWhereInput[] tech?: Prisma.IntFilter<"fibre_olt"> | number ip?: Prisma.StringFilter<"fibre_olt"> | string description?: Prisma.StringFilter<"fibre_olt"> | string }, "id"> export type fibre_oltOrderByWithAggregationInput = { id?: Prisma.SortOrder tech?: Prisma.SortOrder ip?: Prisma.SortOrder description?: Prisma.SortOrder _count?: Prisma.fibre_oltCountOrderByAggregateInput _avg?: Prisma.fibre_oltAvgOrderByAggregateInput _max?: Prisma.fibre_oltMaxOrderByAggregateInput _min?: Prisma.fibre_oltMinOrderByAggregateInput _sum?: Prisma.fibre_oltSumOrderByAggregateInput } export type fibre_oltScalarWhereWithAggregatesInput = { AND?: Prisma.fibre_oltScalarWhereWithAggregatesInput | Prisma.fibre_oltScalarWhereWithAggregatesInput[] OR?: Prisma.fibre_oltScalarWhereWithAggregatesInput[] NOT?: Prisma.fibre_oltScalarWhereWithAggregatesInput | Prisma.fibre_oltScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"fibre_olt"> | number tech?: Prisma.IntWithAggregatesFilter<"fibre_olt"> | number ip?: Prisma.StringWithAggregatesFilter<"fibre_olt"> | string description?: Prisma.StringWithAggregatesFilter<"fibre_olt"> | string } export type fibre_oltCreateInput = { tech: number ip: string description: string } export type fibre_oltUncheckedCreateInput = { id?: number tech: number ip: string description: string } export type fibre_oltUpdateInput = { tech?: Prisma.IntFieldUpdateOperationsInput | number ip?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.StringFieldUpdateOperationsInput | string } export type fibre_oltUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number tech?: Prisma.IntFieldUpdateOperationsInput | number ip?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.StringFieldUpdateOperationsInput | string } export type fibre_oltCreateManyInput = { id?: number tech: number ip: string description: string } export type fibre_oltUpdateManyMutationInput = { tech?: Prisma.IntFieldUpdateOperationsInput | number ip?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.StringFieldUpdateOperationsInput | string } export type fibre_oltUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number tech?: Prisma.IntFieldUpdateOperationsInput | number ip?: Prisma.StringFieldUpdateOperationsInput | string description?: Prisma.StringFieldUpdateOperationsInput | string } export type fibre_oltOrderByRelevanceInput = { fields: Prisma.fibre_oltOrderByRelevanceFieldEnum | Prisma.fibre_oltOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type fibre_oltCountOrderByAggregateInput = { id?: Prisma.SortOrder tech?: Prisma.SortOrder ip?: Prisma.SortOrder description?: Prisma.SortOrder } export type fibre_oltAvgOrderByAggregateInput = { id?: Prisma.SortOrder tech?: Prisma.SortOrder } export type fibre_oltMaxOrderByAggregateInput = { id?: Prisma.SortOrder tech?: Prisma.SortOrder ip?: Prisma.SortOrder description?: Prisma.SortOrder } export type fibre_oltMinOrderByAggregateInput = { id?: Prisma.SortOrder tech?: Prisma.SortOrder ip?: Prisma.SortOrder description?: Prisma.SortOrder } export type fibre_oltSumOrderByAggregateInput = { id?: Prisma.SortOrder tech?: Prisma.SortOrder } export type fibre_oltSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean tech?: boolean ip?: boolean description?: boolean }, ExtArgs["result"]["fibre_olt"]> export type fibre_oltSelectScalar = { id?: boolean tech?: boolean ip?: boolean description?: boolean } export type fibre_oltOmit = runtime.Types.Extensions.GetOmit<"id" | "tech" | "ip" | "description", ExtArgs["result"]["fibre_olt"]> export type $fibre_oltPayload = { name: "fibre_olt" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number tech: number ip: string description: string }, ExtArgs["result"]["fibre_olt"]> composites: {} } export type fibre_oltGetPayload = runtime.Types.Result.GetResult export type fibre_oltCountArgs = Omit & { select?: Fibre_oltCountAggregateInputType | true } export interface fibre_oltDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['fibre_olt'], meta: { name: 'fibre_olt' } } /** * Find zero or one Fibre_olt that matches the filter. * @param {fibre_oltFindUniqueArgs} args - Arguments to find a Fibre_olt * @example * // Get one Fibre_olt * const fibre_olt = await prisma.fibre_olt.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_oltClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Fibre_olt that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {fibre_oltFindUniqueOrThrowArgs} args - Arguments to find a Fibre_olt * @example * // Get one Fibre_olt * const fibre_olt = await prisma.fibre_olt.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_oltClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Fibre_olt 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 {fibre_oltFindFirstArgs} args - Arguments to find a Fibre_olt * @example * // Get one Fibre_olt * const fibre_olt = await prisma.fibre_olt.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__fibre_oltClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Fibre_olt 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 {fibre_oltFindFirstOrThrowArgs} args - Arguments to find a Fibre_olt * @example * // Get one Fibre_olt * const fibre_olt = await prisma.fibre_olt.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__fibre_oltClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Fibre_olts 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 {fibre_oltFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Fibre_olts * const fibre_olts = await prisma.fibre_olt.findMany() * * // Get first 10 Fibre_olts * const fibre_olts = await prisma.fibre_olt.findMany({ take: 10 }) * * // Only select the `id` * const fibre_oltWithIdOnly = await prisma.fibre_olt.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Fibre_olt. * @param {fibre_oltCreateArgs} args - Arguments to create a Fibre_olt. * @example * // Create one Fibre_olt * const Fibre_olt = await prisma.fibre_olt.create({ * data: { * // ... data to create a Fibre_olt * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_oltClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Fibre_olts. * @param {fibre_oltCreateManyArgs} args - Arguments to create many Fibre_olts. * @example * // Create many Fibre_olts * const fibre_olt = await prisma.fibre_olt.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Fibre_olt. * @param {fibre_oltDeleteArgs} args - Arguments to delete one Fibre_olt. * @example * // Delete one Fibre_olt * const Fibre_olt = await prisma.fibre_olt.delete({ * where: { * // ... filter to delete one Fibre_olt * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_oltClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Fibre_olt. * @param {fibre_oltUpdateArgs} args - Arguments to update one Fibre_olt. * @example * // Update one Fibre_olt * const fibre_olt = await prisma.fibre_olt.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_oltClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Fibre_olts. * @param {fibre_oltDeleteManyArgs} args - Arguments to filter Fibre_olts to delete. * @example * // Delete a few Fibre_olts * const { count } = await prisma.fibre_olt.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Fibre_olts. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {fibre_oltUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Fibre_olts * const fibre_olt = await prisma.fibre_olt.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Fibre_olt. * @param {fibre_oltUpsertArgs} args - Arguments to update or create a Fibre_olt. * @example * // Update or create a Fibre_olt * const fibre_olt = await prisma.fibre_olt.upsert({ * create: { * // ... data to create a Fibre_olt * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Fibre_olt we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_oltClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Fibre_olts. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {fibre_oltCountArgs} args - Arguments to filter Fibre_olts to count. * @example * // Count the number of Fibre_olts * const count = await prisma.fibre_olt.count({ * where: { * // ... the filter for the Fibre_olts 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 Fibre_olt. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Fibre_oltAggregateArgs} 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 Fibre_olt. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {fibre_oltGroupByArgs} 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 fibre_oltGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: fibre_oltGroupByArgs['orderBy'] } : { orderBy?: fibre_oltGroupByArgs['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 ? GetFibre_oltGroupByPayload : Prisma.PrismaPromise /** * Fields of the fibre_olt model */ readonly fields: fibre_oltFieldRefs; } /** * The delegate class that acts as a "Promise-like" for fibre_olt. * 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__fibre_oltClient 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 fibre_olt model */ export interface fibre_oltFieldRefs { readonly id: Prisma.FieldRef<"fibre_olt", 'Int'> readonly tech: Prisma.FieldRef<"fibre_olt", 'Int'> readonly ip: Prisma.FieldRef<"fibre_olt", 'String'> readonly description: Prisma.FieldRef<"fibre_olt", 'String'> } // Custom InputTypes /** * fibre_olt findUnique */ export type fibre_oltFindUniqueArgs = { /** * Select specific fields to fetch from the fibre_olt */ select?: Prisma.fibre_oltSelect | null /** * Omit specific fields from the fibre_olt */ omit?: Prisma.fibre_oltOmit | null /** * Filter, which fibre_olt to fetch. */ where: Prisma.fibre_oltWhereUniqueInput } /** * fibre_olt findUniqueOrThrow */ export type fibre_oltFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the fibre_olt */ select?: Prisma.fibre_oltSelect | null /** * Omit specific fields from the fibre_olt */ omit?: Prisma.fibre_oltOmit | null /** * Filter, which fibre_olt to fetch. */ where: Prisma.fibre_oltWhereUniqueInput } /** * fibre_olt findFirst */ export type fibre_oltFindFirstArgs = { /** * Select specific fields to fetch from the fibre_olt */ select?: Prisma.fibre_oltSelect | null /** * Omit specific fields from the fibre_olt */ omit?: Prisma.fibre_oltOmit | null /** * Filter, which fibre_olt to fetch. */ where?: Prisma.fibre_oltWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of fibre_olts to fetch. */ orderBy?: Prisma.fibre_oltOrderByWithRelationInput | Prisma.fibre_oltOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for fibre_olts. */ cursor?: Prisma.fibre_oltWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` fibre_olts 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` fibre_olts. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of fibre_olts. */ distinct?: Prisma.Fibre_oltScalarFieldEnum | Prisma.Fibre_oltScalarFieldEnum[] } /** * fibre_olt findFirstOrThrow */ export type fibre_oltFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the fibre_olt */ select?: Prisma.fibre_oltSelect | null /** * Omit specific fields from the fibre_olt */ omit?: Prisma.fibre_oltOmit | null /** * Filter, which fibre_olt to fetch. */ where?: Prisma.fibre_oltWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of fibre_olts to fetch. */ orderBy?: Prisma.fibre_oltOrderByWithRelationInput | Prisma.fibre_oltOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for fibre_olts. */ cursor?: Prisma.fibre_oltWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` fibre_olts 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` fibre_olts. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of fibre_olts. */ distinct?: Prisma.Fibre_oltScalarFieldEnum | Prisma.Fibre_oltScalarFieldEnum[] } /** * fibre_olt findMany */ export type fibre_oltFindManyArgs = { /** * Select specific fields to fetch from the fibre_olt */ select?: Prisma.fibre_oltSelect | null /** * Omit specific fields from the fibre_olt */ omit?: Prisma.fibre_oltOmit | null /** * Filter, which fibre_olts to fetch. */ where?: Prisma.fibre_oltWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of fibre_olts to fetch. */ orderBy?: Prisma.fibre_oltOrderByWithRelationInput | Prisma.fibre_oltOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing fibre_olts. */ cursor?: Prisma.fibre_oltWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` fibre_olts 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` fibre_olts. */ skip?: number distinct?: Prisma.Fibre_oltScalarFieldEnum | Prisma.Fibre_oltScalarFieldEnum[] } /** * fibre_olt create */ export type fibre_oltCreateArgs = { /** * Select specific fields to fetch from the fibre_olt */ select?: Prisma.fibre_oltSelect | null /** * Omit specific fields from the fibre_olt */ omit?: Prisma.fibre_oltOmit | null /** * The data needed to create a fibre_olt. */ data: Prisma.XOR } /** * fibre_olt createMany */ export type fibre_oltCreateManyArgs = { /** * The data used to create many fibre_olts. */ data: Prisma.fibre_oltCreateManyInput | Prisma.fibre_oltCreateManyInput[] skipDuplicates?: boolean } /** * fibre_olt update */ export type fibre_oltUpdateArgs = { /** * Select specific fields to fetch from the fibre_olt */ select?: Prisma.fibre_oltSelect | null /** * Omit specific fields from the fibre_olt */ omit?: Prisma.fibre_oltOmit | null /** * The data needed to update a fibre_olt. */ data: Prisma.XOR /** * Choose, which fibre_olt to update. */ where: Prisma.fibre_oltWhereUniqueInput } /** * fibre_olt updateMany */ export type fibre_oltUpdateManyArgs = { /** * The data used to update fibre_olts. */ data: Prisma.XOR /** * Filter which fibre_olts to update */ where?: Prisma.fibre_oltWhereInput /** * Limit how many fibre_olts to update. */ limit?: number } /** * fibre_olt upsert */ export type fibre_oltUpsertArgs = { /** * Select specific fields to fetch from the fibre_olt */ select?: Prisma.fibre_oltSelect | null /** * Omit specific fields from the fibre_olt */ omit?: Prisma.fibre_oltOmit | null /** * The filter to search for the fibre_olt to update in case it exists. */ where: Prisma.fibre_oltWhereUniqueInput /** * In case the fibre_olt found by the `where` argument doesn't exist, create a new fibre_olt with this data. */ create: Prisma.XOR /** * In case the fibre_olt was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * fibre_olt delete */ export type fibre_oltDeleteArgs = { /** * Select specific fields to fetch from the fibre_olt */ select?: Prisma.fibre_oltSelect | null /** * Omit specific fields from the fibre_olt */ omit?: Prisma.fibre_oltOmit | null /** * Filter which fibre_olt to delete. */ where: Prisma.fibre_oltWhereUniqueInput } /** * fibre_olt deleteMany */ export type fibre_oltDeleteManyArgs = { /** * Filter which fibre_olts to delete */ where?: Prisma.fibre_oltWhereInput /** * Limit how many fibre_olts to delete. */ limit?: number } /** * fibre_olt without action */ export type fibre_oltDefaultArgs = { /** * Select specific fields to fetch from the fibre_olt */ select?: Prisma.fibre_oltSelect | null /** * Omit specific fields from the fibre_olt */ omit?: Prisma.fibre_oltOmit | null }