/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `product_zone_placemarks` 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 product_zone_placemarks * */ export type product_zone_placemarksModel = runtime.Types.Result.DefaultSelection export type AggregateProduct_zone_placemarks = { _count: Product_zone_placemarksCountAggregateOutputType | null _avg: Product_zone_placemarksAvgAggregateOutputType | null _sum: Product_zone_placemarksSumAggregateOutputType | null _min: Product_zone_placemarksMinAggregateOutputType | null _max: Product_zone_placemarksMaxAggregateOutputType | null } export type Product_zone_placemarksAvgAggregateOutputType = { id: number | null product_zone_id: number | null placemarks_id: number | null } export type Product_zone_placemarksSumAggregateOutputType = { id: bigint | null product_zone_id: bigint | null placemarks_id: bigint | null } export type Product_zone_placemarksMinAggregateOutputType = { id: bigint | null product_zone_id: bigint | null placemarks_id: bigint | null } export type Product_zone_placemarksMaxAggregateOutputType = { id: bigint | null product_zone_id: bigint | null placemarks_id: bigint | null } export type Product_zone_placemarksCountAggregateOutputType = { id: number product_zone_id: number placemarks_id: number _all: number } export type Product_zone_placemarksAvgAggregateInputType = { id?: true product_zone_id?: true placemarks_id?: true } export type Product_zone_placemarksSumAggregateInputType = { id?: true product_zone_id?: true placemarks_id?: true } export type Product_zone_placemarksMinAggregateInputType = { id?: true product_zone_id?: true placemarks_id?: true } export type Product_zone_placemarksMaxAggregateInputType = { id?: true product_zone_id?: true placemarks_id?: true } export type Product_zone_placemarksCountAggregateInputType = { id?: true product_zone_id?: true placemarks_id?: true _all?: true } export type Product_zone_placemarksAggregateArgs = { /** * Filter which product_zone_placemarks to aggregate. */ where?: Prisma.product_zone_placemarksWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of product_zone_placemarks to fetch. */ orderBy?: Prisma.product_zone_placemarksOrderByWithRelationInput | Prisma.product_zone_placemarksOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.product_zone_placemarksWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` product_zone_placemarks 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` product_zone_placemarks. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned product_zone_placemarks **/ _count?: true | Product_zone_placemarksCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Product_zone_placemarksAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Product_zone_placemarksSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Product_zone_placemarksMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Product_zone_placemarksMaxAggregateInputType } export type GetProduct_zone_placemarksAggregateType = { [P in keyof T & keyof AggregateProduct_zone_placemarks]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type product_zone_placemarksGroupByArgs = { where?: Prisma.product_zone_placemarksWhereInput orderBy?: Prisma.product_zone_placemarksOrderByWithAggregationInput | Prisma.product_zone_placemarksOrderByWithAggregationInput[] by: Prisma.Product_zone_placemarksScalarFieldEnum[] | Prisma.Product_zone_placemarksScalarFieldEnum having?: Prisma.product_zone_placemarksScalarWhereWithAggregatesInput take?: number skip?: number _count?: Product_zone_placemarksCountAggregateInputType | true _avg?: Product_zone_placemarksAvgAggregateInputType _sum?: Product_zone_placemarksSumAggregateInputType _min?: Product_zone_placemarksMinAggregateInputType _max?: Product_zone_placemarksMaxAggregateInputType } export type Product_zone_placemarksGroupByOutputType = { id: bigint product_zone_id: bigint placemarks_id: bigint _count: Product_zone_placemarksCountAggregateOutputType | null _avg: Product_zone_placemarksAvgAggregateOutputType | null _sum: Product_zone_placemarksSumAggregateOutputType | null _min: Product_zone_placemarksMinAggregateOutputType | null _max: Product_zone_placemarksMaxAggregateOutputType | null } type GetProduct_zone_placemarksGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Product_zone_placemarksGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type product_zone_placemarksWhereInput = { AND?: Prisma.product_zone_placemarksWhereInput | Prisma.product_zone_placemarksWhereInput[] OR?: Prisma.product_zone_placemarksWhereInput[] NOT?: Prisma.product_zone_placemarksWhereInput | Prisma.product_zone_placemarksWhereInput[] id?: Prisma.BigIntFilter<"product_zone_placemarks"> | bigint | number product_zone_id?: Prisma.BigIntFilter<"product_zone_placemarks"> | bigint | number placemarks_id?: Prisma.BigIntFilter<"product_zone_placemarks"> | bigint | number } export type product_zone_placemarksOrderByWithRelationInput = { id?: Prisma.SortOrder product_zone_id?: Prisma.SortOrder placemarks_id?: Prisma.SortOrder } export type product_zone_placemarksWhereUniqueInput = Prisma.AtLeast<{ id?: bigint | number AND?: Prisma.product_zone_placemarksWhereInput | Prisma.product_zone_placemarksWhereInput[] OR?: Prisma.product_zone_placemarksWhereInput[] NOT?: Prisma.product_zone_placemarksWhereInput | Prisma.product_zone_placemarksWhereInput[] product_zone_id?: Prisma.BigIntFilter<"product_zone_placemarks"> | bigint | number placemarks_id?: Prisma.BigIntFilter<"product_zone_placemarks"> | bigint | number }, "id"> export type product_zone_placemarksOrderByWithAggregationInput = { id?: Prisma.SortOrder product_zone_id?: Prisma.SortOrder placemarks_id?: Prisma.SortOrder _count?: Prisma.product_zone_placemarksCountOrderByAggregateInput _avg?: Prisma.product_zone_placemarksAvgOrderByAggregateInput _max?: Prisma.product_zone_placemarksMaxOrderByAggregateInput _min?: Prisma.product_zone_placemarksMinOrderByAggregateInput _sum?: Prisma.product_zone_placemarksSumOrderByAggregateInput } export type product_zone_placemarksScalarWhereWithAggregatesInput = { AND?: Prisma.product_zone_placemarksScalarWhereWithAggregatesInput | Prisma.product_zone_placemarksScalarWhereWithAggregatesInput[] OR?: Prisma.product_zone_placemarksScalarWhereWithAggregatesInput[] NOT?: Prisma.product_zone_placemarksScalarWhereWithAggregatesInput | Prisma.product_zone_placemarksScalarWhereWithAggregatesInput[] id?: Prisma.BigIntWithAggregatesFilter<"product_zone_placemarks"> | bigint | number product_zone_id?: Prisma.BigIntWithAggregatesFilter<"product_zone_placemarks"> | bigint | number placemarks_id?: Prisma.BigIntWithAggregatesFilter<"product_zone_placemarks"> | bigint | number } export type product_zone_placemarksCreateInput = { id?: bigint | number product_zone_id: bigint | number placemarks_id: bigint | number } export type product_zone_placemarksUncheckedCreateInput = { id?: bigint | number product_zone_id: bigint | number placemarks_id: bigint | number } export type product_zone_placemarksUpdateInput = { id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number product_zone_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number placemarks_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number } export type product_zone_placemarksUncheckedUpdateInput = { id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number product_zone_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number placemarks_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number } export type product_zone_placemarksCreateManyInput = { id?: bigint | number product_zone_id: bigint | number placemarks_id: bigint | number } export type product_zone_placemarksUpdateManyMutationInput = { id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number product_zone_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number placemarks_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number } export type product_zone_placemarksUncheckedUpdateManyInput = { id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number product_zone_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number placemarks_id?: Prisma.BigIntFieldUpdateOperationsInput | bigint | number } export type product_zone_placemarksCountOrderByAggregateInput = { id?: Prisma.SortOrder product_zone_id?: Prisma.SortOrder placemarks_id?: Prisma.SortOrder } export type product_zone_placemarksAvgOrderByAggregateInput = { id?: Prisma.SortOrder product_zone_id?: Prisma.SortOrder placemarks_id?: Prisma.SortOrder } export type product_zone_placemarksMaxOrderByAggregateInput = { id?: Prisma.SortOrder product_zone_id?: Prisma.SortOrder placemarks_id?: Prisma.SortOrder } export type product_zone_placemarksMinOrderByAggregateInput = { id?: Prisma.SortOrder product_zone_id?: Prisma.SortOrder placemarks_id?: Prisma.SortOrder } export type product_zone_placemarksSumOrderByAggregateInput = { id?: Prisma.SortOrder product_zone_id?: Prisma.SortOrder placemarks_id?: Prisma.SortOrder } export type product_zone_placemarksSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean product_zone_id?: boolean placemarks_id?: boolean }, ExtArgs["result"]["product_zone_placemarks"]> export type product_zone_placemarksSelectScalar = { id?: boolean product_zone_id?: boolean placemarks_id?: boolean } export type product_zone_placemarksOmit = runtime.Types.Extensions.GetOmit<"id" | "product_zone_id" | "placemarks_id", ExtArgs["result"]["product_zone_placemarks"]> export type $product_zone_placemarksPayload = { name: "product_zone_placemarks" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: bigint product_zone_id: bigint placemarks_id: bigint }, ExtArgs["result"]["product_zone_placemarks"]> composites: {} } export type product_zone_placemarksGetPayload = runtime.Types.Result.GetResult export type product_zone_placemarksCountArgs = Omit & { select?: Product_zone_placemarksCountAggregateInputType | true } export interface product_zone_placemarksDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['product_zone_placemarks'], meta: { name: 'product_zone_placemarks' } } /** * Find zero or one Product_zone_placemarks that matches the filter. * @param {product_zone_placemarksFindUniqueArgs} args - Arguments to find a Product_zone_placemarks * @example * // Get one Product_zone_placemarks * const product_zone_placemarks = await prisma.product_zone_placemarks.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__product_zone_placemarksClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Product_zone_placemarks that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {product_zone_placemarksFindUniqueOrThrowArgs} args - Arguments to find a Product_zone_placemarks * @example * // Get one Product_zone_placemarks * const product_zone_placemarks = await prisma.product_zone_placemarks.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__product_zone_placemarksClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Product_zone_placemarks 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 {product_zone_placemarksFindFirstArgs} args - Arguments to find a Product_zone_placemarks * @example * // Get one Product_zone_placemarks * const product_zone_placemarks = await prisma.product_zone_placemarks.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__product_zone_placemarksClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Product_zone_placemarks 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 {product_zone_placemarksFindFirstOrThrowArgs} args - Arguments to find a Product_zone_placemarks * @example * // Get one Product_zone_placemarks * const product_zone_placemarks = await prisma.product_zone_placemarks.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__product_zone_placemarksClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Product_zone_placemarks 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 {product_zone_placemarksFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Product_zone_placemarks * const product_zone_placemarks = await prisma.product_zone_placemarks.findMany() * * // Get first 10 Product_zone_placemarks * const product_zone_placemarks = await prisma.product_zone_placemarks.findMany({ take: 10 }) * * // Only select the `id` * const product_zone_placemarksWithIdOnly = await prisma.product_zone_placemarks.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Product_zone_placemarks. * @param {product_zone_placemarksCreateArgs} args - Arguments to create a Product_zone_placemarks. * @example * // Create one Product_zone_placemarks * const Product_zone_placemarks = await prisma.product_zone_placemarks.create({ * data: { * // ... data to create a Product_zone_placemarks * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__product_zone_placemarksClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Product_zone_placemarks. * @param {product_zone_placemarksCreateManyArgs} args - Arguments to create many Product_zone_placemarks. * @example * // Create many Product_zone_placemarks * const product_zone_placemarks = await prisma.product_zone_placemarks.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Product_zone_placemarks. * @param {product_zone_placemarksDeleteArgs} args - Arguments to delete one Product_zone_placemarks. * @example * // Delete one Product_zone_placemarks * const Product_zone_placemarks = await prisma.product_zone_placemarks.delete({ * where: { * // ... filter to delete one Product_zone_placemarks * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__product_zone_placemarksClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Product_zone_placemarks. * @param {product_zone_placemarksUpdateArgs} args - Arguments to update one Product_zone_placemarks. * @example * // Update one Product_zone_placemarks * const product_zone_placemarks = await prisma.product_zone_placemarks.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__product_zone_placemarksClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Product_zone_placemarks. * @param {product_zone_placemarksDeleteManyArgs} args - Arguments to filter Product_zone_placemarks to delete. * @example * // Delete a few Product_zone_placemarks * const { count } = await prisma.product_zone_placemarks.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Product_zone_placemarks. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {product_zone_placemarksUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Product_zone_placemarks * const product_zone_placemarks = await prisma.product_zone_placemarks.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Product_zone_placemarks. * @param {product_zone_placemarksUpsertArgs} args - Arguments to update or create a Product_zone_placemarks. * @example * // Update or create a Product_zone_placemarks * const product_zone_placemarks = await prisma.product_zone_placemarks.upsert({ * create: { * // ... data to create a Product_zone_placemarks * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Product_zone_placemarks we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__product_zone_placemarksClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Product_zone_placemarks. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {product_zone_placemarksCountArgs} args - Arguments to filter Product_zone_placemarks to count. * @example * // Count the number of Product_zone_placemarks * const count = await prisma.product_zone_placemarks.count({ * where: { * // ... the filter for the Product_zone_placemarks 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 Product_zone_placemarks. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Product_zone_placemarksAggregateArgs} 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 Product_zone_placemarks. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {product_zone_placemarksGroupByArgs} 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 product_zone_placemarksGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: product_zone_placemarksGroupByArgs['orderBy'] } : { orderBy?: product_zone_placemarksGroupByArgs['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 ? GetProduct_zone_placemarksGroupByPayload : Prisma.PrismaPromise /** * Fields of the product_zone_placemarks model */ readonly fields: product_zone_placemarksFieldRefs; } /** * The delegate class that acts as a "Promise-like" for product_zone_placemarks. * 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__product_zone_placemarksClient 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 product_zone_placemarks model */ export interface product_zone_placemarksFieldRefs { readonly id: Prisma.FieldRef<"product_zone_placemarks", 'BigInt'> readonly product_zone_id: Prisma.FieldRef<"product_zone_placemarks", 'BigInt'> readonly placemarks_id: Prisma.FieldRef<"product_zone_placemarks", 'BigInt'> } // Custom InputTypes /** * product_zone_placemarks findUnique */ export type product_zone_placemarksFindUniqueArgs = { /** * Select specific fields to fetch from the product_zone_placemarks */ select?: Prisma.product_zone_placemarksSelect | null /** * Omit specific fields from the product_zone_placemarks */ omit?: Prisma.product_zone_placemarksOmit | null /** * Filter, which product_zone_placemarks to fetch. */ where: Prisma.product_zone_placemarksWhereUniqueInput } /** * product_zone_placemarks findUniqueOrThrow */ export type product_zone_placemarksFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the product_zone_placemarks */ select?: Prisma.product_zone_placemarksSelect | null /** * Omit specific fields from the product_zone_placemarks */ omit?: Prisma.product_zone_placemarksOmit | null /** * Filter, which product_zone_placemarks to fetch. */ where: Prisma.product_zone_placemarksWhereUniqueInput } /** * product_zone_placemarks findFirst */ export type product_zone_placemarksFindFirstArgs = { /** * Select specific fields to fetch from the product_zone_placemarks */ select?: Prisma.product_zone_placemarksSelect | null /** * Omit specific fields from the product_zone_placemarks */ omit?: Prisma.product_zone_placemarksOmit | null /** * Filter, which product_zone_placemarks to fetch. */ where?: Prisma.product_zone_placemarksWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of product_zone_placemarks to fetch. */ orderBy?: Prisma.product_zone_placemarksOrderByWithRelationInput | Prisma.product_zone_placemarksOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for product_zone_placemarks. */ cursor?: Prisma.product_zone_placemarksWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` product_zone_placemarks 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` product_zone_placemarks. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of product_zone_placemarks. */ distinct?: Prisma.Product_zone_placemarksScalarFieldEnum | Prisma.Product_zone_placemarksScalarFieldEnum[] } /** * product_zone_placemarks findFirstOrThrow */ export type product_zone_placemarksFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the product_zone_placemarks */ select?: Prisma.product_zone_placemarksSelect | null /** * Omit specific fields from the product_zone_placemarks */ omit?: Prisma.product_zone_placemarksOmit | null /** * Filter, which product_zone_placemarks to fetch. */ where?: Prisma.product_zone_placemarksWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of product_zone_placemarks to fetch. */ orderBy?: Prisma.product_zone_placemarksOrderByWithRelationInput | Prisma.product_zone_placemarksOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for product_zone_placemarks. */ cursor?: Prisma.product_zone_placemarksWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` product_zone_placemarks 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` product_zone_placemarks. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of product_zone_placemarks. */ distinct?: Prisma.Product_zone_placemarksScalarFieldEnum | Prisma.Product_zone_placemarksScalarFieldEnum[] } /** * product_zone_placemarks findMany */ export type product_zone_placemarksFindManyArgs = { /** * Select specific fields to fetch from the product_zone_placemarks */ select?: Prisma.product_zone_placemarksSelect | null /** * Omit specific fields from the product_zone_placemarks */ omit?: Prisma.product_zone_placemarksOmit | null /** * Filter, which product_zone_placemarks to fetch. */ where?: Prisma.product_zone_placemarksWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of product_zone_placemarks to fetch. */ orderBy?: Prisma.product_zone_placemarksOrderByWithRelationInput | Prisma.product_zone_placemarksOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing product_zone_placemarks. */ cursor?: Prisma.product_zone_placemarksWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` product_zone_placemarks 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` product_zone_placemarks. */ skip?: number distinct?: Prisma.Product_zone_placemarksScalarFieldEnum | Prisma.Product_zone_placemarksScalarFieldEnum[] } /** * product_zone_placemarks create */ export type product_zone_placemarksCreateArgs = { /** * Select specific fields to fetch from the product_zone_placemarks */ select?: Prisma.product_zone_placemarksSelect | null /** * Omit specific fields from the product_zone_placemarks */ omit?: Prisma.product_zone_placemarksOmit | null /** * The data needed to create a product_zone_placemarks. */ data: Prisma.XOR } /** * product_zone_placemarks createMany */ export type product_zone_placemarksCreateManyArgs = { /** * The data used to create many product_zone_placemarks. */ data: Prisma.product_zone_placemarksCreateManyInput | Prisma.product_zone_placemarksCreateManyInput[] skipDuplicates?: boolean } /** * product_zone_placemarks update */ export type product_zone_placemarksUpdateArgs = { /** * Select specific fields to fetch from the product_zone_placemarks */ select?: Prisma.product_zone_placemarksSelect | null /** * Omit specific fields from the product_zone_placemarks */ omit?: Prisma.product_zone_placemarksOmit | null /** * The data needed to update a product_zone_placemarks. */ data: Prisma.XOR /** * Choose, which product_zone_placemarks to update. */ where: Prisma.product_zone_placemarksWhereUniqueInput } /** * product_zone_placemarks updateMany */ export type product_zone_placemarksUpdateManyArgs = { /** * The data used to update product_zone_placemarks. */ data: Prisma.XOR /** * Filter which product_zone_placemarks to update */ where?: Prisma.product_zone_placemarksWhereInput /** * Limit how many product_zone_placemarks to update. */ limit?: number } /** * product_zone_placemarks upsert */ export type product_zone_placemarksUpsertArgs = { /** * Select specific fields to fetch from the product_zone_placemarks */ select?: Prisma.product_zone_placemarksSelect | null /** * Omit specific fields from the product_zone_placemarks */ omit?: Prisma.product_zone_placemarksOmit | null /** * The filter to search for the product_zone_placemarks to update in case it exists. */ where: Prisma.product_zone_placemarksWhereUniqueInput /** * In case the product_zone_placemarks found by the `where` argument doesn't exist, create a new product_zone_placemarks with this data. */ create: Prisma.XOR /** * In case the product_zone_placemarks was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * product_zone_placemarks delete */ export type product_zone_placemarksDeleteArgs = { /** * Select specific fields to fetch from the product_zone_placemarks */ select?: Prisma.product_zone_placemarksSelect | null /** * Omit specific fields from the product_zone_placemarks */ omit?: Prisma.product_zone_placemarksOmit | null /** * Filter which product_zone_placemarks to delete. */ where: Prisma.product_zone_placemarksWhereUniqueInput } /** * product_zone_placemarks deleteMany */ export type product_zone_placemarksDeleteManyArgs = { /** * Filter which product_zone_placemarks to delete */ where?: Prisma.product_zone_placemarksWhereInput /** * Limit how many product_zone_placemarks to delete. */ limit?: number } /** * product_zone_placemarks without action */ export type product_zone_placemarksDefaultArgs = { /** * Select specific fields to fetch from the product_zone_placemarks */ select?: Prisma.product_zone_placemarksSelect | null /** * Omit specific fields from the product_zone_placemarks */ omit?: Prisma.product_zone_placemarksOmit | null }