/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `notes` 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 notes * */ export type notesModel = runtime.Types.Result.DefaultSelection export type AggregateNotes = { _count: NotesCountAggregateOutputType | null _avg: NotesAvgAggregateOutputType | null _sum: NotesSumAggregateOutputType | null _min: NotesMinAggregateOutputType | null _max: NotesMaxAggregateOutputType | null } export type NotesAvgAggregateOutputType = { id: number | null account_id: number | null } export type NotesSumAggregateOutputType = { id: number | null account_id: number | null } export type NotesMinAggregateOutputType = { id: number | null account_id: number | null notes: string | null } export type NotesMaxAggregateOutputType = { id: number | null account_id: number | null notes: string | null } export type NotesCountAggregateOutputType = { id: number account_id: number notes: number _all: number } export type NotesAvgAggregateInputType = { id?: true account_id?: true } export type NotesSumAggregateInputType = { id?: true account_id?: true } export type NotesMinAggregateInputType = { id?: true account_id?: true notes?: true } export type NotesMaxAggregateInputType = { id?: true account_id?: true notes?: true } export type NotesCountAggregateInputType = { id?: true account_id?: true notes?: true _all?: true } export type NotesAggregateArgs = { /** * Filter which notes to aggregate. */ where?: Prisma.notesWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of notes to fetch. */ orderBy?: Prisma.notesOrderByWithRelationInput | Prisma.notesOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.notesWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` notes 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` notes. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned notes **/ _count?: true | NotesCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: NotesAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: NotesSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: NotesMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: NotesMaxAggregateInputType } export type GetNotesAggregateType = { [P in keyof T & keyof AggregateNotes]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type notesGroupByArgs = { where?: Prisma.notesWhereInput orderBy?: Prisma.notesOrderByWithAggregationInput | Prisma.notesOrderByWithAggregationInput[] by: Prisma.NotesScalarFieldEnum[] | Prisma.NotesScalarFieldEnum having?: Prisma.notesScalarWhereWithAggregatesInput take?: number skip?: number _count?: NotesCountAggregateInputType | true _avg?: NotesAvgAggregateInputType _sum?: NotesSumAggregateInputType _min?: NotesMinAggregateInputType _max?: NotesMaxAggregateInputType } export type NotesGroupByOutputType = { id: number account_id: number notes: string _count: NotesCountAggregateOutputType | null _avg: NotesAvgAggregateOutputType | null _sum: NotesSumAggregateOutputType | null _min: NotesMinAggregateOutputType | null _max: NotesMaxAggregateOutputType | null } type GetNotesGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof NotesGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type notesWhereInput = { AND?: Prisma.notesWhereInput | Prisma.notesWhereInput[] OR?: Prisma.notesWhereInput[] NOT?: Prisma.notesWhereInput | Prisma.notesWhereInput[] id?: Prisma.IntFilter<"notes"> | number account_id?: Prisma.IntFilter<"notes"> | number notes?: Prisma.StringFilter<"notes"> | string } export type notesOrderByWithRelationInput = { id?: Prisma.SortOrder account_id?: Prisma.SortOrder notes?: Prisma.SortOrder _relevance?: Prisma.notesOrderByRelevanceInput } export type notesWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.notesWhereInput | Prisma.notesWhereInput[] OR?: Prisma.notesWhereInput[] NOT?: Prisma.notesWhereInput | Prisma.notesWhereInput[] account_id?: Prisma.IntFilter<"notes"> | number notes?: Prisma.StringFilter<"notes"> | string }, "id"> export type notesOrderByWithAggregationInput = { id?: Prisma.SortOrder account_id?: Prisma.SortOrder notes?: Prisma.SortOrder _count?: Prisma.notesCountOrderByAggregateInput _avg?: Prisma.notesAvgOrderByAggregateInput _max?: Prisma.notesMaxOrderByAggregateInput _min?: Prisma.notesMinOrderByAggregateInput _sum?: Prisma.notesSumOrderByAggregateInput } export type notesScalarWhereWithAggregatesInput = { AND?: Prisma.notesScalarWhereWithAggregatesInput | Prisma.notesScalarWhereWithAggregatesInput[] OR?: Prisma.notesScalarWhereWithAggregatesInput[] NOT?: Prisma.notesScalarWhereWithAggregatesInput | Prisma.notesScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"notes"> | number account_id?: Prisma.IntWithAggregatesFilter<"notes"> | number notes?: Prisma.StringWithAggregatesFilter<"notes"> | string } export type notesCreateInput = { account_id: number notes: string } export type notesUncheckedCreateInput = { id?: number account_id: number notes: string } export type notesUpdateInput = { account_id?: Prisma.IntFieldUpdateOperationsInput | number notes?: Prisma.StringFieldUpdateOperationsInput | string } export type notesUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number account_id?: Prisma.IntFieldUpdateOperationsInput | number notes?: Prisma.StringFieldUpdateOperationsInput | string } export type notesCreateManyInput = { id?: number account_id: number notes: string } export type notesUpdateManyMutationInput = { account_id?: Prisma.IntFieldUpdateOperationsInput | number notes?: Prisma.StringFieldUpdateOperationsInput | string } export type notesUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number account_id?: Prisma.IntFieldUpdateOperationsInput | number notes?: Prisma.StringFieldUpdateOperationsInput | string } export type notesOrderByRelevanceInput = { fields: Prisma.notesOrderByRelevanceFieldEnum | Prisma.notesOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type notesCountOrderByAggregateInput = { id?: Prisma.SortOrder account_id?: Prisma.SortOrder notes?: Prisma.SortOrder } export type notesAvgOrderByAggregateInput = { id?: Prisma.SortOrder account_id?: Prisma.SortOrder } export type notesMaxOrderByAggregateInput = { id?: Prisma.SortOrder account_id?: Prisma.SortOrder notes?: Prisma.SortOrder } export type notesMinOrderByAggregateInput = { id?: Prisma.SortOrder account_id?: Prisma.SortOrder notes?: Prisma.SortOrder } export type notesSumOrderByAggregateInput = { id?: Prisma.SortOrder account_id?: Prisma.SortOrder } export type notesSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean account_id?: boolean notes?: boolean }, ExtArgs["result"]["notes"]> export type notesSelectScalar = { id?: boolean account_id?: boolean notes?: boolean } export type notesOmit = runtime.Types.Extensions.GetOmit<"id" | "account_id" | "notes", ExtArgs["result"]["notes"]> export type $notesPayload = { name: "notes" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number account_id: number notes: string }, ExtArgs["result"]["notes"]> composites: {} } export type notesGetPayload = runtime.Types.Result.GetResult export type notesCountArgs = Omit & { select?: NotesCountAggregateInputType | true } export interface notesDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['notes'], meta: { name: 'notes' } } /** * Find zero or one Notes that matches the filter. * @param {notesFindUniqueArgs} args - Arguments to find a Notes * @example * // Get one Notes * const notes = await prisma.notes.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__notesClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Notes that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {notesFindUniqueOrThrowArgs} args - Arguments to find a Notes * @example * // Get one Notes * const notes = await prisma.notes.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__notesClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Notes 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 {notesFindFirstArgs} args - Arguments to find a Notes * @example * // Get one Notes * const notes = await prisma.notes.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__notesClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Notes 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 {notesFindFirstOrThrowArgs} args - Arguments to find a Notes * @example * // Get one Notes * const notes = await prisma.notes.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__notesClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Notes 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 {notesFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Notes * const notes = await prisma.notes.findMany() * * // Get first 10 Notes * const notes = await prisma.notes.findMany({ take: 10 }) * * // Only select the `id` * const notesWithIdOnly = await prisma.notes.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Notes. * @param {notesCreateArgs} args - Arguments to create a Notes. * @example * // Create one Notes * const Notes = await prisma.notes.create({ * data: { * // ... data to create a Notes * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__notesClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Notes. * @param {notesCreateManyArgs} args - Arguments to create many Notes. * @example * // Create many Notes * const notes = await prisma.notes.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Notes. * @param {notesDeleteArgs} args - Arguments to delete one Notes. * @example * // Delete one Notes * const Notes = await prisma.notes.delete({ * where: { * // ... filter to delete one Notes * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__notesClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Notes. * @param {notesUpdateArgs} args - Arguments to update one Notes. * @example * // Update one Notes * const notes = await prisma.notes.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__notesClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Notes. * @param {notesDeleteManyArgs} args - Arguments to filter Notes to delete. * @example * // Delete a few Notes * const { count } = await prisma.notes.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Notes. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {notesUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Notes * const notes = await prisma.notes.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Notes. * @param {notesUpsertArgs} args - Arguments to update or create a Notes. * @example * // Update or create a Notes * const notes = await prisma.notes.upsert({ * create: { * // ... data to create a Notes * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Notes we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__notesClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Notes. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {notesCountArgs} args - Arguments to filter Notes to count. * @example * // Count the number of Notes * const count = await prisma.notes.count({ * where: { * // ... the filter for the Notes 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 Notes. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {NotesAggregateArgs} 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 Notes. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {notesGroupByArgs} 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 notesGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: notesGroupByArgs['orderBy'] } : { orderBy?: notesGroupByArgs['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 ? GetNotesGroupByPayload : Prisma.PrismaPromise /** * Fields of the notes model */ readonly fields: notesFieldRefs; } /** * The delegate class that acts as a "Promise-like" for notes. * 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__notesClient 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 notes model */ export interface notesFieldRefs { readonly id: Prisma.FieldRef<"notes", 'Int'> readonly account_id: Prisma.FieldRef<"notes", 'Int'> readonly notes: Prisma.FieldRef<"notes", 'String'> } // Custom InputTypes /** * notes findUnique */ export type notesFindUniqueArgs = { /** * Select specific fields to fetch from the notes */ select?: Prisma.notesSelect | null /** * Omit specific fields from the notes */ omit?: Prisma.notesOmit | null /** * Filter, which notes to fetch. */ where: Prisma.notesWhereUniqueInput } /** * notes findUniqueOrThrow */ export type notesFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the notes */ select?: Prisma.notesSelect | null /** * Omit specific fields from the notes */ omit?: Prisma.notesOmit | null /** * Filter, which notes to fetch. */ where: Prisma.notesWhereUniqueInput } /** * notes findFirst */ export type notesFindFirstArgs = { /** * Select specific fields to fetch from the notes */ select?: Prisma.notesSelect | null /** * Omit specific fields from the notes */ omit?: Prisma.notesOmit | null /** * Filter, which notes to fetch. */ where?: Prisma.notesWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of notes to fetch. */ orderBy?: Prisma.notesOrderByWithRelationInput | Prisma.notesOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for notes. */ cursor?: Prisma.notesWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` notes 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` notes. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of notes. */ distinct?: Prisma.NotesScalarFieldEnum | Prisma.NotesScalarFieldEnum[] } /** * notes findFirstOrThrow */ export type notesFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the notes */ select?: Prisma.notesSelect | null /** * Omit specific fields from the notes */ omit?: Prisma.notesOmit | null /** * Filter, which notes to fetch. */ where?: Prisma.notesWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of notes to fetch. */ orderBy?: Prisma.notesOrderByWithRelationInput | Prisma.notesOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for notes. */ cursor?: Prisma.notesWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` notes 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` notes. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of notes. */ distinct?: Prisma.NotesScalarFieldEnum | Prisma.NotesScalarFieldEnum[] } /** * notes findMany */ export type notesFindManyArgs = { /** * Select specific fields to fetch from the notes */ select?: Prisma.notesSelect | null /** * Omit specific fields from the notes */ omit?: Prisma.notesOmit | null /** * Filter, which notes to fetch. */ where?: Prisma.notesWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of notes to fetch. */ orderBy?: Prisma.notesOrderByWithRelationInput | Prisma.notesOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing notes. */ cursor?: Prisma.notesWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` notes 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` notes. */ skip?: number distinct?: Prisma.NotesScalarFieldEnum | Prisma.NotesScalarFieldEnum[] } /** * notes create */ export type notesCreateArgs = { /** * Select specific fields to fetch from the notes */ select?: Prisma.notesSelect | null /** * Omit specific fields from the notes */ omit?: Prisma.notesOmit | null /** * The data needed to create a notes. */ data: Prisma.XOR } /** * notes createMany */ export type notesCreateManyArgs = { /** * The data used to create many notes. */ data: Prisma.notesCreateManyInput | Prisma.notesCreateManyInput[] skipDuplicates?: boolean } /** * notes update */ export type notesUpdateArgs = { /** * Select specific fields to fetch from the notes */ select?: Prisma.notesSelect | null /** * Omit specific fields from the notes */ omit?: Prisma.notesOmit | null /** * The data needed to update a notes. */ data: Prisma.XOR /** * Choose, which notes to update. */ where: Prisma.notesWhereUniqueInput } /** * notes updateMany */ export type notesUpdateManyArgs = { /** * The data used to update notes. */ data: Prisma.XOR /** * Filter which notes to update */ where?: Prisma.notesWhereInput /** * Limit how many notes to update. */ limit?: number } /** * notes upsert */ export type notesUpsertArgs = { /** * Select specific fields to fetch from the notes */ select?: Prisma.notesSelect | null /** * Omit specific fields from the notes */ omit?: Prisma.notesOmit | null /** * The filter to search for the notes to update in case it exists. */ where: Prisma.notesWhereUniqueInput /** * In case the notes found by the `where` argument doesn't exist, create a new notes with this data. */ create: Prisma.XOR /** * In case the notes was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * notes delete */ export type notesDeleteArgs = { /** * Select specific fields to fetch from the notes */ select?: Prisma.notesSelect | null /** * Omit specific fields from the notes */ omit?: Prisma.notesOmit | null /** * Filter which notes to delete. */ where: Prisma.notesWhereUniqueInput } /** * notes deleteMany */ export type notesDeleteManyArgs = { /** * Filter which notes to delete */ where?: Prisma.notesWhereInput /** * Limit how many notes to delete. */ limit?: number } /** * notes without action */ export type notesDefaultArgs = { /** * Select specific fields to fetch from the notes */ select?: Prisma.notesSelect | null /** * Omit specific fields from the notes */ omit?: Prisma.notesOmit | null }