/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `notification_payload` 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 notification_payload * */ export type notification_payloadModel = runtime.Types.Result.DefaultSelection export type AggregateNotification_payload = { _count: Notification_payloadCountAggregateOutputType | null _avg: Notification_payloadAvgAggregateOutputType | null _sum: Notification_payloadSumAggregateOutputType | null _min: Notification_payloadMinAggregateOutputType | null _max: Notification_payloadMaxAggregateOutputType | null } export type Notification_payloadAvgAggregateOutputType = { id: number | null notification_id: number | null } export type Notification_payloadSumAggregateOutputType = { id: number | null notification_id: number | null } export type Notification_payloadMinAggregateOutputType = { id: number | null notification_id: number | null payload: string | null timestamp: Date | null } export type Notification_payloadMaxAggregateOutputType = { id: number | null notification_id: number | null payload: string | null timestamp: Date | null } export type Notification_payloadCountAggregateOutputType = { id: number notification_id: number payload: number timestamp: number _all: number } export type Notification_payloadAvgAggregateInputType = { id?: true notification_id?: true } export type Notification_payloadSumAggregateInputType = { id?: true notification_id?: true } export type Notification_payloadMinAggregateInputType = { id?: true notification_id?: true payload?: true timestamp?: true } export type Notification_payloadMaxAggregateInputType = { id?: true notification_id?: true payload?: true timestamp?: true } export type Notification_payloadCountAggregateInputType = { id?: true notification_id?: true payload?: true timestamp?: true _all?: true } export type Notification_payloadAggregateArgs = { /** * Filter which notification_payload to aggregate. */ where?: Prisma.notification_payloadWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of notification_payloads to fetch. */ orderBy?: Prisma.notification_payloadOrderByWithRelationInput | Prisma.notification_payloadOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.notification_payloadWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` notification_payloads 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` notification_payloads. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned notification_payloads **/ _count?: true | Notification_payloadCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Notification_payloadAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Notification_payloadSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Notification_payloadMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Notification_payloadMaxAggregateInputType } export type GetNotification_payloadAggregateType = { [P in keyof T & keyof AggregateNotification_payload]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type notification_payloadGroupByArgs = { where?: Prisma.notification_payloadWhereInput orderBy?: Prisma.notification_payloadOrderByWithAggregationInput | Prisma.notification_payloadOrderByWithAggregationInput[] by: Prisma.Notification_payloadScalarFieldEnum[] | Prisma.Notification_payloadScalarFieldEnum having?: Prisma.notification_payloadScalarWhereWithAggregatesInput take?: number skip?: number _count?: Notification_payloadCountAggregateInputType | true _avg?: Notification_payloadAvgAggregateInputType _sum?: Notification_payloadSumAggregateInputType _min?: Notification_payloadMinAggregateInputType _max?: Notification_payloadMaxAggregateInputType } export type Notification_payloadGroupByOutputType = { id: number notification_id: number payload: string timestamp: Date _count: Notification_payloadCountAggregateOutputType | null _avg: Notification_payloadAvgAggregateOutputType | null _sum: Notification_payloadSumAggregateOutputType | null _min: Notification_payloadMinAggregateOutputType | null _max: Notification_payloadMaxAggregateOutputType | null } type GetNotification_payloadGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Notification_payloadGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type notification_payloadWhereInput = { AND?: Prisma.notification_payloadWhereInput | Prisma.notification_payloadWhereInput[] OR?: Prisma.notification_payloadWhereInput[] NOT?: Prisma.notification_payloadWhereInput | Prisma.notification_payloadWhereInput[] id?: Prisma.IntFilter<"notification_payload"> | number notification_id?: Prisma.IntFilter<"notification_payload"> | number payload?: Prisma.StringFilter<"notification_payload"> | string timestamp?: Prisma.DateTimeFilter<"notification_payload"> | Date | string } export type notification_payloadOrderByWithRelationInput = { id?: Prisma.SortOrder notification_id?: Prisma.SortOrder payload?: Prisma.SortOrder timestamp?: Prisma.SortOrder _relevance?: Prisma.notification_payloadOrderByRelevanceInput } export type notification_payloadWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.notification_payloadWhereInput | Prisma.notification_payloadWhereInput[] OR?: Prisma.notification_payloadWhereInput[] NOT?: Prisma.notification_payloadWhereInput | Prisma.notification_payloadWhereInput[] notification_id?: Prisma.IntFilter<"notification_payload"> | number payload?: Prisma.StringFilter<"notification_payload"> | string timestamp?: Prisma.DateTimeFilter<"notification_payload"> | Date | string }, "id"> export type notification_payloadOrderByWithAggregationInput = { id?: Prisma.SortOrder notification_id?: Prisma.SortOrder payload?: Prisma.SortOrder timestamp?: Prisma.SortOrder _count?: Prisma.notification_payloadCountOrderByAggregateInput _avg?: Prisma.notification_payloadAvgOrderByAggregateInput _max?: Prisma.notification_payloadMaxOrderByAggregateInput _min?: Prisma.notification_payloadMinOrderByAggregateInput _sum?: Prisma.notification_payloadSumOrderByAggregateInput } export type notification_payloadScalarWhereWithAggregatesInput = { AND?: Prisma.notification_payloadScalarWhereWithAggregatesInput | Prisma.notification_payloadScalarWhereWithAggregatesInput[] OR?: Prisma.notification_payloadScalarWhereWithAggregatesInput[] NOT?: Prisma.notification_payloadScalarWhereWithAggregatesInput | Prisma.notification_payloadScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"notification_payload"> | number notification_id?: Prisma.IntWithAggregatesFilter<"notification_payload"> | number payload?: Prisma.StringWithAggregatesFilter<"notification_payload"> | string timestamp?: Prisma.DateTimeWithAggregatesFilter<"notification_payload"> | Date | string } export type notification_payloadCreateInput = { notification_id: number payload: string timestamp?: Date | string } export type notification_payloadUncheckedCreateInput = { id?: number notification_id: number payload: string timestamp?: Date | string } export type notification_payloadUpdateInput = { notification_id?: Prisma.IntFieldUpdateOperationsInput | number payload?: Prisma.StringFieldUpdateOperationsInput | string timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type notification_payloadUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number notification_id?: Prisma.IntFieldUpdateOperationsInput | number payload?: Prisma.StringFieldUpdateOperationsInput | string timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type notification_payloadCreateManyInput = { id?: number notification_id: number payload: string timestamp?: Date | string } export type notification_payloadUpdateManyMutationInput = { notification_id?: Prisma.IntFieldUpdateOperationsInput | number payload?: Prisma.StringFieldUpdateOperationsInput | string timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type notification_payloadUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number notification_id?: Prisma.IntFieldUpdateOperationsInput | number payload?: Prisma.StringFieldUpdateOperationsInput | string timestamp?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type notification_payloadOrderByRelevanceInput = { fields: Prisma.notification_payloadOrderByRelevanceFieldEnum | Prisma.notification_payloadOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type notification_payloadCountOrderByAggregateInput = { id?: Prisma.SortOrder notification_id?: Prisma.SortOrder payload?: Prisma.SortOrder timestamp?: Prisma.SortOrder } export type notification_payloadAvgOrderByAggregateInput = { id?: Prisma.SortOrder notification_id?: Prisma.SortOrder } export type notification_payloadMaxOrderByAggregateInput = { id?: Prisma.SortOrder notification_id?: Prisma.SortOrder payload?: Prisma.SortOrder timestamp?: Prisma.SortOrder } export type notification_payloadMinOrderByAggregateInput = { id?: Prisma.SortOrder notification_id?: Prisma.SortOrder payload?: Prisma.SortOrder timestamp?: Prisma.SortOrder } export type notification_payloadSumOrderByAggregateInput = { id?: Prisma.SortOrder notification_id?: Prisma.SortOrder } export type notification_payloadSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean notification_id?: boolean payload?: boolean timestamp?: boolean }, ExtArgs["result"]["notification_payload"]> export type notification_payloadSelectScalar = { id?: boolean notification_id?: boolean payload?: boolean timestamp?: boolean } export type notification_payloadOmit = runtime.Types.Extensions.GetOmit<"id" | "notification_id" | "payload" | "timestamp", ExtArgs["result"]["notification_payload"]> export type $notification_payloadPayload = { name: "notification_payload" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number notification_id: number payload: string timestamp: Date }, ExtArgs["result"]["notification_payload"]> composites: {} } export type notification_payloadGetPayload = runtime.Types.Result.GetResult export type notification_payloadCountArgs = Omit & { select?: Notification_payloadCountAggregateInputType | true } export interface notification_payloadDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['notification_payload'], meta: { name: 'notification_payload' } } /** * Find zero or one Notification_payload that matches the filter. * @param {notification_payloadFindUniqueArgs} args - Arguments to find a Notification_payload * @example * // Get one Notification_payload * const notification_payload = await prisma.notification_payload.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__notification_payloadClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Notification_payload that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {notification_payloadFindUniqueOrThrowArgs} args - Arguments to find a Notification_payload * @example * // Get one Notification_payload * const notification_payload = await prisma.notification_payload.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__notification_payloadClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Notification_payload 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 {notification_payloadFindFirstArgs} args - Arguments to find a Notification_payload * @example * // Get one Notification_payload * const notification_payload = await prisma.notification_payload.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__notification_payloadClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Notification_payload 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 {notification_payloadFindFirstOrThrowArgs} args - Arguments to find a Notification_payload * @example * // Get one Notification_payload * const notification_payload = await prisma.notification_payload.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__notification_payloadClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Notification_payloads 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 {notification_payloadFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Notification_payloads * const notification_payloads = await prisma.notification_payload.findMany() * * // Get first 10 Notification_payloads * const notification_payloads = await prisma.notification_payload.findMany({ take: 10 }) * * // Only select the `id` * const notification_payloadWithIdOnly = await prisma.notification_payload.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Notification_payload. * @param {notification_payloadCreateArgs} args - Arguments to create a Notification_payload. * @example * // Create one Notification_payload * const Notification_payload = await prisma.notification_payload.create({ * data: { * // ... data to create a Notification_payload * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__notification_payloadClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Notification_payloads. * @param {notification_payloadCreateManyArgs} args - Arguments to create many Notification_payloads. * @example * // Create many Notification_payloads * const notification_payload = await prisma.notification_payload.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Notification_payload. * @param {notification_payloadDeleteArgs} args - Arguments to delete one Notification_payload. * @example * // Delete one Notification_payload * const Notification_payload = await prisma.notification_payload.delete({ * where: { * // ... filter to delete one Notification_payload * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__notification_payloadClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Notification_payload. * @param {notification_payloadUpdateArgs} args - Arguments to update one Notification_payload. * @example * // Update one Notification_payload * const notification_payload = await prisma.notification_payload.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__notification_payloadClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Notification_payloads. * @param {notification_payloadDeleteManyArgs} args - Arguments to filter Notification_payloads to delete. * @example * // Delete a few Notification_payloads * const { count } = await prisma.notification_payload.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Notification_payloads. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {notification_payloadUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Notification_payloads * const notification_payload = await prisma.notification_payload.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Notification_payload. * @param {notification_payloadUpsertArgs} args - Arguments to update or create a Notification_payload. * @example * // Update or create a Notification_payload * const notification_payload = await prisma.notification_payload.upsert({ * create: { * // ... data to create a Notification_payload * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Notification_payload we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__notification_payloadClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Notification_payloads. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {notification_payloadCountArgs} args - Arguments to filter Notification_payloads to count. * @example * // Count the number of Notification_payloads * const count = await prisma.notification_payload.count({ * where: { * // ... the filter for the Notification_payloads 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 Notification_payload. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Notification_payloadAggregateArgs} 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 Notification_payload. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {notification_payloadGroupByArgs} 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 notification_payloadGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: notification_payloadGroupByArgs['orderBy'] } : { orderBy?: notification_payloadGroupByArgs['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 ? GetNotification_payloadGroupByPayload : Prisma.PrismaPromise /** * Fields of the notification_payload model */ readonly fields: notification_payloadFieldRefs; } /** * The delegate class that acts as a "Promise-like" for notification_payload. * 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__notification_payloadClient 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 notification_payload model */ export interface notification_payloadFieldRefs { readonly id: Prisma.FieldRef<"notification_payload", 'Int'> readonly notification_id: Prisma.FieldRef<"notification_payload", 'Int'> readonly payload: Prisma.FieldRef<"notification_payload", 'String'> readonly timestamp: Prisma.FieldRef<"notification_payload", 'DateTime'> } // Custom InputTypes /** * notification_payload findUnique */ export type notification_payloadFindUniqueArgs = { /** * Select specific fields to fetch from the notification_payload */ select?: Prisma.notification_payloadSelect | null /** * Omit specific fields from the notification_payload */ omit?: Prisma.notification_payloadOmit | null /** * Filter, which notification_payload to fetch. */ where: Prisma.notification_payloadWhereUniqueInput } /** * notification_payload findUniqueOrThrow */ export type notification_payloadFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the notification_payload */ select?: Prisma.notification_payloadSelect | null /** * Omit specific fields from the notification_payload */ omit?: Prisma.notification_payloadOmit | null /** * Filter, which notification_payload to fetch. */ where: Prisma.notification_payloadWhereUniqueInput } /** * notification_payload findFirst */ export type notification_payloadFindFirstArgs = { /** * Select specific fields to fetch from the notification_payload */ select?: Prisma.notification_payloadSelect | null /** * Omit specific fields from the notification_payload */ omit?: Prisma.notification_payloadOmit | null /** * Filter, which notification_payload to fetch. */ where?: Prisma.notification_payloadWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of notification_payloads to fetch. */ orderBy?: Prisma.notification_payloadOrderByWithRelationInput | Prisma.notification_payloadOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for notification_payloads. */ cursor?: Prisma.notification_payloadWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` notification_payloads 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` notification_payloads. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of notification_payloads. */ distinct?: Prisma.Notification_payloadScalarFieldEnum | Prisma.Notification_payloadScalarFieldEnum[] } /** * notification_payload findFirstOrThrow */ export type notification_payloadFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the notification_payload */ select?: Prisma.notification_payloadSelect | null /** * Omit specific fields from the notification_payload */ omit?: Prisma.notification_payloadOmit | null /** * Filter, which notification_payload to fetch. */ where?: Prisma.notification_payloadWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of notification_payloads to fetch. */ orderBy?: Prisma.notification_payloadOrderByWithRelationInput | Prisma.notification_payloadOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for notification_payloads. */ cursor?: Prisma.notification_payloadWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` notification_payloads 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` notification_payloads. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of notification_payloads. */ distinct?: Prisma.Notification_payloadScalarFieldEnum | Prisma.Notification_payloadScalarFieldEnum[] } /** * notification_payload findMany */ export type notification_payloadFindManyArgs = { /** * Select specific fields to fetch from the notification_payload */ select?: Prisma.notification_payloadSelect | null /** * Omit specific fields from the notification_payload */ omit?: Prisma.notification_payloadOmit | null /** * Filter, which notification_payloads to fetch. */ where?: Prisma.notification_payloadWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of notification_payloads to fetch. */ orderBy?: Prisma.notification_payloadOrderByWithRelationInput | Prisma.notification_payloadOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing notification_payloads. */ cursor?: Prisma.notification_payloadWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` notification_payloads 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` notification_payloads. */ skip?: number distinct?: Prisma.Notification_payloadScalarFieldEnum | Prisma.Notification_payloadScalarFieldEnum[] } /** * notification_payload create */ export type notification_payloadCreateArgs = { /** * Select specific fields to fetch from the notification_payload */ select?: Prisma.notification_payloadSelect | null /** * Omit specific fields from the notification_payload */ omit?: Prisma.notification_payloadOmit | null /** * The data needed to create a notification_payload. */ data: Prisma.XOR } /** * notification_payload createMany */ export type notification_payloadCreateManyArgs = { /** * The data used to create many notification_payloads. */ data: Prisma.notification_payloadCreateManyInput | Prisma.notification_payloadCreateManyInput[] skipDuplicates?: boolean } /** * notification_payload update */ export type notification_payloadUpdateArgs = { /** * Select specific fields to fetch from the notification_payload */ select?: Prisma.notification_payloadSelect | null /** * Omit specific fields from the notification_payload */ omit?: Prisma.notification_payloadOmit | null /** * The data needed to update a notification_payload. */ data: Prisma.XOR /** * Choose, which notification_payload to update. */ where: Prisma.notification_payloadWhereUniqueInput } /** * notification_payload updateMany */ export type notification_payloadUpdateManyArgs = { /** * The data used to update notification_payloads. */ data: Prisma.XOR /** * Filter which notification_payloads to update */ where?: Prisma.notification_payloadWhereInput /** * Limit how many notification_payloads to update. */ limit?: number } /** * notification_payload upsert */ export type notification_payloadUpsertArgs = { /** * Select specific fields to fetch from the notification_payload */ select?: Prisma.notification_payloadSelect | null /** * Omit specific fields from the notification_payload */ omit?: Prisma.notification_payloadOmit | null /** * The filter to search for the notification_payload to update in case it exists. */ where: Prisma.notification_payloadWhereUniqueInput /** * In case the notification_payload found by the `where` argument doesn't exist, create a new notification_payload with this data. */ create: Prisma.XOR /** * In case the notification_payload was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * notification_payload delete */ export type notification_payloadDeleteArgs = { /** * Select specific fields to fetch from the notification_payload */ select?: Prisma.notification_payloadSelect | null /** * Omit specific fields from the notification_payload */ omit?: Prisma.notification_payloadOmit | null /** * Filter which notification_payload to delete. */ where: Prisma.notification_payloadWhereUniqueInput } /** * notification_payload deleteMany */ export type notification_payloadDeleteManyArgs = { /** * Filter which notification_payloads to delete */ where?: Prisma.notification_payloadWhereInput /** * Limit how many notification_payloads to delete. */ limit?: number } /** * notification_payload without action */ export type notification_payloadDefaultArgs = { /** * Select specific fields to fetch from the notification_payload */ select?: Prisma.notification_payloadSelect | null /** * Omit specific fields from the notification_payload */ omit?: Prisma.notification_payloadOmit | null }