/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `tele_penetration` 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 tele_penetration * */ export type tele_penetrationModel = runtime.Types.Result.DefaultSelection export type AggregateTele_penetration = { _count: Tele_penetrationCountAggregateOutputType | null _avg: Tele_penetrationAvgAggregateOutputType | null _sum: Tele_penetrationSumAggregateOutputType | null _min: Tele_penetrationMinAggregateOutputType | null _max: Tele_penetrationMaxAggregateOutputType | null } export type Tele_penetrationAvgAggregateOutputType = { id: number | null id_channel: number | null percentage: runtime.Decimal | null prix: runtime.Decimal | null } export type Tele_penetrationSumAggregateOutputType = { id: number | null id_channel: number | null percentage: runtime.Decimal | null prix: runtime.Decimal | null } export type Tele_penetrationMinAggregateOutputType = { id: number | null id_channel: number | null percentage: runtime.Decimal | null prix: runtime.Decimal | null } export type Tele_penetrationMaxAggregateOutputType = { id: number | null id_channel: number | null percentage: runtime.Decimal | null prix: runtime.Decimal | null } export type Tele_penetrationCountAggregateOutputType = { id: number id_channel: number percentage: number prix: number _all: number } export type Tele_penetrationAvgAggregateInputType = { id?: true id_channel?: true percentage?: true prix?: true } export type Tele_penetrationSumAggregateInputType = { id?: true id_channel?: true percentage?: true prix?: true } export type Tele_penetrationMinAggregateInputType = { id?: true id_channel?: true percentage?: true prix?: true } export type Tele_penetrationMaxAggregateInputType = { id?: true id_channel?: true percentage?: true prix?: true } export type Tele_penetrationCountAggregateInputType = { id?: true id_channel?: true percentage?: true prix?: true _all?: true } export type Tele_penetrationAggregateArgs = { /** * Filter which tele_penetration to aggregate. */ where?: Prisma.tele_penetrationWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tele_penetrations to fetch. */ orderBy?: Prisma.tele_penetrationOrderByWithRelationInput | Prisma.tele_penetrationOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.tele_penetrationWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tele_penetrations 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` tele_penetrations. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned tele_penetrations **/ _count?: true | Tele_penetrationCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Tele_penetrationAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Tele_penetrationSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Tele_penetrationMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Tele_penetrationMaxAggregateInputType } export type GetTele_penetrationAggregateType = { [P in keyof T & keyof AggregateTele_penetration]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type tele_penetrationGroupByArgs = { where?: Prisma.tele_penetrationWhereInput orderBy?: Prisma.tele_penetrationOrderByWithAggregationInput | Prisma.tele_penetrationOrderByWithAggregationInput[] by: Prisma.Tele_penetrationScalarFieldEnum[] | Prisma.Tele_penetrationScalarFieldEnum having?: Prisma.tele_penetrationScalarWhereWithAggregatesInput take?: number skip?: number _count?: Tele_penetrationCountAggregateInputType | true _avg?: Tele_penetrationAvgAggregateInputType _sum?: Tele_penetrationSumAggregateInputType _min?: Tele_penetrationMinAggregateInputType _max?: Tele_penetrationMaxAggregateInputType } export type Tele_penetrationGroupByOutputType = { id: number id_channel: number percentage: runtime.Decimal prix: runtime.Decimal _count: Tele_penetrationCountAggregateOutputType | null _avg: Tele_penetrationAvgAggregateOutputType | null _sum: Tele_penetrationSumAggregateOutputType | null _min: Tele_penetrationMinAggregateOutputType | null _max: Tele_penetrationMaxAggregateOutputType | null } type GetTele_penetrationGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Tele_penetrationGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type tele_penetrationWhereInput = { AND?: Prisma.tele_penetrationWhereInput | Prisma.tele_penetrationWhereInput[] OR?: Prisma.tele_penetrationWhereInput[] NOT?: Prisma.tele_penetrationWhereInput | Prisma.tele_penetrationWhereInput[] id?: Prisma.IntFilter<"tele_penetration"> | number id_channel?: Prisma.IntFilter<"tele_penetration"> | number percentage?: Prisma.DecimalFilter<"tele_penetration"> | runtime.Decimal | runtime.DecimalJsLike | number | string prix?: Prisma.DecimalFilter<"tele_penetration"> | runtime.Decimal | runtime.DecimalJsLike | number | string } export type tele_penetrationOrderByWithRelationInput = { id?: Prisma.SortOrder id_channel?: Prisma.SortOrder percentage?: Prisma.SortOrder prix?: Prisma.SortOrder } export type tele_penetrationWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.tele_penetrationWhereInput | Prisma.tele_penetrationWhereInput[] OR?: Prisma.tele_penetrationWhereInput[] NOT?: Prisma.tele_penetrationWhereInput | Prisma.tele_penetrationWhereInput[] id_channel?: Prisma.IntFilter<"tele_penetration"> | number percentage?: Prisma.DecimalFilter<"tele_penetration"> | runtime.Decimal | runtime.DecimalJsLike | number | string prix?: Prisma.DecimalFilter<"tele_penetration"> | runtime.Decimal | runtime.DecimalJsLike | number | string }, "id"> export type tele_penetrationOrderByWithAggregationInput = { id?: Prisma.SortOrder id_channel?: Prisma.SortOrder percentage?: Prisma.SortOrder prix?: Prisma.SortOrder _count?: Prisma.tele_penetrationCountOrderByAggregateInput _avg?: Prisma.tele_penetrationAvgOrderByAggregateInput _max?: Prisma.tele_penetrationMaxOrderByAggregateInput _min?: Prisma.tele_penetrationMinOrderByAggregateInput _sum?: Prisma.tele_penetrationSumOrderByAggregateInput } export type tele_penetrationScalarWhereWithAggregatesInput = { AND?: Prisma.tele_penetrationScalarWhereWithAggregatesInput | Prisma.tele_penetrationScalarWhereWithAggregatesInput[] OR?: Prisma.tele_penetrationScalarWhereWithAggregatesInput[] NOT?: Prisma.tele_penetrationScalarWhereWithAggregatesInput | Prisma.tele_penetrationScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"tele_penetration"> | number id_channel?: Prisma.IntWithAggregatesFilter<"tele_penetration"> | number percentage?: Prisma.DecimalWithAggregatesFilter<"tele_penetration"> | runtime.Decimal | runtime.DecimalJsLike | number | string prix?: Prisma.DecimalWithAggregatesFilter<"tele_penetration"> | runtime.Decimal | runtime.DecimalJsLike | number | string } export type tele_penetrationCreateInput = { id_channel: number percentage: runtime.Decimal | runtime.DecimalJsLike | number | string prix: runtime.Decimal | runtime.DecimalJsLike | number | string } export type tele_penetrationUncheckedCreateInput = { id?: number id_channel: number percentage: runtime.Decimal | runtime.DecimalJsLike | number | string prix: runtime.Decimal | runtime.DecimalJsLike | number | string } export type tele_penetrationUpdateInput = { id_channel?: Prisma.IntFieldUpdateOperationsInput | number percentage?: Prisma.DecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string prix?: Prisma.DecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string } export type tele_penetrationUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number id_channel?: Prisma.IntFieldUpdateOperationsInput | number percentage?: Prisma.DecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string prix?: Prisma.DecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string } export type tele_penetrationCreateManyInput = { id?: number id_channel: number percentage: runtime.Decimal | runtime.DecimalJsLike | number | string prix: runtime.Decimal | runtime.DecimalJsLike | number | string } export type tele_penetrationUpdateManyMutationInput = { id_channel?: Prisma.IntFieldUpdateOperationsInput | number percentage?: Prisma.DecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string prix?: Prisma.DecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string } export type tele_penetrationUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number id_channel?: Prisma.IntFieldUpdateOperationsInput | number percentage?: Prisma.DecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string prix?: Prisma.DecimalFieldUpdateOperationsInput | runtime.Decimal | runtime.DecimalJsLike | number | string } export type tele_penetrationCountOrderByAggregateInput = { id?: Prisma.SortOrder id_channel?: Prisma.SortOrder percentage?: Prisma.SortOrder prix?: Prisma.SortOrder } export type tele_penetrationAvgOrderByAggregateInput = { id?: Prisma.SortOrder id_channel?: Prisma.SortOrder percentage?: Prisma.SortOrder prix?: Prisma.SortOrder } export type tele_penetrationMaxOrderByAggregateInput = { id?: Prisma.SortOrder id_channel?: Prisma.SortOrder percentage?: Prisma.SortOrder prix?: Prisma.SortOrder } export type tele_penetrationMinOrderByAggregateInput = { id?: Prisma.SortOrder id_channel?: Prisma.SortOrder percentage?: Prisma.SortOrder prix?: Prisma.SortOrder } export type tele_penetrationSumOrderByAggregateInput = { id?: Prisma.SortOrder id_channel?: Prisma.SortOrder percentage?: Prisma.SortOrder prix?: Prisma.SortOrder } export type tele_penetrationSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean id_channel?: boolean percentage?: boolean prix?: boolean }, ExtArgs["result"]["tele_penetration"]> export type tele_penetrationSelectScalar = { id?: boolean id_channel?: boolean percentage?: boolean prix?: boolean } export type tele_penetrationOmit = runtime.Types.Extensions.GetOmit<"id" | "id_channel" | "percentage" | "prix", ExtArgs["result"]["tele_penetration"]> export type $tele_penetrationPayload = { name: "tele_penetration" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number id_channel: number percentage: runtime.Decimal prix: runtime.Decimal }, ExtArgs["result"]["tele_penetration"]> composites: {} } export type tele_penetrationGetPayload = runtime.Types.Result.GetResult export type tele_penetrationCountArgs = Omit & { select?: Tele_penetrationCountAggregateInputType | true } export interface tele_penetrationDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['tele_penetration'], meta: { name: 'tele_penetration' } } /** * Find zero or one Tele_penetration that matches the filter. * @param {tele_penetrationFindUniqueArgs} args - Arguments to find a Tele_penetration * @example * // Get one Tele_penetration * const tele_penetration = await prisma.tele_penetration.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__tele_penetrationClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Tele_penetration that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {tele_penetrationFindUniqueOrThrowArgs} args - Arguments to find a Tele_penetration * @example * // Get one Tele_penetration * const tele_penetration = await prisma.tele_penetration.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__tele_penetrationClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Tele_penetration 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 {tele_penetrationFindFirstArgs} args - Arguments to find a Tele_penetration * @example * // Get one Tele_penetration * const tele_penetration = await prisma.tele_penetration.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__tele_penetrationClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Tele_penetration 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 {tele_penetrationFindFirstOrThrowArgs} args - Arguments to find a Tele_penetration * @example * // Get one Tele_penetration * const tele_penetration = await prisma.tele_penetration.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__tele_penetrationClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Tele_penetrations 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 {tele_penetrationFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Tele_penetrations * const tele_penetrations = await prisma.tele_penetration.findMany() * * // Get first 10 Tele_penetrations * const tele_penetrations = await prisma.tele_penetration.findMany({ take: 10 }) * * // Only select the `id` * const tele_penetrationWithIdOnly = await prisma.tele_penetration.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Tele_penetration. * @param {tele_penetrationCreateArgs} args - Arguments to create a Tele_penetration. * @example * // Create one Tele_penetration * const Tele_penetration = await prisma.tele_penetration.create({ * data: { * // ... data to create a Tele_penetration * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__tele_penetrationClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Tele_penetrations. * @param {tele_penetrationCreateManyArgs} args - Arguments to create many Tele_penetrations. * @example * // Create many Tele_penetrations * const tele_penetration = await prisma.tele_penetration.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Tele_penetration. * @param {tele_penetrationDeleteArgs} args - Arguments to delete one Tele_penetration. * @example * // Delete one Tele_penetration * const Tele_penetration = await prisma.tele_penetration.delete({ * where: { * // ... filter to delete one Tele_penetration * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__tele_penetrationClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Tele_penetration. * @param {tele_penetrationUpdateArgs} args - Arguments to update one Tele_penetration. * @example * // Update one Tele_penetration * const tele_penetration = await prisma.tele_penetration.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__tele_penetrationClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Tele_penetrations. * @param {tele_penetrationDeleteManyArgs} args - Arguments to filter Tele_penetrations to delete. * @example * // Delete a few Tele_penetrations * const { count } = await prisma.tele_penetration.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Tele_penetrations. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tele_penetrationUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Tele_penetrations * const tele_penetration = await prisma.tele_penetration.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Tele_penetration. * @param {tele_penetrationUpsertArgs} args - Arguments to update or create a Tele_penetration. * @example * // Update or create a Tele_penetration * const tele_penetration = await prisma.tele_penetration.upsert({ * create: { * // ... data to create a Tele_penetration * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Tele_penetration we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__tele_penetrationClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Tele_penetrations. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tele_penetrationCountArgs} args - Arguments to filter Tele_penetrations to count. * @example * // Count the number of Tele_penetrations * const count = await prisma.tele_penetration.count({ * where: { * // ... the filter for the Tele_penetrations 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 Tele_penetration. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Tele_penetrationAggregateArgs} 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 Tele_penetration. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tele_penetrationGroupByArgs} 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 tele_penetrationGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: tele_penetrationGroupByArgs['orderBy'] } : { orderBy?: tele_penetrationGroupByArgs['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 ? GetTele_penetrationGroupByPayload : Prisma.PrismaPromise /** * Fields of the tele_penetration model */ readonly fields: tele_penetrationFieldRefs; } /** * The delegate class that acts as a "Promise-like" for tele_penetration. * 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__tele_penetrationClient 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 tele_penetration model */ export interface tele_penetrationFieldRefs { readonly id: Prisma.FieldRef<"tele_penetration", 'Int'> readonly id_channel: Prisma.FieldRef<"tele_penetration", 'Int'> readonly percentage: Prisma.FieldRef<"tele_penetration", 'Decimal'> readonly prix: Prisma.FieldRef<"tele_penetration", 'Decimal'> } // Custom InputTypes /** * tele_penetration findUnique */ export type tele_penetrationFindUniqueArgs = { /** * Select specific fields to fetch from the tele_penetration */ select?: Prisma.tele_penetrationSelect | null /** * Omit specific fields from the tele_penetration */ omit?: Prisma.tele_penetrationOmit | null /** * Filter, which tele_penetration to fetch. */ where: Prisma.tele_penetrationWhereUniqueInput } /** * tele_penetration findUniqueOrThrow */ export type tele_penetrationFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the tele_penetration */ select?: Prisma.tele_penetrationSelect | null /** * Omit specific fields from the tele_penetration */ omit?: Prisma.tele_penetrationOmit | null /** * Filter, which tele_penetration to fetch. */ where: Prisma.tele_penetrationWhereUniqueInput } /** * tele_penetration findFirst */ export type tele_penetrationFindFirstArgs = { /** * Select specific fields to fetch from the tele_penetration */ select?: Prisma.tele_penetrationSelect | null /** * Omit specific fields from the tele_penetration */ omit?: Prisma.tele_penetrationOmit | null /** * Filter, which tele_penetration to fetch. */ where?: Prisma.tele_penetrationWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tele_penetrations to fetch. */ orderBy?: Prisma.tele_penetrationOrderByWithRelationInput | Prisma.tele_penetrationOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for tele_penetrations. */ cursor?: Prisma.tele_penetrationWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tele_penetrations 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` tele_penetrations. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of tele_penetrations. */ distinct?: Prisma.Tele_penetrationScalarFieldEnum | Prisma.Tele_penetrationScalarFieldEnum[] } /** * tele_penetration findFirstOrThrow */ export type tele_penetrationFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the tele_penetration */ select?: Prisma.tele_penetrationSelect | null /** * Omit specific fields from the tele_penetration */ omit?: Prisma.tele_penetrationOmit | null /** * Filter, which tele_penetration to fetch. */ where?: Prisma.tele_penetrationWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tele_penetrations to fetch. */ orderBy?: Prisma.tele_penetrationOrderByWithRelationInput | Prisma.tele_penetrationOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for tele_penetrations. */ cursor?: Prisma.tele_penetrationWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tele_penetrations 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` tele_penetrations. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of tele_penetrations. */ distinct?: Prisma.Tele_penetrationScalarFieldEnum | Prisma.Tele_penetrationScalarFieldEnum[] } /** * tele_penetration findMany */ export type tele_penetrationFindManyArgs = { /** * Select specific fields to fetch from the tele_penetration */ select?: Prisma.tele_penetrationSelect | null /** * Omit specific fields from the tele_penetration */ omit?: Prisma.tele_penetrationOmit | null /** * Filter, which tele_penetrations to fetch. */ where?: Prisma.tele_penetrationWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tele_penetrations to fetch. */ orderBy?: Prisma.tele_penetrationOrderByWithRelationInput | Prisma.tele_penetrationOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing tele_penetrations. */ cursor?: Prisma.tele_penetrationWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tele_penetrations 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` tele_penetrations. */ skip?: number distinct?: Prisma.Tele_penetrationScalarFieldEnum | Prisma.Tele_penetrationScalarFieldEnum[] } /** * tele_penetration create */ export type tele_penetrationCreateArgs = { /** * Select specific fields to fetch from the tele_penetration */ select?: Prisma.tele_penetrationSelect | null /** * Omit specific fields from the tele_penetration */ omit?: Prisma.tele_penetrationOmit | null /** * The data needed to create a tele_penetration. */ data: Prisma.XOR } /** * tele_penetration createMany */ export type tele_penetrationCreateManyArgs = { /** * The data used to create many tele_penetrations. */ data: Prisma.tele_penetrationCreateManyInput | Prisma.tele_penetrationCreateManyInput[] skipDuplicates?: boolean } /** * tele_penetration update */ export type tele_penetrationUpdateArgs = { /** * Select specific fields to fetch from the tele_penetration */ select?: Prisma.tele_penetrationSelect | null /** * Omit specific fields from the tele_penetration */ omit?: Prisma.tele_penetrationOmit | null /** * The data needed to update a tele_penetration. */ data: Prisma.XOR /** * Choose, which tele_penetration to update. */ where: Prisma.tele_penetrationWhereUniqueInput } /** * tele_penetration updateMany */ export type tele_penetrationUpdateManyArgs = { /** * The data used to update tele_penetrations. */ data: Prisma.XOR /** * Filter which tele_penetrations to update */ where?: Prisma.tele_penetrationWhereInput /** * Limit how many tele_penetrations to update. */ limit?: number } /** * tele_penetration upsert */ export type tele_penetrationUpsertArgs = { /** * Select specific fields to fetch from the tele_penetration */ select?: Prisma.tele_penetrationSelect | null /** * Omit specific fields from the tele_penetration */ omit?: Prisma.tele_penetrationOmit | null /** * The filter to search for the tele_penetration to update in case it exists. */ where: Prisma.tele_penetrationWhereUniqueInput /** * In case the tele_penetration found by the `where` argument doesn't exist, create a new tele_penetration with this data. */ create: Prisma.XOR /** * In case the tele_penetration was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * tele_penetration delete */ export type tele_penetrationDeleteArgs = { /** * Select specific fields to fetch from the tele_penetration */ select?: Prisma.tele_penetrationSelect | null /** * Omit specific fields from the tele_penetration */ omit?: Prisma.tele_penetrationOmit | null /** * Filter which tele_penetration to delete. */ where: Prisma.tele_penetrationWhereUniqueInput } /** * tele_penetration deleteMany */ export type tele_penetrationDeleteManyArgs = { /** * Filter which tele_penetrations to delete */ where?: Prisma.tele_penetrationWhereInput /** * Limit how many tele_penetrations to delete. */ limit?: number } /** * tele_penetration without action */ export type tele_penetrationDefaultArgs = { /** * Select specific fields to fetch from the tele_penetration */ select?: Prisma.tele_penetrationSelect | null /** * Omit specific fields from the tele_penetration */ omit?: Prisma.tele_penetrationOmit | null }