/* !!! 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_tech` 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_tech * */ export type fibre_techModel = runtime.Types.Result.DefaultSelection export type AggregateFibre_tech = { _count: Fibre_techCountAggregateOutputType | null _avg: Fibre_techAvgAggregateOutputType | null _sum: Fibre_techSumAggregateOutputType | null _min: Fibre_techMinAggregateOutputType | null _max: Fibre_techMaxAggregateOutputType | null } export type Fibre_techAvgAggregateOutputType = { id: number | null } export type Fibre_techSumAggregateOutputType = { id: number | null } export type Fibre_techMinAggregateOutputType = { id: number | null description: string | null } export type Fibre_techMaxAggregateOutputType = { id: number | null description: string | null } export type Fibre_techCountAggregateOutputType = { id: number description: number _all: number } export type Fibre_techAvgAggregateInputType = { id?: true } export type Fibre_techSumAggregateInputType = { id?: true } export type Fibre_techMinAggregateInputType = { id?: true description?: true } export type Fibre_techMaxAggregateInputType = { id?: true description?: true } export type Fibre_techCountAggregateInputType = { id?: true description?: true _all?: true } export type Fibre_techAggregateArgs = { /** * Filter which fibre_tech to aggregate. */ where?: Prisma.fibre_techWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of fibre_teches to fetch. */ orderBy?: Prisma.fibre_techOrderByWithRelationInput | Prisma.fibre_techOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.fibre_techWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` fibre_teches 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_teches. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned fibre_teches **/ _count?: true | Fibre_techCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Fibre_techAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Fibre_techSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Fibre_techMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Fibre_techMaxAggregateInputType } export type GetFibre_techAggregateType = { [P in keyof T & keyof AggregateFibre_tech]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type fibre_techGroupByArgs = { where?: Prisma.fibre_techWhereInput orderBy?: Prisma.fibre_techOrderByWithAggregationInput | Prisma.fibre_techOrderByWithAggregationInput[] by: Prisma.Fibre_techScalarFieldEnum[] | Prisma.Fibre_techScalarFieldEnum having?: Prisma.fibre_techScalarWhereWithAggregatesInput take?: number skip?: number _count?: Fibre_techCountAggregateInputType | true _avg?: Fibre_techAvgAggregateInputType _sum?: Fibre_techSumAggregateInputType _min?: Fibre_techMinAggregateInputType _max?: Fibre_techMaxAggregateInputType } export type Fibre_techGroupByOutputType = { id: number description: string _count: Fibre_techCountAggregateOutputType | null _avg: Fibre_techAvgAggregateOutputType | null _sum: Fibre_techSumAggregateOutputType | null _min: Fibre_techMinAggregateOutputType | null _max: Fibre_techMaxAggregateOutputType | null } type GetFibre_techGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Fibre_techGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type fibre_techWhereInput = { AND?: Prisma.fibre_techWhereInput | Prisma.fibre_techWhereInput[] OR?: Prisma.fibre_techWhereInput[] NOT?: Prisma.fibre_techWhereInput | Prisma.fibre_techWhereInput[] id?: Prisma.IntFilter<"fibre_tech"> | number description?: Prisma.StringFilter<"fibre_tech"> | string } export type fibre_techOrderByWithRelationInput = { id?: Prisma.SortOrder description?: Prisma.SortOrder _relevance?: Prisma.fibre_techOrderByRelevanceInput } export type fibre_techWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.fibre_techWhereInput | Prisma.fibre_techWhereInput[] OR?: Prisma.fibre_techWhereInput[] NOT?: Prisma.fibre_techWhereInput | Prisma.fibre_techWhereInput[] description?: Prisma.StringFilter<"fibre_tech"> | string }, "id"> export type fibre_techOrderByWithAggregationInput = { id?: Prisma.SortOrder description?: Prisma.SortOrder _count?: Prisma.fibre_techCountOrderByAggregateInput _avg?: Prisma.fibre_techAvgOrderByAggregateInput _max?: Prisma.fibre_techMaxOrderByAggregateInput _min?: Prisma.fibre_techMinOrderByAggregateInput _sum?: Prisma.fibre_techSumOrderByAggregateInput } export type fibre_techScalarWhereWithAggregatesInput = { AND?: Prisma.fibre_techScalarWhereWithAggregatesInput | Prisma.fibre_techScalarWhereWithAggregatesInput[] OR?: Prisma.fibre_techScalarWhereWithAggregatesInput[] NOT?: Prisma.fibre_techScalarWhereWithAggregatesInput | Prisma.fibre_techScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"fibre_tech"> | number description?: Prisma.StringWithAggregatesFilter<"fibre_tech"> | string } export type fibre_techCreateInput = { description: string } export type fibre_techUncheckedCreateInput = { id?: number description: string } export type fibre_techUpdateInput = { description?: Prisma.StringFieldUpdateOperationsInput | string } export type fibre_techUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number description?: Prisma.StringFieldUpdateOperationsInput | string } export type fibre_techCreateManyInput = { id?: number description: string } export type fibre_techUpdateManyMutationInput = { description?: Prisma.StringFieldUpdateOperationsInput | string } export type fibre_techUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number description?: Prisma.StringFieldUpdateOperationsInput | string } export type fibre_techOrderByRelevanceInput = { fields: Prisma.fibre_techOrderByRelevanceFieldEnum | Prisma.fibre_techOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type fibre_techCountOrderByAggregateInput = { id?: Prisma.SortOrder description?: Prisma.SortOrder } export type fibre_techAvgOrderByAggregateInput = { id?: Prisma.SortOrder } export type fibre_techMaxOrderByAggregateInput = { id?: Prisma.SortOrder description?: Prisma.SortOrder } export type fibre_techMinOrderByAggregateInput = { id?: Prisma.SortOrder description?: Prisma.SortOrder } export type fibre_techSumOrderByAggregateInput = { id?: Prisma.SortOrder } export type fibre_techSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean description?: boolean }, ExtArgs["result"]["fibre_tech"]> export type fibre_techSelectScalar = { id?: boolean description?: boolean } export type fibre_techOmit = runtime.Types.Extensions.GetOmit<"id" | "description", ExtArgs["result"]["fibre_tech"]> export type $fibre_techPayload = { name: "fibre_tech" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number description: string }, ExtArgs["result"]["fibre_tech"]> composites: {} } export type fibre_techGetPayload = runtime.Types.Result.GetResult export type fibre_techCountArgs = Omit & { select?: Fibre_techCountAggregateInputType | true } export interface fibre_techDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['fibre_tech'], meta: { name: 'fibre_tech' } } /** * Find zero or one Fibre_tech that matches the filter. * @param {fibre_techFindUniqueArgs} args - Arguments to find a Fibre_tech * @example * // Get one Fibre_tech * const fibre_tech = await prisma.fibre_tech.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_techClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Fibre_tech that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {fibre_techFindUniqueOrThrowArgs} args - Arguments to find a Fibre_tech * @example * // Get one Fibre_tech * const fibre_tech = await prisma.fibre_tech.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_techClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Fibre_tech 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_techFindFirstArgs} args - Arguments to find a Fibre_tech * @example * // Get one Fibre_tech * const fibre_tech = await prisma.fibre_tech.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__fibre_techClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Fibre_tech 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_techFindFirstOrThrowArgs} args - Arguments to find a Fibre_tech * @example * // Get one Fibre_tech * const fibre_tech = await prisma.fibre_tech.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__fibre_techClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Fibre_teches 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_techFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Fibre_teches * const fibre_teches = await prisma.fibre_tech.findMany() * * // Get first 10 Fibre_teches * const fibre_teches = await prisma.fibre_tech.findMany({ take: 10 }) * * // Only select the `id` * const fibre_techWithIdOnly = await prisma.fibre_tech.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Fibre_tech. * @param {fibre_techCreateArgs} args - Arguments to create a Fibre_tech. * @example * // Create one Fibre_tech * const Fibre_tech = await prisma.fibre_tech.create({ * data: { * // ... data to create a Fibre_tech * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_techClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Fibre_teches. * @param {fibre_techCreateManyArgs} args - Arguments to create many Fibre_teches. * @example * // Create many Fibre_teches * const fibre_tech = await prisma.fibre_tech.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Fibre_tech. * @param {fibre_techDeleteArgs} args - Arguments to delete one Fibre_tech. * @example * // Delete one Fibre_tech * const Fibre_tech = await prisma.fibre_tech.delete({ * where: { * // ... filter to delete one Fibre_tech * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_techClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Fibre_tech. * @param {fibre_techUpdateArgs} args - Arguments to update one Fibre_tech. * @example * // Update one Fibre_tech * const fibre_tech = await prisma.fibre_tech.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_techClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Fibre_teches. * @param {fibre_techDeleteManyArgs} args - Arguments to filter Fibre_teches to delete. * @example * // Delete a few Fibre_teches * const { count } = await prisma.fibre_tech.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Fibre_teches. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {fibre_techUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Fibre_teches * const fibre_tech = await prisma.fibre_tech.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Fibre_tech. * @param {fibre_techUpsertArgs} args - Arguments to update or create a Fibre_tech. * @example * // Update or create a Fibre_tech * const fibre_tech = await prisma.fibre_tech.upsert({ * create: { * // ... data to create a Fibre_tech * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Fibre_tech we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__fibre_techClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Fibre_teches. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {fibre_techCountArgs} args - Arguments to filter Fibre_teches to count. * @example * // Count the number of Fibre_teches * const count = await prisma.fibre_tech.count({ * where: { * // ... the filter for the Fibre_teches 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_tech. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Fibre_techAggregateArgs} 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_tech. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {fibre_techGroupByArgs} 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_techGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: fibre_techGroupByArgs['orderBy'] } : { orderBy?: fibre_techGroupByArgs['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_techGroupByPayload : Prisma.PrismaPromise /** * Fields of the fibre_tech model */ readonly fields: fibre_techFieldRefs; } /** * The delegate class that acts as a "Promise-like" for fibre_tech. * 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_techClient 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_tech model */ export interface fibre_techFieldRefs { readonly id: Prisma.FieldRef<"fibre_tech", 'Int'> readonly description: Prisma.FieldRef<"fibre_tech", 'String'> } // Custom InputTypes /** * fibre_tech findUnique */ export type fibre_techFindUniqueArgs = { /** * Select specific fields to fetch from the fibre_tech */ select?: Prisma.fibre_techSelect | null /** * Omit specific fields from the fibre_tech */ omit?: Prisma.fibre_techOmit | null /** * Filter, which fibre_tech to fetch. */ where: Prisma.fibre_techWhereUniqueInput } /** * fibre_tech findUniqueOrThrow */ export type fibre_techFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the fibre_tech */ select?: Prisma.fibre_techSelect | null /** * Omit specific fields from the fibre_tech */ omit?: Prisma.fibre_techOmit | null /** * Filter, which fibre_tech to fetch. */ where: Prisma.fibre_techWhereUniqueInput } /** * fibre_tech findFirst */ export type fibre_techFindFirstArgs = { /** * Select specific fields to fetch from the fibre_tech */ select?: Prisma.fibre_techSelect | null /** * Omit specific fields from the fibre_tech */ omit?: Prisma.fibre_techOmit | null /** * Filter, which fibre_tech to fetch. */ where?: Prisma.fibre_techWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of fibre_teches to fetch. */ orderBy?: Prisma.fibre_techOrderByWithRelationInput | Prisma.fibre_techOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for fibre_teches. */ cursor?: Prisma.fibre_techWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` fibre_teches 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_teches. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of fibre_teches. */ distinct?: Prisma.Fibre_techScalarFieldEnum | Prisma.Fibre_techScalarFieldEnum[] } /** * fibre_tech findFirstOrThrow */ export type fibre_techFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the fibre_tech */ select?: Prisma.fibre_techSelect | null /** * Omit specific fields from the fibre_tech */ omit?: Prisma.fibre_techOmit | null /** * Filter, which fibre_tech to fetch. */ where?: Prisma.fibre_techWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of fibre_teches to fetch. */ orderBy?: Prisma.fibre_techOrderByWithRelationInput | Prisma.fibre_techOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for fibre_teches. */ cursor?: Prisma.fibre_techWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` fibre_teches 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_teches. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of fibre_teches. */ distinct?: Prisma.Fibre_techScalarFieldEnum | Prisma.Fibre_techScalarFieldEnum[] } /** * fibre_tech findMany */ export type fibre_techFindManyArgs = { /** * Select specific fields to fetch from the fibre_tech */ select?: Prisma.fibre_techSelect | null /** * Omit specific fields from the fibre_tech */ omit?: Prisma.fibre_techOmit | null /** * Filter, which fibre_teches to fetch. */ where?: Prisma.fibre_techWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of fibre_teches to fetch. */ orderBy?: Prisma.fibre_techOrderByWithRelationInput | Prisma.fibre_techOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing fibre_teches. */ cursor?: Prisma.fibre_techWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` fibre_teches 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_teches. */ skip?: number distinct?: Prisma.Fibre_techScalarFieldEnum | Prisma.Fibre_techScalarFieldEnum[] } /** * fibre_tech create */ export type fibre_techCreateArgs = { /** * Select specific fields to fetch from the fibre_tech */ select?: Prisma.fibre_techSelect | null /** * Omit specific fields from the fibre_tech */ omit?: Prisma.fibre_techOmit | null /** * The data needed to create a fibre_tech. */ data: Prisma.XOR } /** * fibre_tech createMany */ export type fibre_techCreateManyArgs = { /** * The data used to create many fibre_teches. */ data: Prisma.fibre_techCreateManyInput | Prisma.fibre_techCreateManyInput[] skipDuplicates?: boolean } /** * fibre_tech update */ export type fibre_techUpdateArgs = { /** * Select specific fields to fetch from the fibre_tech */ select?: Prisma.fibre_techSelect | null /** * Omit specific fields from the fibre_tech */ omit?: Prisma.fibre_techOmit | null /** * The data needed to update a fibre_tech. */ data: Prisma.XOR /** * Choose, which fibre_tech to update. */ where: Prisma.fibre_techWhereUniqueInput } /** * fibre_tech updateMany */ export type fibre_techUpdateManyArgs = { /** * The data used to update fibre_teches. */ data: Prisma.XOR /** * Filter which fibre_teches to update */ where?: Prisma.fibre_techWhereInput /** * Limit how many fibre_teches to update. */ limit?: number } /** * fibre_tech upsert */ export type fibre_techUpsertArgs = { /** * Select specific fields to fetch from the fibre_tech */ select?: Prisma.fibre_techSelect | null /** * Omit specific fields from the fibre_tech */ omit?: Prisma.fibre_techOmit | null /** * The filter to search for the fibre_tech to update in case it exists. */ where: Prisma.fibre_techWhereUniqueInput /** * In case the fibre_tech found by the `where` argument doesn't exist, create a new fibre_tech with this data. */ create: Prisma.XOR /** * In case the fibre_tech was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * fibre_tech delete */ export type fibre_techDeleteArgs = { /** * Select specific fields to fetch from the fibre_tech */ select?: Prisma.fibre_techSelect | null /** * Omit specific fields from the fibre_tech */ omit?: Prisma.fibre_techOmit | null /** * Filter which fibre_tech to delete. */ where: Prisma.fibre_techWhereUniqueInput } /** * fibre_tech deleteMany */ export type fibre_techDeleteManyArgs = { /** * Filter which fibre_teches to delete */ where?: Prisma.fibre_techWhereInput /** * Limit how many fibre_teches to delete. */ limit?: number } /** * fibre_tech without action */ export type fibre_techDefaultArgs = { /** * Select specific fields to fetch from the fibre_tech */ select?: Prisma.fibre_techSelect | null /** * Omit specific fields from the fibre_tech */ omit?: Prisma.fibre_techOmit | null }