/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `Indicator` 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.ts" import type * as Prisma from "../internal/prismaNamespace.ts" /** * Model Indicator * */ export type IndicatorModel = runtime.Types.Result.DefaultSelection export type AggregateIndicator = { _count: IndicatorCountAggregateOutputType | null _avg: IndicatorAvgAggregateOutputType | null _sum: IndicatorSumAggregateOutputType | null _min: IndicatorMinAggregateOutputType | null _max: IndicatorMaxAggregateOutputType | null } export type IndicatorAvgAggregateOutputType = { id: number | null } export type IndicatorSumAggregateOutputType = { id: number | null } export type IndicatorMinAggregateOutputType = { id: number | null name: string | null groupName: string | null createdAt: Date | null updatedAt: Date | null } export type IndicatorMaxAggregateOutputType = { id: number | null name: string | null groupName: string | null createdAt: Date | null updatedAt: Date | null } export type IndicatorCountAggregateOutputType = { id: number name: number groupName: number data: number createdAt: number updatedAt: number _all: number } export type IndicatorAvgAggregateInputType = { id?: true } export type IndicatorSumAggregateInputType = { id?: true } export type IndicatorMinAggregateInputType = { id?: true name?: true groupName?: true createdAt?: true updatedAt?: true } export type IndicatorMaxAggregateInputType = { id?: true name?: true groupName?: true createdAt?: true updatedAt?: true } export type IndicatorCountAggregateInputType = { id?: true name?: true groupName?: true data?: true createdAt?: true updatedAt?: true _all?: true } export type IndicatorAggregateArgs = { /** * Filter which Indicator to aggregate. */ where?: Prisma.IndicatorWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Indicators to fetch. */ orderBy?: Prisma.IndicatorOrderByWithRelationInput | Prisma.IndicatorOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.IndicatorWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Indicators 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` Indicators. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned Indicators **/ _count?: true | IndicatorCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: IndicatorAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: IndicatorSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: IndicatorMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: IndicatorMaxAggregateInputType } export type GetIndicatorAggregateType = { [P in keyof T & keyof AggregateIndicator]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type IndicatorGroupByArgs = { where?: Prisma.IndicatorWhereInput orderBy?: Prisma.IndicatorOrderByWithAggregationInput | Prisma.IndicatorOrderByWithAggregationInput[] by: Prisma.IndicatorScalarFieldEnum[] | Prisma.IndicatorScalarFieldEnum having?: Prisma.IndicatorScalarWhereWithAggregatesInput take?: number skip?: number _count?: IndicatorCountAggregateInputType | true _avg?: IndicatorAvgAggregateInputType _sum?: IndicatorSumAggregateInputType _min?: IndicatorMinAggregateInputType _max?: IndicatorMaxAggregateInputType } export type IndicatorGroupByOutputType = { id: number name: string groupName: string data: runtime.JsonValue createdAt: Date updatedAt: Date _count: IndicatorCountAggregateOutputType | null _avg: IndicatorAvgAggregateOutputType | null _sum: IndicatorSumAggregateOutputType | null _min: IndicatorMinAggregateOutputType | null _max: IndicatorMaxAggregateOutputType | null } export type GetIndicatorGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof IndicatorGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type IndicatorWhereInput = { AND?: Prisma.IndicatorWhereInput | Prisma.IndicatorWhereInput[] OR?: Prisma.IndicatorWhereInput[] NOT?: Prisma.IndicatorWhereInput | Prisma.IndicatorWhereInput[] id?: Prisma.IntFilter<"Indicator"> | number name?: Prisma.StringFilter<"Indicator"> | string groupName?: Prisma.StringFilter<"Indicator"> | string data?: Prisma.JsonFilter<"Indicator"> createdAt?: Prisma.DateTimeFilter<"Indicator"> | Date | string updatedAt?: Prisma.DateTimeFilter<"Indicator"> | Date | string } export type IndicatorOrderByWithRelationInput = { id?: Prisma.SortOrder name?: Prisma.SortOrder groupName?: Prisma.SortOrder data?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder _relevance?: Prisma.IndicatorOrderByRelevanceInput } export type IndicatorWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.IndicatorWhereInput | Prisma.IndicatorWhereInput[] OR?: Prisma.IndicatorWhereInput[] NOT?: Prisma.IndicatorWhereInput | Prisma.IndicatorWhereInput[] name?: Prisma.StringFilter<"Indicator"> | string groupName?: Prisma.StringFilter<"Indicator"> | string data?: Prisma.JsonFilter<"Indicator"> createdAt?: Prisma.DateTimeFilter<"Indicator"> | Date | string updatedAt?: Prisma.DateTimeFilter<"Indicator"> | Date | string }, "id"> export type IndicatorOrderByWithAggregationInput = { id?: Prisma.SortOrder name?: Prisma.SortOrder groupName?: Prisma.SortOrder data?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder _count?: Prisma.IndicatorCountOrderByAggregateInput _avg?: Prisma.IndicatorAvgOrderByAggregateInput _max?: Prisma.IndicatorMaxOrderByAggregateInput _min?: Prisma.IndicatorMinOrderByAggregateInput _sum?: Prisma.IndicatorSumOrderByAggregateInput } export type IndicatorScalarWhereWithAggregatesInput = { AND?: Prisma.IndicatorScalarWhereWithAggregatesInput | Prisma.IndicatorScalarWhereWithAggregatesInput[] OR?: Prisma.IndicatorScalarWhereWithAggregatesInput[] NOT?: Prisma.IndicatorScalarWhereWithAggregatesInput | Prisma.IndicatorScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"Indicator"> | number name?: Prisma.StringWithAggregatesFilter<"Indicator"> | string groupName?: Prisma.StringWithAggregatesFilter<"Indicator"> | string data?: Prisma.JsonWithAggregatesFilter<"Indicator"> createdAt?: Prisma.DateTimeWithAggregatesFilter<"Indicator"> | Date | string updatedAt?: Prisma.DateTimeWithAggregatesFilter<"Indicator"> | Date | string } export type IndicatorCreateInput = { name: string groupName: string data: Prisma.JsonNullValueInput | runtime.InputJsonValue createdAt?: Date | string updatedAt?: Date | string } export type IndicatorUncheckedCreateInput = { id?: number name: string groupName: string data: Prisma.JsonNullValueInput | runtime.InputJsonValue createdAt?: Date | string updatedAt?: Date | string } export type IndicatorUpdateInput = { name?: Prisma.StringFieldUpdateOperationsInput | string groupName?: Prisma.StringFieldUpdateOperationsInput | string data?: Prisma.JsonNullValueInput | runtime.InputJsonValue createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type IndicatorUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number name?: Prisma.StringFieldUpdateOperationsInput | string groupName?: Prisma.StringFieldUpdateOperationsInput | string data?: Prisma.JsonNullValueInput | runtime.InputJsonValue createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type IndicatorCreateManyInput = { id?: number name: string groupName: string data: Prisma.JsonNullValueInput | runtime.InputJsonValue createdAt?: Date | string updatedAt?: Date | string } export type IndicatorUpdateManyMutationInput = { name?: Prisma.StringFieldUpdateOperationsInput | string groupName?: Prisma.StringFieldUpdateOperationsInput | string data?: Prisma.JsonNullValueInput | runtime.InputJsonValue createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type IndicatorUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number name?: Prisma.StringFieldUpdateOperationsInput | string groupName?: Prisma.StringFieldUpdateOperationsInput | string data?: Prisma.JsonNullValueInput | runtime.InputJsonValue createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type IndicatorOrderByRelevanceInput = { fields: Prisma.IndicatorOrderByRelevanceFieldEnum | Prisma.IndicatorOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type IndicatorCountOrderByAggregateInput = { id?: Prisma.SortOrder name?: Prisma.SortOrder groupName?: Prisma.SortOrder data?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder } export type IndicatorAvgOrderByAggregateInput = { id?: Prisma.SortOrder } export type IndicatorMaxOrderByAggregateInput = { id?: Prisma.SortOrder name?: Prisma.SortOrder groupName?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder } export type IndicatorMinOrderByAggregateInput = { id?: Prisma.SortOrder name?: Prisma.SortOrder groupName?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder } export type IndicatorSumOrderByAggregateInput = { id?: Prisma.SortOrder } export type IndicatorSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean name?: boolean groupName?: boolean data?: boolean createdAt?: boolean updatedAt?: boolean }, ExtArgs["result"]["indicator"]> export type IndicatorSelectScalar = { id?: boolean name?: boolean groupName?: boolean data?: boolean createdAt?: boolean updatedAt?: boolean } export type IndicatorOmit = runtime.Types.Extensions.GetOmit<"id" | "name" | "groupName" | "data" | "createdAt" | "updatedAt", ExtArgs["result"]["indicator"]> export type $IndicatorPayload = { name: "Indicator" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number name: string groupName: string data: runtime.JsonValue createdAt: Date updatedAt: Date }, ExtArgs["result"]["indicator"]> composites: {} } export type IndicatorGetPayload = runtime.Types.Result.GetResult export type IndicatorCountArgs = Omit & { select?: IndicatorCountAggregateInputType | true } export interface IndicatorDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['Indicator'], meta: { name: 'Indicator' } } /** * Find zero or one Indicator that matches the filter. * @param {IndicatorFindUniqueArgs} args - Arguments to find a Indicator * @example * // Get one Indicator * const indicator = await prisma.indicator.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__IndicatorClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Indicator that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {IndicatorFindUniqueOrThrowArgs} args - Arguments to find a Indicator * @example * // Get one Indicator * const indicator = await prisma.indicator.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__IndicatorClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Indicator 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 {IndicatorFindFirstArgs} args - Arguments to find a Indicator * @example * // Get one Indicator * const indicator = await prisma.indicator.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__IndicatorClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Indicator 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 {IndicatorFindFirstOrThrowArgs} args - Arguments to find a Indicator * @example * // Get one Indicator * const indicator = await prisma.indicator.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__IndicatorClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Indicators 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 {IndicatorFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Indicators * const indicators = await prisma.indicator.findMany() * * // Get first 10 Indicators * const indicators = await prisma.indicator.findMany({ take: 10 }) * * // Only select the `id` * const indicatorWithIdOnly = await prisma.indicator.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Indicator. * @param {IndicatorCreateArgs} args - Arguments to create a Indicator. * @example * // Create one Indicator * const Indicator = await prisma.indicator.create({ * data: { * // ... data to create a Indicator * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__IndicatorClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Indicators. * @param {IndicatorCreateManyArgs} args - Arguments to create many Indicators. * @example * // Create many Indicators * const indicator = await prisma.indicator.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Indicator. * @param {IndicatorDeleteArgs} args - Arguments to delete one Indicator. * @example * // Delete one Indicator * const Indicator = await prisma.indicator.delete({ * where: { * // ... filter to delete one Indicator * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__IndicatorClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Indicator. * @param {IndicatorUpdateArgs} args - Arguments to update one Indicator. * @example * // Update one Indicator * const indicator = await prisma.indicator.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__IndicatorClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Indicators. * @param {IndicatorDeleteManyArgs} args - Arguments to filter Indicators to delete. * @example * // Delete a few Indicators * const { count } = await prisma.indicator.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Indicators. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {IndicatorUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Indicators * const indicator = await prisma.indicator.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Indicator. * @param {IndicatorUpsertArgs} args - Arguments to update or create a Indicator. * @example * // Update or create a Indicator * const indicator = await prisma.indicator.upsert({ * create: { * // ... data to create a Indicator * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Indicator we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__IndicatorClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Indicators. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {IndicatorCountArgs} args - Arguments to filter Indicators to count. * @example * // Count the number of Indicators * const count = await prisma.indicator.count({ * where: { * // ... the filter for the Indicators 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 Indicator. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {IndicatorAggregateArgs} 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 Indicator. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {IndicatorGroupByArgs} 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 IndicatorGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: IndicatorGroupByArgs['orderBy'] } : { orderBy?: IndicatorGroupByArgs['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 ? GetIndicatorGroupByPayload : Prisma.PrismaPromise /** * Fields of the Indicator model */ readonly fields: IndicatorFieldRefs; } /** * The delegate class that acts as a "Promise-like" for Indicator. * 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__IndicatorClient 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 Indicator model */ export interface IndicatorFieldRefs { readonly id: Prisma.FieldRef<"Indicator", 'Int'> readonly name: Prisma.FieldRef<"Indicator", 'String'> readonly groupName: Prisma.FieldRef<"Indicator", 'String'> readonly data: Prisma.FieldRef<"Indicator", 'Json'> readonly createdAt: Prisma.FieldRef<"Indicator", 'DateTime'> readonly updatedAt: Prisma.FieldRef<"Indicator", 'DateTime'> } // Custom InputTypes /** * Indicator findUnique */ export type IndicatorFindUniqueArgs = { /** * Select specific fields to fetch from the Indicator */ select?: Prisma.IndicatorSelect | null /** * Omit specific fields from the Indicator */ omit?: Prisma.IndicatorOmit | null /** * Filter, which Indicator to fetch. */ where: Prisma.IndicatorWhereUniqueInput } /** * Indicator findUniqueOrThrow */ export type IndicatorFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the Indicator */ select?: Prisma.IndicatorSelect | null /** * Omit specific fields from the Indicator */ omit?: Prisma.IndicatorOmit | null /** * Filter, which Indicator to fetch. */ where: Prisma.IndicatorWhereUniqueInput } /** * Indicator findFirst */ export type IndicatorFindFirstArgs = { /** * Select specific fields to fetch from the Indicator */ select?: Prisma.IndicatorSelect | null /** * Omit specific fields from the Indicator */ omit?: Prisma.IndicatorOmit | null /** * Filter, which Indicator to fetch. */ where?: Prisma.IndicatorWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Indicators to fetch. */ orderBy?: Prisma.IndicatorOrderByWithRelationInput | Prisma.IndicatorOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for Indicators. */ cursor?: Prisma.IndicatorWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Indicators 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` Indicators. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of Indicators. */ distinct?: Prisma.IndicatorScalarFieldEnum | Prisma.IndicatorScalarFieldEnum[] } /** * Indicator findFirstOrThrow */ export type IndicatorFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the Indicator */ select?: Prisma.IndicatorSelect | null /** * Omit specific fields from the Indicator */ omit?: Prisma.IndicatorOmit | null /** * Filter, which Indicator to fetch. */ where?: Prisma.IndicatorWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Indicators to fetch. */ orderBy?: Prisma.IndicatorOrderByWithRelationInput | Prisma.IndicatorOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for Indicators. */ cursor?: Prisma.IndicatorWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Indicators 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` Indicators. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of Indicators. */ distinct?: Prisma.IndicatorScalarFieldEnum | Prisma.IndicatorScalarFieldEnum[] } /** * Indicator findMany */ export type IndicatorFindManyArgs = { /** * Select specific fields to fetch from the Indicator */ select?: Prisma.IndicatorSelect | null /** * Omit specific fields from the Indicator */ omit?: Prisma.IndicatorOmit | null /** * Filter, which Indicators to fetch. */ where?: Prisma.IndicatorWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Indicators to fetch. */ orderBy?: Prisma.IndicatorOrderByWithRelationInput | Prisma.IndicatorOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing Indicators. */ cursor?: Prisma.IndicatorWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Indicators 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` Indicators. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of Indicators. */ distinct?: Prisma.IndicatorScalarFieldEnum | Prisma.IndicatorScalarFieldEnum[] } /** * Indicator create */ export type IndicatorCreateArgs = { /** * Select specific fields to fetch from the Indicator */ select?: Prisma.IndicatorSelect | null /** * Omit specific fields from the Indicator */ omit?: Prisma.IndicatorOmit | null /** * The data needed to create a Indicator. */ data: Prisma.XOR } /** * Indicator createMany */ export type IndicatorCreateManyArgs = { /** * The data used to create many Indicators. */ data: Prisma.IndicatorCreateManyInput | Prisma.IndicatorCreateManyInput[] skipDuplicates?: boolean } /** * Indicator update */ export type IndicatorUpdateArgs = { /** * Select specific fields to fetch from the Indicator */ select?: Prisma.IndicatorSelect | null /** * Omit specific fields from the Indicator */ omit?: Prisma.IndicatorOmit | null /** * The data needed to update a Indicator. */ data: Prisma.XOR /** * Choose, which Indicator to update. */ where: Prisma.IndicatorWhereUniqueInput } /** * Indicator updateMany */ export type IndicatorUpdateManyArgs = { /** * The data used to update Indicators. */ data: Prisma.XOR /** * Filter which Indicators to update */ where?: Prisma.IndicatorWhereInput /** * Limit how many Indicators to update. */ limit?: number } /** * Indicator upsert */ export type IndicatorUpsertArgs = { /** * Select specific fields to fetch from the Indicator */ select?: Prisma.IndicatorSelect | null /** * Omit specific fields from the Indicator */ omit?: Prisma.IndicatorOmit | null /** * The filter to search for the Indicator to update in case it exists. */ where: Prisma.IndicatorWhereUniqueInput /** * In case the Indicator found by the `where` argument doesn't exist, create a new Indicator with this data. */ create: Prisma.XOR /** * In case the Indicator was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * Indicator delete */ export type IndicatorDeleteArgs = { /** * Select specific fields to fetch from the Indicator */ select?: Prisma.IndicatorSelect | null /** * Omit specific fields from the Indicator */ omit?: Prisma.IndicatorOmit | null /** * Filter which Indicator to delete. */ where: Prisma.IndicatorWhereUniqueInput } /** * Indicator deleteMany */ export type IndicatorDeleteManyArgs = { /** * Filter which Indicators to delete */ where?: Prisma.IndicatorWhereInput /** * Limit how many Indicators to delete. */ limit?: number } /** * Indicator without action */ export type IndicatorDefaultArgs = { /** * Select specific fields to fetch from the Indicator */ select?: Prisma.IndicatorSelect | null /** * Omit specific fields from the Indicator */ omit?: Prisma.IndicatorOmit | null }