/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `invoice_call` 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 invoice_call * */ export type invoice_callModel = runtime.Types.Result.DefaultSelection export type AggregateInvoice_call = { _count: Invoice_callCountAggregateOutputType | null _avg: Invoice_callAvgAggregateOutputType | null _sum: Invoice_callSumAggregateOutputType | null _min: Invoice_callMinAggregateOutputType | null _max: Invoice_callMaxAggregateOutputType | null } export type Invoice_callAvgAggregateOutputType = { id: number | null date: number | null amount: number | null } export type Invoice_callSumAggregateOutputType = { id: number | null date: bigint | null amount: number | null } export type Invoice_callMinAggregateOutputType = { id: number | null date: bigint | null number: string | null amount: number | null } export type Invoice_callMaxAggregateOutputType = { id: number | null date: bigint | null number: string | null amount: number | null } export type Invoice_callCountAggregateOutputType = { id: number date: number number: number amount: number _all: number } export type Invoice_callAvgAggregateInputType = { id?: true date?: true amount?: true } export type Invoice_callSumAggregateInputType = { id?: true date?: true amount?: true } export type Invoice_callMinAggregateInputType = { id?: true date?: true number?: true amount?: true } export type Invoice_callMaxAggregateInputType = { id?: true date?: true number?: true amount?: true } export type Invoice_callCountAggregateInputType = { id?: true date?: true number?: true amount?: true _all?: true } export type Invoice_callAggregateArgs = { /** * Filter which invoice_call to aggregate. */ where?: Prisma.invoice_callWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of invoice_calls to fetch. */ orderBy?: Prisma.invoice_callOrderByWithRelationInput | Prisma.invoice_callOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.invoice_callWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` invoice_calls 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` invoice_calls. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned invoice_calls **/ _count?: true | Invoice_callCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Invoice_callAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Invoice_callSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Invoice_callMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Invoice_callMaxAggregateInputType } export type GetInvoice_callAggregateType = { [P in keyof T & keyof AggregateInvoice_call]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type invoice_callGroupByArgs = { where?: Prisma.invoice_callWhereInput orderBy?: Prisma.invoice_callOrderByWithAggregationInput | Prisma.invoice_callOrderByWithAggregationInput[] by: Prisma.Invoice_callScalarFieldEnum[] | Prisma.Invoice_callScalarFieldEnum having?: Prisma.invoice_callScalarWhereWithAggregatesInput take?: number skip?: number _count?: Invoice_callCountAggregateInputType | true _avg?: Invoice_callAvgAggregateInputType _sum?: Invoice_callSumAggregateInputType _min?: Invoice_callMinAggregateInputType _max?: Invoice_callMaxAggregateInputType } export type Invoice_callGroupByOutputType = { id: number date: bigint number: string amount: number _count: Invoice_callCountAggregateOutputType | null _avg: Invoice_callAvgAggregateOutputType | null _sum: Invoice_callSumAggregateOutputType | null _min: Invoice_callMinAggregateOutputType | null _max: Invoice_callMaxAggregateOutputType | null } type GetInvoice_callGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Invoice_callGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type invoice_callWhereInput = { AND?: Prisma.invoice_callWhereInput | Prisma.invoice_callWhereInput[] OR?: Prisma.invoice_callWhereInput[] NOT?: Prisma.invoice_callWhereInput | Prisma.invoice_callWhereInput[] id?: Prisma.IntFilter<"invoice_call"> | number date?: Prisma.BigIntFilter<"invoice_call"> | bigint | number number?: Prisma.StringFilter<"invoice_call"> | string amount?: Prisma.FloatFilter<"invoice_call"> | number } export type invoice_callOrderByWithRelationInput = { id?: Prisma.SortOrder date?: Prisma.SortOrder number?: Prisma.SortOrder amount?: Prisma.SortOrder _relevance?: Prisma.invoice_callOrderByRelevanceInput } export type invoice_callWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.invoice_callWhereInput | Prisma.invoice_callWhereInput[] OR?: Prisma.invoice_callWhereInput[] NOT?: Prisma.invoice_callWhereInput | Prisma.invoice_callWhereInput[] date?: Prisma.BigIntFilter<"invoice_call"> | bigint | number number?: Prisma.StringFilter<"invoice_call"> | string amount?: Prisma.FloatFilter<"invoice_call"> | number }, "id"> export type invoice_callOrderByWithAggregationInput = { id?: Prisma.SortOrder date?: Prisma.SortOrder number?: Prisma.SortOrder amount?: Prisma.SortOrder _count?: Prisma.invoice_callCountOrderByAggregateInput _avg?: Prisma.invoice_callAvgOrderByAggregateInput _max?: Prisma.invoice_callMaxOrderByAggregateInput _min?: Prisma.invoice_callMinOrderByAggregateInput _sum?: Prisma.invoice_callSumOrderByAggregateInput } export type invoice_callScalarWhereWithAggregatesInput = { AND?: Prisma.invoice_callScalarWhereWithAggregatesInput | Prisma.invoice_callScalarWhereWithAggregatesInput[] OR?: Prisma.invoice_callScalarWhereWithAggregatesInput[] NOT?: Prisma.invoice_callScalarWhereWithAggregatesInput | Prisma.invoice_callScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"invoice_call"> | number date?: Prisma.BigIntWithAggregatesFilter<"invoice_call"> | bigint | number number?: Prisma.StringWithAggregatesFilter<"invoice_call"> | string amount?: Prisma.FloatWithAggregatesFilter<"invoice_call"> | number } export type invoice_callCreateInput = { date: bigint | number number: string amount: number } export type invoice_callUncheckedCreateInput = { id?: number date: bigint | number number: string amount: number } export type invoice_callUpdateInput = { date?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number number?: Prisma.StringFieldUpdateOperationsInput | string amount?: Prisma.FloatFieldUpdateOperationsInput | number } export type invoice_callUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number date?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number number?: Prisma.StringFieldUpdateOperationsInput | string amount?: Prisma.FloatFieldUpdateOperationsInput | number } export type invoice_callCreateManyInput = { id?: number date: bigint | number number: string amount: number } export type invoice_callUpdateManyMutationInput = { date?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number number?: Prisma.StringFieldUpdateOperationsInput | string amount?: Prisma.FloatFieldUpdateOperationsInput | number } export type invoice_callUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number date?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number number?: Prisma.StringFieldUpdateOperationsInput | string amount?: Prisma.FloatFieldUpdateOperationsInput | number } export type invoice_callOrderByRelevanceInput = { fields: Prisma.invoice_callOrderByRelevanceFieldEnum | Prisma.invoice_callOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type invoice_callCountOrderByAggregateInput = { id?: Prisma.SortOrder date?: Prisma.SortOrder number?: Prisma.SortOrder amount?: Prisma.SortOrder } export type invoice_callAvgOrderByAggregateInput = { id?: Prisma.SortOrder date?: Prisma.SortOrder amount?: Prisma.SortOrder } export type invoice_callMaxOrderByAggregateInput = { id?: Prisma.SortOrder date?: Prisma.SortOrder number?: Prisma.SortOrder amount?: Prisma.SortOrder } export type invoice_callMinOrderByAggregateInput = { id?: Prisma.SortOrder date?: Prisma.SortOrder number?: Prisma.SortOrder amount?: Prisma.SortOrder } export type invoice_callSumOrderByAggregateInput = { id?: Prisma.SortOrder date?: Prisma.SortOrder amount?: Prisma.SortOrder } export type invoice_callSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean date?: boolean number?: boolean amount?: boolean }, ExtArgs["result"]["invoice_call"]> export type invoice_callSelectScalar = { id?: boolean date?: boolean number?: boolean amount?: boolean } export type invoice_callOmit = runtime.Types.Extensions.GetOmit<"id" | "date" | "number" | "amount", ExtArgs["result"]["invoice_call"]> export type $invoice_callPayload = { name: "invoice_call" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number date: bigint number: string amount: number }, ExtArgs["result"]["invoice_call"]> composites: {} } export type invoice_callGetPayload = runtime.Types.Result.GetResult export type invoice_callCountArgs = Omit & { select?: Invoice_callCountAggregateInputType | true } export interface invoice_callDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['invoice_call'], meta: { name: 'invoice_call' } } /** * Find zero or one Invoice_call that matches the filter. * @param {invoice_callFindUniqueArgs} args - Arguments to find a Invoice_call * @example * // Get one Invoice_call * const invoice_call = await prisma.invoice_call.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__invoice_callClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Invoice_call that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {invoice_callFindUniqueOrThrowArgs} args - Arguments to find a Invoice_call * @example * // Get one Invoice_call * const invoice_call = await prisma.invoice_call.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__invoice_callClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Invoice_call 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 {invoice_callFindFirstArgs} args - Arguments to find a Invoice_call * @example * // Get one Invoice_call * const invoice_call = await prisma.invoice_call.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__invoice_callClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Invoice_call 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 {invoice_callFindFirstOrThrowArgs} args - Arguments to find a Invoice_call * @example * // Get one Invoice_call * const invoice_call = await prisma.invoice_call.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__invoice_callClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Invoice_calls 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 {invoice_callFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Invoice_calls * const invoice_calls = await prisma.invoice_call.findMany() * * // Get first 10 Invoice_calls * const invoice_calls = await prisma.invoice_call.findMany({ take: 10 }) * * // Only select the `id` * const invoice_callWithIdOnly = await prisma.invoice_call.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Invoice_call. * @param {invoice_callCreateArgs} args - Arguments to create a Invoice_call. * @example * // Create one Invoice_call * const Invoice_call = await prisma.invoice_call.create({ * data: { * // ... data to create a Invoice_call * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__invoice_callClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Invoice_calls. * @param {invoice_callCreateManyArgs} args - Arguments to create many Invoice_calls. * @example * // Create many Invoice_calls * const invoice_call = await prisma.invoice_call.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Invoice_call. * @param {invoice_callDeleteArgs} args - Arguments to delete one Invoice_call. * @example * // Delete one Invoice_call * const Invoice_call = await prisma.invoice_call.delete({ * where: { * // ... filter to delete one Invoice_call * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__invoice_callClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Invoice_call. * @param {invoice_callUpdateArgs} args - Arguments to update one Invoice_call. * @example * // Update one Invoice_call * const invoice_call = await prisma.invoice_call.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__invoice_callClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Invoice_calls. * @param {invoice_callDeleteManyArgs} args - Arguments to filter Invoice_calls to delete. * @example * // Delete a few Invoice_calls * const { count } = await prisma.invoice_call.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Invoice_calls. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {invoice_callUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Invoice_calls * const invoice_call = await prisma.invoice_call.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Invoice_call. * @param {invoice_callUpsertArgs} args - Arguments to update or create a Invoice_call. * @example * // Update or create a Invoice_call * const invoice_call = await prisma.invoice_call.upsert({ * create: { * // ... data to create a Invoice_call * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Invoice_call we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__invoice_callClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Invoice_calls. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {invoice_callCountArgs} args - Arguments to filter Invoice_calls to count. * @example * // Count the number of Invoice_calls * const count = await prisma.invoice_call.count({ * where: { * // ... the filter for the Invoice_calls 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 Invoice_call. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Invoice_callAggregateArgs} 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 Invoice_call. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {invoice_callGroupByArgs} 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 invoice_callGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: invoice_callGroupByArgs['orderBy'] } : { orderBy?: invoice_callGroupByArgs['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 ? GetInvoice_callGroupByPayload : Prisma.PrismaPromise /** * Fields of the invoice_call model */ readonly fields: invoice_callFieldRefs; } /** * The delegate class that acts as a "Promise-like" for invoice_call. * 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__invoice_callClient 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 invoice_call model */ export interface invoice_callFieldRefs { readonly id: Prisma.FieldRef<"invoice_call", 'Int'> readonly date: Prisma.FieldRef<"invoice_call", 'BigInt'> readonly number: Prisma.FieldRef<"invoice_call", 'String'> readonly amount: Prisma.FieldRef<"invoice_call", 'Float'> } // Custom InputTypes /** * invoice_call findUnique */ export type invoice_callFindUniqueArgs = { /** * Select specific fields to fetch from the invoice_call */ select?: Prisma.invoice_callSelect | null /** * Omit specific fields from the invoice_call */ omit?: Prisma.invoice_callOmit | null /** * Filter, which invoice_call to fetch. */ where: Prisma.invoice_callWhereUniqueInput } /** * invoice_call findUniqueOrThrow */ export type invoice_callFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the invoice_call */ select?: Prisma.invoice_callSelect | null /** * Omit specific fields from the invoice_call */ omit?: Prisma.invoice_callOmit | null /** * Filter, which invoice_call to fetch. */ where: Prisma.invoice_callWhereUniqueInput } /** * invoice_call findFirst */ export type invoice_callFindFirstArgs = { /** * Select specific fields to fetch from the invoice_call */ select?: Prisma.invoice_callSelect | null /** * Omit specific fields from the invoice_call */ omit?: Prisma.invoice_callOmit | null /** * Filter, which invoice_call to fetch. */ where?: Prisma.invoice_callWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of invoice_calls to fetch. */ orderBy?: Prisma.invoice_callOrderByWithRelationInput | Prisma.invoice_callOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for invoice_calls. */ cursor?: Prisma.invoice_callWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` invoice_calls 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` invoice_calls. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of invoice_calls. */ distinct?: Prisma.Invoice_callScalarFieldEnum | Prisma.Invoice_callScalarFieldEnum[] } /** * invoice_call findFirstOrThrow */ export type invoice_callFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the invoice_call */ select?: Prisma.invoice_callSelect | null /** * Omit specific fields from the invoice_call */ omit?: Prisma.invoice_callOmit | null /** * Filter, which invoice_call to fetch. */ where?: Prisma.invoice_callWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of invoice_calls to fetch. */ orderBy?: Prisma.invoice_callOrderByWithRelationInput | Prisma.invoice_callOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for invoice_calls. */ cursor?: Prisma.invoice_callWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` invoice_calls 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` invoice_calls. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of invoice_calls. */ distinct?: Prisma.Invoice_callScalarFieldEnum | Prisma.Invoice_callScalarFieldEnum[] } /** * invoice_call findMany */ export type invoice_callFindManyArgs = { /** * Select specific fields to fetch from the invoice_call */ select?: Prisma.invoice_callSelect | null /** * Omit specific fields from the invoice_call */ omit?: Prisma.invoice_callOmit | null /** * Filter, which invoice_calls to fetch. */ where?: Prisma.invoice_callWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of invoice_calls to fetch. */ orderBy?: Prisma.invoice_callOrderByWithRelationInput | Prisma.invoice_callOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing invoice_calls. */ cursor?: Prisma.invoice_callWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` invoice_calls 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` invoice_calls. */ skip?: number distinct?: Prisma.Invoice_callScalarFieldEnum | Prisma.Invoice_callScalarFieldEnum[] } /** * invoice_call create */ export type invoice_callCreateArgs = { /** * Select specific fields to fetch from the invoice_call */ select?: Prisma.invoice_callSelect | null /** * Omit specific fields from the invoice_call */ omit?: Prisma.invoice_callOmit | null /** * The data needed to create a invoice_call. */ data: Prisma.XOR } /** * invoice_call createMany */ export type invoice_callCreateManyArgs = { /** * The data used to create many invoice_calls. */ data: Prisma.invoice_callCreateManyInput | Prisma.invoice_callCreateManyInput[] skipDuplicates?: boolean } /** * invoice_call update */ export type invoice_callUpdateArgs = { /** * Select specific fields to fetch from the invoice_call */ select?: Prisma.invoice_callSelect | null /** * Omit specific fields from the invoice_call */ omit?: Prisma.invoice_callOmit | null /** * The data needed to update a invoice_call. */ data: Prisma.XOR /** * Choose, which invoice_call to update. */ where: Prisma.invoice_callWhereUniqueInput } /** * invoice_call updateMany */ export type invoice_callUpdateManyArgs = { /** * The data used to update invoice_calls. */ data: Prisma.XOR /** * Filter which invoice_calls to update */ where?: Prisma.invoice_callWhereInput /** * Limit how many invoice_calls to update. */ limit?: number } /** * invoice_call upsert */ export type invoice_callUpsertArgs = { /** * Select specific fields to fetch from the invoice_call */ select?: Prisma.invoice_callSelect | null /** * Omit specific fields from the invoice_call */ omit?: Prisma.invoice_callOmit | null /** * The filter to search for the invoice_call to update in case it exists. */ where: Prisma.invoice_callWhereUniqueInput /** * In case the invoice_call found by the `where` argument doesn't exist, create a new invoice_call with this data. */ create: Prisma.XOR /** * In case the invoice_call was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * invoice_call delete */ export type invoice_callDeleteArgs = { /** * Select specific fields to fetch from the invoice_call */ select?: Prisma.invoice_callSelect | null /** * Omit specific fields from the invoice_call */ omit?: Prisma.invoice_callOmit | null /** * Filter which invoice_call to delete. */ where: Prisma.invoice_callWhereUniqueInput } /** * invoice_call deleteMany */ export type invoice_callDeleteManyArgs = { /** * Filter which invoice_calls to delete */ where?: Prisma.invoice_callWhereInput /** * Limit how many invoice_calls to delete. */ limit?: number } /** * invoice_call without action */ export type invoice_callDefaultArgs = { /** * Select specific fields to fetch from the invoice_call */ select?: Prisma.invoice_callSelect | null /** * Omit specific fields from the invoice_call */ omit?: Prisma.invoice_callOmit | null }