/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `pbx_com_wl` 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 pbx_com_wl * */ export type pbx_com_wlModel = runtime.Types.Result.DefaultSelection export type AggregatePbx_com_wl = { _count: Pbx_com_wlCountAggregateOutputType | null _avg: Pbx_com_wlAvgAggregateOutputType | null _sum: Pbx_com_wlSumAggregateOutputType | null _min: Pbx_com_wlMinAggregateOutputType | null _max: Pbx_com_wlMaxAggregateOutputType | null } export type Pbx_com_wlAvgAggregateOutputType = { id: number | null } export type Pbx_com_wlSumAggregateOutputType = { id: number | null } export type Pbx_com_wlMinAggregateOutputType = { id: number | null phone: string | null country_whitelist: string | null } export type Pbx_com_wlMaxAggregateOutputType = { id: number | null phone: string | null country_whitelist: string | null } export type Pbx_com_wlCountAggregateOutputType = { id: number phone: number country_whitelist: number _all: number } export type Pbx_com_wlAvgAggregateInputType = { id?: true } export type Pbx_com_wlSumAggregateInputType = { id?: true } export type Pbx_com_wlMinAggregateInputType = { id?: true phone?: true country_whitelist?: true } export type Pbx_com_wlMaxAggregateInputType = { id?: true phone?: true country_whitelist?: true } export type Pbx_com_wlCountAggregateInputType = { id?: true phone?: true country_whitelist?: true _all?: true } export type Pbx_com_wlAggregateArgs = { /** * Filter which pbx_com_wl to aggregate. */ where?: Prisma.pbx_com_wlWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of pbx_com_wls to fetch. */ orderBy?: Prisma.pbx_com_wlOrderByWithRelationInput | Prisma.pbx_com_wlOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.pbx_com_wlWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` pbx_com_wls 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` pbx_com_wls. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned pbx_com_wls **/ _count?: true | Pbx_com_wlCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Pbx_com_wlAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Pbx_com_wlSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Pbx_com_wlMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Pbx_com_wlMaxAggregateInputType } export type GetPbx_com_wlAggregateType = { [P in keyof T & keyof AggregatePbx_com_wl]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type pbx_com_wlGroupByArgs = { where?: Prisma.pbx_com_wlWhereInput orderBy?: Prisma.pbx_com_wlOrderByWithAggregationInput | Prisma.pbx_com_wlOrderByWithAggregationInput[] by: Prisma.Pbx_com_wlScalarFieldEnum[] | Prisma.Pbx_com_wlScalarFieldEnum having?: Prisma.pbx_com_wlScalarWhereWithAggregatesInput take?: number skip?: number _count?: Pbx_com_wlCountAggregateInputType | true _avg?: Pbx_com_wlAvgAggregateInputType _sum?: Pbx_com_wlSumAggregateInputType _min?: Pbx_com_wlMinAggregateInputType _max?: Pbx_com_wlMaxAggregateInputType } export type Pbx_com_wlGroupByOutputType = { id: number phone: string country_whitelist: string _count: Pbx_com_wlCountAggregateOutputType | null _avg: Pbx_com_wlAvgAggregateOutputType | null _sum: Pbx_com_wlSumAggregateOutputType | null _min: Pbx_com_wlMinAggregateOutputType | null _max: Pbx_com_wlMaxAggregateOutputType | null } type GetPbx_com_wlGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Pbx_com_wlGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type pbx_com_wlWhereInput = { AND?: Prisma.pbx_com_wlWhereInput | Prisma.pbx_com_wlWhereInput[] OR?: Prisma.pbx_com_wlWhereInput[] NOT?: Prisma.pbx_com_wlWhereInput | Prisma.pbx_com_wlWhereInput[] id?: Prisma.IntFilter<"pbx_com_wl"> | number phone?: Prisma.StringFilter<"pbx_com_wl"> | string country_whitelist?: Prisma.StringFilter<"pbx_com_wl"> | string } export type pbx_com_wlOrderByWithRelationInput = { id?: Prisma.SortOrder phone?: Prisma.SortOrder country_whitelist?: Prisma.SortOrder _relevance?: Prisma.pbx_com_wlOrderByRelevanceInput } export type pbx_com_wlWhereUniqueInput = Prisma.AtLeast<{ id?: number phone?: string AND?: Prisma.pbx_com_wlWhereInput | Prisma.pbx_com_wlWhereInput[] OR?: Prisma.pbx_com_wlWhereInput[] NOT?: Prisma.pbx_com_wlWhereInput | Prisma.pbx_com_wlWhereInput[] country_whitelist?: Prisma.StringFilter<"pbx_com_wl"> | string }, "id" | "phone"> export type pbx_com_wlOrderByWithAggregationInput = { id?: Prisma.SortOrder phone?: Prisma.SortOrder country_whitelist?: Prisma.SortOrder _count?: Prisma.pbx_com_wlCountOrderByAggregateInput _avg?: Prisma.pbx_com_wlAvgOrderByAggregateInput _max?: Prisma.pbx_com_wlMaxOrderByAggregateInput _min?: Prisma.pbx_com_wlMinOrderByAggregateInput _sum?: Prisma.pbx_com_wlSumOrderByAggregateInput } export type pbx_com_wlScalarWhereWithAggregatesInput = { AND?: Prisma.pbx_com_wlScalarWhereWithAggregatesInput | Prisma.pbx_com_wlScalarWhereWithAggregatesInput[] OR?: Prisma.pbx_com_wlScalarWhereWithAggregatesInput[] NOT?: Prisma.pbx_com_wlScalarWhereWithAggregatesInput | Prisma.pbx_com_wlScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"pbx_com_wl"> | number phone?: Prisma.StringWithAggregatesFilter<"pbx_com_wl"> | string country_whitelist?: Prisma.StringWithAggregatesFilter<"pbx_com_wl"> | string } export type pbx_com_wlCreateInput = { phone: string country_whitelist: string } export type pbx_com_wlUncheckedCreateInput = { id?: number phone: string country_whitelist: string } export type pbx_com_wlUpdateInput = { phone?: Prisma.StringFieldUpdateOperationsInput | string country_whitelist?: Prisma.StringFieldUpdateOperationsInput | string } export type pbx_com_wlUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number phone?: Prisma.StringFieldUpdateOperationsInput | string country_whitelist?: Prisma.StringFieldUpdateOperationsInput | string } export type pbx_com_wlCreateManyInput = { id?: number phone: string country_whitelist: string } export type pbx_com_wlUpdateManyMutationInput = { phone?: Prisma.StringFieldUpdateOperationsInput | string country_whitelist?: Prisma.StringFieldUpdateOperationsInput | string } export type pbx_com_wlUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number phone?: Prisma.StringFieldUpdateOperationsInput | string country_whitelist?: Prisma.StringFieldUpdateOperationsInput | string } export type pbx_com_wlOrderByRelevanceInput = { fields: Prisma.pbx_com_wlOrderByRelevanceFieldEnum | Prisma.pbx_com_wlOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type pbx_com_wlCountOrderByAggregateInput = { id?: Prisma.SortOrder phone?: Prisma.SortOrder country_whitelist?: Prisma.SortOrder } export type pbx_com_wlAvgOrderByAggregateInput = { id?: Prisma.SortOrder } export type pbx_com_wlMaxOrderByAggregateInput = { id?: Prisma.SortOrder phone?: Prisma.SortOrder country_whitelist?: Prisma.SortOrder } export type pbx_com_wlMinOrderByAggregateInput = { id?: Prisma.SortOrder phone?: Prisma.SortOrder country_whitelist?: Prisma.SortOrder } export type pbx_com_wlSumOrderByAggregateInput = { id?: Prisma.SortOrder } export type pbx_com_wlSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean phone?: boolean country_whitelist?: boolean }, ExtArgs["result"]["pbx_com_wl"]> export type pbx_com_wlSelectScalar = { id?: boolean phone?: boolean country_whitelist?: boolean } export type pbx_com_wlOmit = runtime.Types.Extensions.GetOmit<"id" | "phone" | "country_whitelist", ExtArgs["result"]["pbx_com_wl"]> export type $pbx_com_wlPayload = { name: "pbx_com_wl" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number phone: string country_whitelist: string }, ExtArgs["result"]["pbx_com_wl"]> composites: {} } export type pbx_com_wlGetPayload = runtime.Types.Result.GetResult export type pbx_com_wlCountArgs = Omit & { select?: Pbx_com_wlCountAggregateInputType | true } export interface pbx_com_wlDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['pbx_com_wl'], meta: { name: 'pbx_com_wl' } } /** * Find zero or one Pbx_com_wl that matches the filter. * @param {pbx_com_wlFindUniqueArgs} args - Arguments to find a Pbx_com_wl * @example * // Get one Pbx_com_wl * const pbx_com_wl = await prisma.pbx_com_wl.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__pbx_com_wlClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Pbx_com_wl that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {pbx_com_wlFindUniqueOrThrowArgs} args - Arguments to find a Pbx_com_wl * @example * // Get one Pbx_com_wl * const pbx_com_wl = await prisma.pbx_com_wl.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__pbx_com_wlClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Pbx_com_wl 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 {pbx_com_wlFindFirstArgs} args - Arguments to find a Pbx_com_wl * @example * // Get one Pbx_com_wl * const pbx_com_wl = await prisma.pbx_com_wl.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__pbx_com_wlClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Pbx_com_wl 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 {pbx_com_wlFindFirstOrThrowArgs} args - Arguments to find a Pbx_com_wl * @example * // Get one Pbx_com_wl * const pbx_com_wl = await prisma.pbx_com_wl.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__pbx_com_wlClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Pbx_com_wls 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 {pbx_com_wlFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Pbx_com_wls * const pbx_com_wls = await prisma.pbx_com_wl.findMany() * * // Get first 10 Pbx_com_wls * const pbx_com_wls = await prisma.pbx_com_wl.findMany({ take: 10 }) * * // Only select the `id` * const pbx_com_wlWithIdOnly = await prisma.pbx_com_wl.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Pbx_com_wl. * @param {pbx_com_wlCreateArgs} args - Arguments to create a Pbx_com_wl. * @example * // Create one Pbx_com_wl * const Pbx_com_wl = await prisma.pbx_com_wl.create({ * data: { * // ... data to create a Pbx_com_wl * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__pbx_com_wlClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Pbx_com_wls. * @param {pbx_com_wlCreateManyArgs} args - Arguments to create many Pbx_com_wls. * @example * // Create many Pbx_com_wls * const pbx_com_wl = await prisma.pbx_com_wl.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Pbx_com_wl. * @param {pbx_com_wlDeleteArgs} args - Arguments to delete one Pbx_com_wl. * @example * // Delete one Pbx_com_wl * const Pbx_com_wl = await prisma.pbx_com_wl.delete({ * where: { * // ... filter to delete one Pbx_com_wl * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__pbx_com_wlClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Pbx_com_wl. * @param {pbx_com_wlUpdateArgs} args - Arguments to update one Pbx_com_wl. * @example * // Update one Pbx_com_wl * const pbx_com_wl = await prisma.pbx_com_wl.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__pbx_com_wlClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Pbx_com_wls. * @param {pbx_com_wlDeleteManyArgs} args - Arguments to filter Pbx_com_wls to delete. * @example * // Delete a few Pbx_com_wls * const { count } = await prisma.pbx_com_wl.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Pbx_com_wls. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {pbx_com_wlUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Pbx_com_wls * const pbx_com_wl = await prisma.pbx_com_wl.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Pbx_com_wl. * @param {pbx_com_wlUpsertArgs} args - Arguments to update or create a Pbx_com_wl. * @example * // Update or create a Pbx_com_wl * const pbx_com_wl = await prisma.pbx_com_wl.upsert({ * create: { * // ... data to create a Pbx_com_wl * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Pbx_com_wl we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__pbx_com_wlClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Pbx_com_wls. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {pbx_com_wlCountArgs} args - Arguments to filter Pbx_com_wls to count. * @example * // Count the number of Pbx_com_wls * const count = await prisma.pbx_com_wl.count({ * where: { * // ... the filter for the Pbx_com_wls 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 Pbx_com_wl. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Pbx_com_wlAggregateArgs} 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 Pbx_com_wl. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {pbx_com_wlGroupByArgs} 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 pbx_com_wlGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: pbx_com_wlGroupByArgs['orderBy'] } : { orderBy?: pbx_com_wlGroupByArgs['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 ? GetPbx_com_wlGroupByPayload : Prisma.PrismaPromise /** * Fields of the pbx_com_wl model */ readonly fields: pbx_com_wlFieldRefs; } /** * The delegate class that acts as a "Promise-like" for pbx_com_wl. * 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__pbx_com_wlClient 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 pbx_com_wl model */ export interface pbx_com_wlFieldRefs { readonly id: Prisma.FieldRef<"pbx_com_wl", 'Int'> readonly phone: Prisma.FieldRef<"pbx_com_wl", 'String'> readonly country_whitelist: Prisma.FieldRef<"pbx_com_wl", 'String'> } // Custom InputTypes /** * pbx_com_wl findUnique */ export type pbx_com_wlFindUniqueArgs = { /** * Select specific fields to fetch from the pbx_com_wl */ select?: Prisma.pbx_com_wlSelect | null /** * Omit specific fields from the pbx_com_wl */ omit?: Prisma.pbx_com_wlOmit | null /** * Filter, which pbx_com_wl to fetch. */ where: Prisma.pbx_com_wlWhereUniqueInput } /** * pbx_com_wl findUniqueOrThrow */ export type pbx_com_wlFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the pbx_com_wl */ select?: Prisma.pbx_com_wlSelect | null /** * Omit specific fields from the pbx_com_wl */ omit?: Prisma.pbx_com_wlOmit | null /** * Filter, which pbx_com_wl to fetch. */ where: Prisma.pbx_com_wlWhereUniqueInput } /** * pbx_com_wl findFirst */ export type pbx_com_wlFindFirstArgs = { /** * Select specific fields to fetch from the pbx_com_wl */ select?: Prisma.pbx_com_wlSelect | null /** * Omit specific fields from the pbx_com_wl */ omit?: Prisma.pbx_com_wlOmit | null /** * Filter, which pbx_com_wl to fetch. */ where?: Prisma.pbx_com_wlWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of pbx_com_wls to fetch. */ orderBy?: Prisma.pbx_com_wlOrderByWithRelationInput | Prisma.pbx_com_wlOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for pbx_com_wls. */ cursor?: Prisma.pbx_com_wlWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` pbx_com_wls 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` pbx_com_wls. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of pbx_com_wls. */ distinct?: Prisma.Pbx_com_wlScalarFieldEnum | Prisma.Pbx_com_wlScalarFieldEnum[] } /** * pbx_com_wl findFirstOrThrow */ export type pbx_com_wlFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the pbx_com_wl */ select?: Prisma.pbx_com_wlSelect | null /** * Omit specific fields from the pbx_com_wl */ omit?: Prisma.pbx_com_wlOmit | null /** * Filter, which pbx_com_wl to fetch. */ where?: Prisma.pbx_com_wlWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of pbx_com_wls to fetch. */ orderBy?: Prisma.pbx_com_wlOrderByWithRelationInput | Prisma.pbx_com_wlOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for pbx_com_wls. */ cursor?: Prisma.pbx_com_wlWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` pbx_com_wls 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` pbx_com_wls. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of pbx_com_wls. */ distinct?: Prisma.Pbx_com_wlScalarFieldEnum | Prisma.Pbx_com_wlScalarFieldEnum[] } /** * pbx_com_wl findMany */ export type pbx_com_wlFindManyArgs = { /** * Select specific fields to fetch from the pbx_com_wl */ select?: Prisma.pbx_com_wlSelect | null /** * Omit specific fields from the pbx_com_wl */ omit?: Prisma.pbx_com_wlOmit | null /** * Filter, which pbx_com_wls to fetch. */ where?: Prisma.pbx_com_wlWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of pbx_com_wls to fetch. */ orderBy?: Prisma.pbx_com_wlOrderByWithRelationInput | Prisma.pbx_com_wlOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing pbx_com_wls. */ cursor?: Prisma.pbx_com_wlWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` pbx_com_wls 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` pbx_com_wls. */ skip?: number distinct?: Prisma.Pbx_com_wlScalarFieldEnum | Prisma.Pbx_com_wlScalarFieldEnum[] } /** * pbx_com_wl create */ export type pbx_com_wlCreateArgs = { /** * Select specific fields to fetch from the pbx_com_wl */ select?: Prisma.pbx_com_wlSelect | null /** * Omit specific fields from the pbx_com_wl */ omit?: Prisma.pbx_com_wlOmit | null /** * The data needed to create a pbx_com_wl. */ data: Prisma.XOR } /** * pbx_com_wl createMany */ export type pbx_com_wlCreateManyArgs = { /** * The data used to create many pbx_com_wls. */ data: Prisma.pbx_com_wlCreateManyInput | Prisma.pbx_com_wlCreateManyInput[] skipDuplicates?: boolean } /** * pbx_com_wl update */ export type pbx_com_wlUpdateArgs = { /** * Select specific fields to fetch from the pbx_com_wl */ select?: Prisma.pbx_com_wlSelect | null /** * Omit specific fields from the pbx_com_wl */ omit?: Prisma.pbx_com_wlOmit | null /** * The data needed to update a pbx_com_wl. */ data: Prisma.XOR /** * Choose, which pbx_com_wl to update. */ where: Prisma.pbx_com_wlWhereUniqueInput } /** * pbx_com_wl updateMany */ export type pbx_com_wlUpdateManyArgs = { /** * The data used to update pbx_com_wls. */ data: Prisma.XOR /** * Filter which pbx_com_wls to update */ where?: Prisma.pbx_com_wlWhereInput /** * Limit how many pbx_com_wls to update. */ limit?: number } /** * pbx_com_wl upsert */ export type pbx_com_wlUpsertArgs = { /** * Select specific fields to fetch from the pbx_com_wl */ select?: Prisma.pbx_com_wlSelect | null /** * Omit specific fields from the pbx_com_wl */ omit?: Prisma.pbx_com_wlOmit | null /** * The filter to search for the pbx_com_wl to update in case it exists. */ where: Prisma.pbx_com_wlWhereUniqueInput /** * In case the pbx_com_wl found by the `where` argument doesn't exist, create a new pbx_com_wl with this data. */ create: Prisma.XOR /** * In case the pbx_com_wl was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * pbx_com_wl delete */ export type pbx_com_wlDeleteArgs = { /** * Select specific fields to fetch from the pbx_com_wl */ select?: Prisma.pbx_com_wlSelect | null /** * Omit specific fields from the pbx_com_wl */ omit?: Prisma.pbx_com_wlOmit | null /** * Filter which pbx_com_wl to delete. */ where: Prisma.pbx_com_wlWhereUniqueInput } /** * pbx_com_wl deleteMany */ export type pbx_com_wlDeleteManyArgs = { /** * Filter which pbx_com_wls to delete */ where?: Prisma.pbx_com_wlWhereInput /** * Limit how many pbx_com_wls to delete. */ limit?: number } /** * pbx_com_wl without action */ export type pbx_com_wlDefaultArgs = { /** * Select specific fields to fetch from the pbx_com_wl */ select?: Prisma.pbx_com_wlSelect | null /** * Omit specific fields from the pbx_com_wl */ omit?: Prisma.pbx_com_wlOmit | null }