/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `TriggerLog` 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.js" import type * as Prisma from "../internal/prismaNamespace.js" /** * Model TriggerLog * */ export type TriggerLogModel = runtime.Types.Result.DefaultSelection export type AggregateTriggerLog = { _count: TriggerLogCountAggregateOutputType | null _avg: TriggerLogAvgAggregateOutputType | null _sum: TriggerLogSumAggregateOutputType | null _min: TriggerLogMinAggregateOutputType | null _max: TriggerLogMaxAggregateOutputType | null } export type TriggerLogAvgAggregateOutputType = { id: number | null } export type TriggerLogSumAggregateOutputType = { id: number | null } export type TriggerLogMinAggregateOutputType = { id: number | null message: string | null createdAt: Date | null name: string | null } export type TriggerLogMaxAggregateOutputType = { id: number | null message: string | null createdAt: Date | null name: string | null } export type TriggerLogCountAggregateOutputType = { id: number message: number createdAt: number name: number _all: number } export type TriggerLogAvgAggregateInputType = { id?: true } export type TriggerLogSumAggregateInputType = { id?: true } export type TriggerLogMinAggregateInputType = { id?: true message?: true createdAt?: true name?: true } export type TriggerLogMaxAggregateInputType = { id?: true message?: true createdAt?: true name?: true } export type TriggerLogCountAggregateInputType = { id?: true message?: true createdAt?: true name?: true _all?: true } export type TriggerLogAggregateArgs = { /** * Filter which TriggerLog to aggregate. */ where?: Prisma.TriggerLogWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of TriggerLogs to fetch. */ orderBy?: Prisma.TriggerLogOrderByWithRelationInput | Prisma.TriggerLogOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.TriggerLogWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` TriggerLogs 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` TriggerLogs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned TriggerLogs **/ _count?: true | TriggerLogCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: TriggerLogAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: TriggerLogSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: TriggerLogMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: TriggerLogMaxAggregateInputType } export type GetTriggerLogAggregateType = { [P in keyof T & keyof AggregateTriggerLog]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type TriggerLogGroupByArgs = { where?: Prisma.TriggerLogWhereInput orderBy?: Prisma.TriggerLogOrderByWithAggregationInput | Prisma.TriggerLogOrderByWithAggregationInput[] by: Prisma.TriggerLogScalarFieldEnum[] | Prisma.TriggerLogScalarFieldEnum having?: Prisma.TriggerLogScalarWhereWithAggregatesInput take?: number skip?: number _count?: TriggerLogCountAggregateInputType | true _avg?: TriggerLogAvgAggregateInputType _sum?: TriggerLogSumAggregateInputType _min?: TriggerLogMinAggregateInputType _max?: TriggerLogMaxAggregateInputType } export type TriggerLogGroupByOutputType = { id: number message: string createdAt: Date name: string _count: TriggerLogCountAggregateOutputType | null _avg: TriggerLogAvgAggregateOutputType | null _sum: TriggerLogSumAggregateOutputType | null _min: TriggerLogMinAggregateOutputType | null _max: TriggerLogMaxAggregateOutputType | null } export type GetTriggerLogGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof TriggerLogGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type TriggerLogWhereInput = { AND?: Prisma.TriggerLogWhereInput | Prisma.TriggerLogWhereInput[] OR?: Prisma.TriggerLogWhereInput[] NOT?: Prisma.TriggerLogWhereInput | Prisma.TriggerLogWhereInput[] id?: Prisma.IntFilter<"TriggerLog"> | number message?: Prisma.StringFilter<"TriggerLog"> | string createdAt?: Prisma.DateTimeFilter<"TriggerLog"> | Date | string name?: Prisma.StringFilter<"TriggerLog"> | string } export type TriggerLogOrderByWithRelationInput = { id?: Prisma.SortOrder message?: Prisma.SortOrder createdAt?: Prisma.SortOrder name?: Prisma.SortOrder _relevance?: Prisma.TriggerLogOrderByRelevanceInput } export type TriggerLogWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.TriggerLogWhereInput | Prisma.TriggerLogWhereInput[] OR?: Prisma.TriggerLogWhereInput[] NOT?: Prisma.TriggerLogWhereInput | Prisma.TriggerLogWhereInput[] message?: Prisma.StringFilter<"TriggerLog"> | string createdAt?: Prisma.DateTimeFilter<"TriggerLog"> | Date | string name?: Prisma.StringFilter<"TriggerLog"> | string }, "id"> export type TriggerLogOrderByWithAggregationInput = { id?: Prisma.SortOrder message?: Prisma.SortOrder createdAt?: Prisma.SortOrder name?: Prisma.SortOrder _count?: Prisma.TriggerLogCountOrderByAggregateInput _avg?: Prisma.TriggerLogAvgOrderByAggregateInput _max?: Prisma.TriggerLogMaxOrderByAggregateInput _min?: Prisma.TriggerLogMinOrderByAggregateInput _sum?: Prisma.TriggerLogSumOrderByAggregateInput } export type TriggerLogScalarWhereWithAggregatesInput = { AND?: Prisma.TriggerLogScalarWhereWithAggregatesInput | Prisma.TriggerLogScalarWhereWithAggregatesInput[] OR?: Prisma.TriggerLogScalarWhereWithAggregatesInput[] NOT?: Prisma.TriggerLogScalarWhereWithAggregatesInput | Prisma.TriggerLogScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"TriggerLog"> | number message?: Prisma.StringWithAggregatesFilter<"TriggerLog"> | string createdAt?: Prisma.DateTimeWithAggregatesFilter<"TriggerLog"> | Date | string name?: Prisma.StringWithAggregatesFilter<"TriggerLog"> | string } export type TriggerLogCreateInput = { message: string createdAt?: Date | string name: string } export type TriggerLogUncheckedCreateInput = { id?: number message: string createdAt?: Date | string name: string } export type TriggerLogUpdateInput = { message?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string name?: Prisma.StringFieldUpdateOperationsInput | string } export type TriggerLogUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number message?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string name?: Prisma.StringFieldUpdateOperationsInput | string } export type TriggerLogCreateManyInput = { id?: number message: string createdAt?: Date | string name: string } export type TriggerLogUpdateManyMutationInput = { message?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string name?: Prisma.StringFieldUpdateOperationsInput | string } export type TriggerLogUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number message?: Prisma.StringFieldUpdateOperationsInput | string createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string name?: Prisma.StringFieldUpdateOperationsInput | string } export type TriggerLogOrderByRelevanceInput = { fields: Prisma.TriggerLogOrderByRelevanceFieldEnum | Prisma.TriggerLogOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type TriggerLogCountOrderByAggregateInput = { id?: Prisma.SortOrder message?: Prisma.SortOrder createdAt?: Prisma.SortOrder name?: Prisma.SortOrder } export type TriggerLogAvgOrderByAggregateInput = { id?: Prisma.SortOrder } export type TriggerLogMaxOrderByAggregateInput = { id?: Prisma.SortOrder message?: Prisma.SortOrder createdAt?: Prisma.SortOrder name?: Prisma.SortOrder } export type TriggerLogMinOrderByAggregateInput = { id?: Prisma.SortOrder message?: Prisma.SortOrder createdAt?: Prisma.SortOrder name?: Prisma.SortOrder } export type TriggerLogSumOrderByAggregateInput = { id?: Prisma.SortOrder } export type IntFieldUpdateOperationsInput = { set?: number increment?: number decrement?: number multiply?: number divide?: number } export type TriggerLogSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean message?: boolean createdAt?: boolean name?: boolean }, ExtArgs["result"]["triggerLog"]> export type TriggerLogSelectScalar = { id?: boolean message?: boolean createdAt?: boolean name?: boolean } export type TriggerLogOmit = runtime.Types.Extensions.GetOmit<"id" | "message" | "createdAt" | "name", ExtArgs["result"]["triggerLog"]> export type $TriggerLogPayload = { name: "TriggerLog" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number message: string createdAt: Date name: string }, ExtArgs["result"]["triggerLog"]> composites: {} } export type TriggerLogGetPayload = runtime.Types.Result.GetResult export type TriggerLogCountArgs = Omit & { select?: TriggerLogCountAggregateInputType | true } export interface TriggerLogDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['TriggerLog'], meta: { name: 'TriggerLog' } } /** * Find zero or one TriggerLog that matches the filter. * @param {TriggerLogFindUniqueArgs} args - Arguments to find a TriggerLog * @example * // Get one TriggerLog * const triggerLog = await prisma.triggerLog.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__TriggerLogClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one TriggerLog that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {TriggerLogFindUniqueOrThrowArgs} args - Arguments to find a TriggerLog * @example * // Get one TriggerLog * const triggerLog = await prisma.triggerLog.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__TriggerLogClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first TriggerLog 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 {TriggerLogFindFirstArgs} args - Arguments to find a TriggerLog * @example * // Get one TriggerLog * const triggerLog = await prisma.triggerLog.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__TriggerLogClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first TriggerLog 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 {TriggerLogFindFirstOrThrowArgs} args - Arguments to find a TriggerLog * @example * // Get one TriggerLog * const triggerLog = await prisma.triggerLog.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__TriggerLogClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more TriggerLogs 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 {TriggerLogFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all TriggerLogs * const triggerLogs = await prisma.triggerLog.findMany() * * // Get first 10 TriggerLogs * const triggerLogs = await prisma.triggerLog.findMany({ take: 10 }) * * // Only select the `id` * const triggerLogWithIdOnly = await prisma.triggerLog.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a TriggerLog. * @param {TriggerLogCreateArgs} args - Arguments to create a TriggerLog. * @example * // Create one TriggerLog * const TriggerLog = await prisma.triggerLog.create({ * data: { * // ... data to create a TriggerLog * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__TriggerLogClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many TriggerLogs. * @param {TriggerLogCreateManyArgs} args - Arguments to create many TriggerLogs. * @example * // Create many TriggerLogs * const triggerLog = await prisma.triggerLog.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a TriggerLog. * @param {TriggerLogDeleteArgs} args - Arguments to delete one TriggerLog. * @example * // Delete one TriggerLog * const TriggerLog = await prisma.triggerLog.delete({ * where: { * // ... filter to delete one TriggerLog * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__TriggerLogClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one TriggerLog. * @param {TriggerLogUpdateArgs} args - Arguments to update one TriggerLog. * @example * // Update one TriggerLog * const triggerLog = await prisma.triggerLog.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__TriggerLogClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more TriggerLogs. * @param {TriggerLogDeleteManyArgs} args - Arguments to filter TriggerLogs to delete. * @example * // Delete a few TriggerLogs * const { count } = await prisma.triggerLog.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more TriggerLogs. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {TriggerLogUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many TriggerLogs * const triggerLog = await prisma.triggerLog.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one TriggerLog. * @param {TriggerLogUpsertArgs} args - Arguments to update or create a TriggerLog. * @example * // Update or create a TriggerLog * const triggerLog = await prisma.triggerLog.upsert({ * create: { * // ... data to create a TriggerLog * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the TriggerLog we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__TriggerLogClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of TriggerLogs. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {TriggerLogCountArgs} args - Arguments to filter TriggerLogs to count. * @example * // Count the number of TriggerLogs * const count = await prisma.triggerLog.count({ * where: { * // ... the filter for the TriggerLogs 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 TriggerLog. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {TriggerLogAggregateArgs} 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 TriggerLog. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {TriggerLogGroupByArgs} 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 TriggerLogGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: TriggerLogGroupByArgs['orderBy'] } : { orderBy?: TriggerLogGroupByArgs['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 ? GetTriggerLogGroupByPayload : Prisma.PrismaPromise /** * Fields of the TriggerLog model */ readonly fields: TriggerLogFieldRefs; } /** * The delegate class that acts as a "Promise-like" for TriggerLog. * 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__TriggerLogClient 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 TriggerLog model */ export interface TriggerLogFieldRefs { readonly id: Prisma.FieldRef<"TriggerLog", 'Int'> readonly message: Prisma.FieldRef<"TriggerLog", 'String'> readonly createdAt: Prisma.FieldRef<"TriggerLog", 'DateTime'> readonly name: Prisma.FieldRef<"TriggerLog", 'String'> } // Custom InputTypes /** * TriggerLog findUnique */ export type TriggerLogFindUniqueArgs = { /** * Select specific fields to fetch from the TriggerLog */ select?: Prisma.TriggerLogSelect | null /** * Omit specific fields from the TriggerLog */ omit?: Prisma.TriggerLogOmit | null /** * Filter, which TriggerLog to fetch. */ where: Prisma.TriggerLogWhereUniqueInput } /** * TriggerLog findUniqueOrThrow */ export type TriggerLogFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the TriggerLog */ select?: Prisma.TriggerLogSelect | null /** * Omit specific fields from the TriggerLog */ omit?: Prisma.TriggerLogOmit | null /** * Filter, which TriggerLog to fetch. */ where: Prisma.TriggerLogWhereUniqueInput } /** * TriggerLog findFirst */ export type TriggerLogFindFirstArgs = { /** * Select specific fields to fetch from the TriggerLog */ select?: Prisma.TriggerLogSelect | null /** * Omit specific fields from the TriggerLog */ omit?: Prisma.TriggerLogOmit | null /** * Filter, which TriggerLog to fetch. */ where?: Prisma.TriggerLogWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of TriggerLogs to fetch. */ orderBy?: Prisma.TriggerLogOrderByWithRelationInput | Prisma.TriggerLogOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for TriggerLogs. */ cursor?: Prisma.TriggerLogWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` TriggerLogs 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` TriggerLogs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of TriggerLogs. */ distinct?: Prisma.TriggerLogScalarFieldEnum | Prisma.TriggerLogScalarFieldEnum[] } /** * TriggerLog findFirstOrThrow */ export type TriggerLogFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the TriggerLog */ select?: Prisma.TriggerLogSelect | null /** * Omit specific fields from the TriggerLog */ omit?: Prisma.TriggerLogOmit | null /** * Filter, which TriggerLog to fetch. */ where?: Prisma.TriggerLogWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of TriggerLogs to fetch. */ orderBy?: Prisma.TriggerLogOrderByWithRelationInput | Prisma.TriggerLogOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for TriggerLogs. */ cursor?: Prisma.TriggerLogWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` TriggerLogs 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` TriggerLogs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of TriggerLogs. */ distinct?: Prisma.TriggerLogScalarFieldEnum | Prisma.TriggerLogScalarFieldEnum[] } /** * TriggerLog findMany */ export type TriggerLogFindManyArgs = { /** * Select specific fields to fetch from the TriggerLog */ select?: Prisma.TriggerLogSelect | null /** * Omit specific fields from the TriggerLog */ omit?: Prisma.TriggerLogOmit | null /** * Filter, which TriggerLogs to fetch. */ where?: Prisma.TriggerLogWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of TriggerLogs to fetch. */ orderBy?: Prisma.TriggerLogOrderByWithRelationInput | Prisma.TriggerLogOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing TriggerLogs. */ cursor?: Prisma.TriggerLogWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` TriggerLogs 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` TriggerLogs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of TriggerLogs. */ distinct?: Prisma.TriggerLogScalarFieldEnum | Prisma.TriggerLogScalarFieldEnum[] } /** * TriggerLog create */ export type TriggerLogCreateArgs = { /** * Select specific fields to fetch from the TriggerLog */ select?: Prisma.TriggerLogSelect | null /** * Omit specific fields from the TriggerLog */ omit?: Prisma.TriggerLogOmit | null /** * The data needed to create a TriggerLog. */ data: Prisma.XOR } /** * TriggerLog createMany */ export type TriggerLogCreateManyArgs = { /** * The data used to create many TriggerLogs. */ data: Prisma.TriggerLogCreateManyInput | Prisma.TriggerLogCreateManyInput[] skipDuplicates?: boolean } /** * TriggerLog update */ export type TriggerLogUpdateArgs = { /** * Select specific fields to fetch from the TriggerLog */ select?: Prisma.TriggerLogSelect | null /** * Omit specific fields from the TriggerLog */ omit?: Prisma.TriggerLogOmit | null /** * The data needed to update a TriggerLog. */ data: Prisma.XOR /** * Choose, which TriggerLog to update. */ where: Prisma.TriggerLogWhereUniqueInput } /** * TriggerLog updateMany */ export type TriggerLogUpdateManyArgs = { /** * The data used to update TriggerLogs. */ data: Prisma.XOR /** * Filter which TriggerLogs to update */ where?: Prisma.TriggerLogWhereInput /** * Limit how many TriggerLogs to update. */ limit?: number } /** * TriggerLog upsert */ export type TriggerLogUpsertArgs = { /** * Select specific fields to fetch from the TriggerLog */ select?: Prisma.TriggerLogSelect | null /** * Omit specific fields from the TriggerLog */ omit?: Prisma.TriggerLogOmit | null /** * The filter to search for the TriggerLog to update in case it exists. */ where: Prisma.TriggerLogWhereUniqueInput /** * In case the TriggerLog found by the `where` argument doesn't exist, create a new TriggerLog with this data. */ create: Prisma.XOR /** * In case the TriggerLog was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * TriggerLog delete */ export type TriggerLogDeleteArgs = { /** * Select specific fields to fetch from the TriggerLog */ select?: Prisma.TriggerLogSelect | null /** * Omit specific fields from the TriggerLog */ omit?: Prisma.TriggerLogOmit | null /** * Filter which TriggerLog to delete. */ where: Prisma.TriggerLogWhereUniqueInput } /** * TriggerLog deleteMany */ export type TriggerLogDeleteManyArgs = { /** * Filter which TriggerLogs to delete */ where?: Prisma.TriggerLogWhereInput /** * Limit how many TriggerLogs to delete. */ limit?: number } /** * TriggerLog without action */ export type TriggerLogDefaultArgs = { /** * Select specific fields to fetch from the TriggerLog */ select?: Prisma.TriggerLogSelect | null /** * Omit specific fields from the TriggerLog */ omit?: Prisma.TriggerLogOmit | null }