/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `stbs` 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 stbs * */ export type stbsModel = runtime.Types.Result.DefaultSelection export type AggregateStbs = { _count: StbsCountAggregateOutputType | null _avg: StbsAvgAggregateOutputType | null _sum: StbsSumAggregateOutputType | null _min: StbsMinAggregateOutputType | null _max: StbsMaxAggregateOutputType | null } export type StbsAvgAggregateOutputType = { id: number | null } export type StbsSumAggregateOutputType = { id: number | null } export type StbsMinAggregateOutputType = { id: number | null mac: string | null sn: string | null targo: string | null } export type StbsMaxAggregateOutputType = { id: number | null mac: string | null sn: string | null targo: string | null } export type StbsCountAggregateOutputType = { id: number mac: number sn: number targo: number _all: number } export type StbsAvgAggregateInputType = { id?: true } export type StbsSumAggregateInputType = { id?: true } export type StbsMinAggregateInputType = { id?: true mac?: true sn?: true targo?: true } export type StbsMaxAggregateInputType = { id?: true mac?: true sn?: true targo?: true } export type StbsCountAggregateInputType = { id?: true mac?: true sn?: true targo?: true _all?: true } export type StbsAggregateArgs = { /** * Filter which stbs to aggregate. */ where?: Prisma.stbsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of stbs to fetch. */ orderBy?: Prisma.stbsOrderByWithRelationInput | Prisma.stbsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.stbsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` stbs 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` stbs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned stbs **/ _count?: true | StbsCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: StbsAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: StbsSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: StbsMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: StbsMaxAggregateInputType } export type GetStbsAggregateType = { [P in keyof T & keyof AggregateStbs]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type stbsGroupByArgs = { where?: Prisma.stbsWhereInput orderBy?: Prisma.stbsOrderByWithAggregationInput | Prisma.stbsOrderByWithAggregationInput[] by: Prisma.StbsScalarFieldEnum[] | Prisma.StbsScalarFieldEnum having?: Prisma.stbsScalarWhereWithAggregatesInput take?: number skip?: number _count?: StbsCountAggregateInputType | true _avg?: StbsAvgAggregateInputType _sum?: StbsSumAggregateInputType _min?: StbsMinAggregateInputType _max?: StbsMaxAggregateInputType } export type StbsGroupByOutputType = { id: number mac: string sn: string targo: string | null _count: StbsCountAggregateOutputType | null _avg: StbsAvgAggregateOutputType | null _sum: StbsSumAggregateOutputType | null _min: StbsMinAggregateOutputType | null _max: StbsMaxAggregateOutputType | null } type GetStbsGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof StbsGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type stbsWhereInput = { AND?: Prisma.stbsWhereInput | Prisma.stbsWhereInput[] OR?: Prisma.stbsWhereInput[] NOT?: Prisma.stbsWhereInput | Prisma.stbsWhereInput[] id?: Prisma.IntFilter<"stbs"> | number mac?: Prisma.StringFilter<"stbs"> | string sn?: Prisma.StringFilter<"stbs"> | string targo?: Prisma.StringNullableFilter<"stbs"> | string | null } export type stbsOrderByWithRelationInput = { id?: Prisma.SortOrder mac?: Prisma.SortOrder sn?: Prisma.SortOrder targo?: Prisma.SortOrderInput | Prisma.SortOrder _relevance?: Prisma.stbsOrderByRelevanceInput } export type stbsWhereUniqueInput = Prisma.AtLeast<{ id?: number mac?: string AND?: Prisma.stbsWhereInput | Prisma.stbsWhereInput[] OR?: Prisma.stbsWhereInput[] NOT?: Prisma.stbsWhereInput | Prisma.stbsWhereInput[] sn?: Prisma.StringFilter<"stbs"> | string targo?: Prisma.StringNullableFilter<"stbs"> | string | null }, "id" | "mac"> export type stbsOrderByWithAggregationInput = { id?: Prisma.SortOrder mac?: Prisma.SortOrder sn?: Prisma.SortOrder targo?: Prisma.SortOrderInput | Prisma.SortOrder _count?: Prisma.stbsCountOrderByAggregateInput _avg?: Prisma.stbsAvgOrderByAggregateInput _max?: Prisma.stbsMaxOrderByAggregateInput _min?: Prisma.stbsMinOrderByAggregateInput _sum?: Prisma.stbsSumOrderByAggregateInput } export type stbsScalarWhereWithAggregatesInput = { AND?: Prisma.stbsScalarWhereWithAggregatesInput | Prisma.stbsScalarWhereWithAggregatesInput[] OR?: Prisma.stbsScalarWhereWithAggregatesInput[] NOT?: Prisma.stbsScalarWhereWithAggregatesInput | Prisma.stbsScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"stbs"> | number mac?: Prisma.StringWithAggregatesFilter<"stbs"> | string sn?: Prisma.StringWithAggregatesFilter<"stbs"> | string targo?: Prisma.StringNullableWithAggregatesFilter<"stbs"> | string | null } export type stbsCreateInput = { mac: string sn: string targo?: string | null } export type stbsUncheckedCreateInput = { id?: number mac: string sn: string targo?: string | null } export type stbsUpdateInput = { mac?: Prisma.StringFieldUpdateOperationsInput | string sn?: Prisma.StringFieldUpdateOperationsInput | string targo?: Prisma.NullableStringFieldUpdateOperationsInput | string | null } export type stbsUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number mac?: Prisma.StringFieldUpdateOperationsInput | string sn?: Prisma.StringFieldUpdateOperationsInput | string targo?: Prisma.NullableStringFieldUpdateOperationsInput | string | null } export type stbsCreateManyInput = { id?: number mac: string sn: string targo?: string | null } export type stbsUpdateManyMutationInput = { mac?: Prisma.StringFieldUpdateOperationsInput | string sn?: Prisma.StringFieldUpdateOperationsInput | string targo?: Prisma.NullableStringFieldUpdateOperationsInput | string | null } export type stbsUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number mac?: Prisma.StringFieldUpdateOperationsInput | string sn?: Prisma.StringFieldUpdateOperationsInput | string targo?: Prisma.NullableStringFieldUpdateOperationsInput | string | null } export type stbsOrderByRelevanceInput = { fields: Prisma.stbsOrderByRelevanceFieldEnum | Prisma.stbsOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type stbsCountOrderByAggregateInput = { id?: Prisma.SortOrder mac?: Prisma.SortOrder sn?: Prisma.SortOrder targo?: Prisma.SortOrder } export type stbsAvgOrderByAggregateInput = { id?: Prisma.SortOrder } export type stbsMaxOrderByAggregateInput = { id?: Prisma.SortOrder mac?: Prisma.SortOrder sn?: Prisma.SortOrder targo?: Prisma.SortOrder } export type stbsMinOrderByAggregateInput = { id?: Prisma.SortOrder mac?: Prisma.SortOrder sn?: Prisma.SortOrder targo?: Prisma.SortOrder } export type stbsSumOrderByAggregateInput = { id?: Prisma.SortOrder } export type stbsSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean mac?: boolean sn?: boolean targo?: boolean }, ExtArgs["result"]["stbs"]> export type stbsSelectScalar = { id?: boolean mac?: boolean sn?: boolean targo?: boolean } export type stbsOmit = runtime.Types.Extensions.GetOmit<"id" | "mac" | "sn" | "targo", ExtArgs["result"]["stbs"]> export type $stbsPayload = { name: "stbs" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number mac: string sn: string targo: string | null }, ExtArgs["result"]["stbs"]> composites: {} } export type stbsGetPayload = runtime.Types.Result.GetResult export type stbsCountArgs = Omit & { select?: StbsCountAggregateInputType | true } export interface stbsDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['stbs'], meta: { name: 'stbs' } } /** * Find zero or one Stbs that matches the filter. * @param {stbsFindUniqueArgs} args - Arguments to find a Stbs * @example * // Get one Stbs * const stbs = await prisma.stbs.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__stbsClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Stbs that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {stbsFindUniqueOrThrowArgs} args - Arguments to find a Stbs * @example * // Get one Stbs * const stbs = await prisma.stbs.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__stbsClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Stbs 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 {stbsFindFirstArgs} args - Arguments to find a Stbs * @example * // Get one Stbs * const stbs = await prisma.stbs.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__stbsClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Stbs 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 {stbsFindFirstOrThrowArgs} args - Arguments to find a Stbs * @example * // Get one Stbs * const stbs = await prisma.stbs.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__stbsClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Stbs 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 {stbsFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Stbs * const stbs = await prisma.stbs.findMany() * * // Get first 10 Stbs * const stbs = await prisma.stbs.findMany({ take: 10 }) * * // Only select the `id` * const stbsWithIdOnly = await prisma.stbs.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Stbs. * @param {stbsCreateArgs} args - Arguments to create a Stbs. * @example * // Create one Stbs * const Stbs = await prisma.stbs.create({ * data: { * // ... data to create a Stbs * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__stbsClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Stbs. * @param {stbsCreateManyArgs} args - Arguments to create many Stbs. * @example * // Create many Stbs * const stbs = await prisma.stbs.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Stbs. * @param {stbsDeleteArgs} args - Arguments to delete one Stbs. * @example * // Delete one Stbs * const Stbs = await prisma.stbs.delete({ * where: { * // ... filter to delete one Stbs * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__stbsClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Stbs. * @param {stbsUpdateArgs} args - Arguments to update one Stbs. * @example * // Update one Stbs * const stbs = await prisma.stbs.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__stbsClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Stbs. * @param {stbsDeleteManyArgs} args - Arguments to filter Stbs to delete. * @example * // Delete a few Stbs * const { count } = await prisma.stbs.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Stbs. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {stbsUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Stbs * const stbs = await prisma.stbs.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Stbs. * @param {stbsUpsertArgs} args - Arguments to update or create a Stbs. * @example * // Update or create a Stbs * const stbs = await prisma.stbs.upsert({ * create: { * // ... data to create a Stbs * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Stbs we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__stbsClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Stbs. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {stbsCountArgs} args - Arguments to filter Stbs to count. * @example * // Count the number of Stbs * const count = await prisma.stbs.count({ * where: { * // ... the filter for the Stbs 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 Stbs. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {StbsAggregateArgs} 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 Stbs. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {stbsGroupByArgs} 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 stbsGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: stbsGroupByArgs['orderBy'] } : { orderBy?: stbsGroupByArgs['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 ? GetStbsGroupByPayload : Prisma.PrismaPromise /** * Fields of the stbs model */ readonly fields: stbsFieldRefs; } /** * The delegate class that acts as a "Promise-like" for stbs. * 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__stbsClient 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 stbs model */ export interface stbsFieldRefs { readonly id: Prisma.FieldRef<"stbs", 'Int'> readonly mac: Prisma.FieldRef<"stbs", 'String'> readonly sn: Prisma.FieldRef<"stbs", 'String'> readonly targo: Prisma.FieldRef<"stbs", 'String'> } // Custom InputTypes /** * stbs findUnique */ export type stbsFindUniqueArgs = { /** * Select specific fields to fetch from the stbs */ select?: Prisma.stbsSelect | null /** * Omit specific fields from the stbs */ omit?: Prisma.stbsOmit | null /** * Filter, which stbs to fetch. */ where: Prisma.stbsWhereUniqueInput } /** * stbs findUniqueOrThrow */ export type stbsFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the stbs */ select?: Prisma.stbsSelect | null /** * Omit specific fields from the stbs */ omit?: Prisma.stbsOmit | null /** * Filter, which stbs to fetch. */ where: Prisma.stbsWhereUniqueInput } /** * stbs findFirst */ export type stbsFindFirstArgs = { /** * Select specific fields to fetch from the stbs */ select?: Prisma.stbsSelect | null /** * Omit specific fields from the stbs */ omit?: Prisma.stbsOmit | null /** * Filter, which stbs to fetch. */ where?: Prisma.stbsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of stbs to fetch. */ orderBy?: Prisma.stbsOrderByWithRelationInput | Prisma.stbsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for stbs. */ cursor?: Prisma.stbsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` stbs 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` stbs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of stbs. */ distinct?: Prisma.StbsScalarFieldEnum | Prisma.StbsScalarFieldEnum[] } /** * stbs findFirstOrThrow */ export type stbsFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the stbs */ select?: Prisma.stbsSelect | null /** * Omit specific fields from the stbs */ omit?: Prisma.stbsOmit | null /** * Filter, which stbs to fetch. */ where?: Prisma.stbsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of stbs to fetch. */ orderBy?: Prisma.stbsOrderByWithRelationInput | Prisma.stbsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for stbs. */ cursor?: Prisma.stbsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` stbs 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` stbs. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of stbs. */ distinct?: Prisma.StbsScalarFieldEnum | Prisma.StbsScalarFieldEnum[] } /** * stbs findMany */ export type stbsFindManyArgs = { /** * Select specific fields to fetch from the stbs */ select?: Prisma.stbsSelect | null /** * Omit specific fields from the stbs */ omit?: Prisma.stbsOmit | null /** * Filter, which stbs to fetch. */ where?: Prisma.stbsWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of stbs to fetch. */ orderBy?: Prisma.stbsOrderByWithRelationInput | Prisma.stbsOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing stbs. */ cursor?: Prisma.stbsWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` stbs 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` stbs. */ skip?: number distinct?: Prisma.StbsScalarFieldEnum | Prisma.StbsScalarFieldEnum[] } /** * stbs create */ export type stbsCreateArgs = { /** * Select specific fields to fetch from the stbs */ select?: Prisma.stbsSelect | null /** * Omit specific fields from the stbs */ omit?: Prisma.stbsOmit | null /** * The data needed to create a stbs. */ data: Prisma.XOR } /** * stbs createMany */ export type stbsCreateManyArgs = { /** * The data used to create many stbs. */ data: Prisma.stbsCreateManyInput | Prisma.stbsCreateManyInput[] skipDuplicates?: boolean } /** * stbs update */ export type stbsUpdateArgs = { /** * Select specific fields to fetch from the stbs */ select?: Prisma.stbsSelect | null /** * Omit specific fields from the stbs */ omit?: Prisma.stbsOmit | null /** * The data needed to update a stbs. */ data: Prisma.XOR /** * Choose, which stbs to update. */ where: Prisma.stbsWhereUniqueInput } /** * stbs updateMany */ export type stbsUpdateManyArgs = { /** * The data used to update stbs. */ data: Prisma.XOR /** * Filter which stbs to update */ where?: Prisma.stbsWhereInput /** * Limit how many stbs to update. */ limit?: number } /** * stbs upsert */ export type stbsUpsertArgs = { /** * Select specific fields to fetch from the stbs */ select?: Prisma.stbsSelect | null /** * Omit specific fields from the stbs */ omit?: Prisma.stbsOmit | null /** * The filter to search for the stbs to update in case it exists. */ where: Prisma.stbsWhereUniqueInput /** * In case the stbs found by the `where` argument doesn't exist, create a new stbs with this data. */ create: Prisma.XOR /** * In case the stbs was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * stbs delete */ export type stbsDeleteArgs = { /** * Select specific fields to fetch from the stbs */ select?: Prisma.stbsSelect | null /** * Omit specific fields from the stbs */ omit?: Prisma.stbsOmit | null /** * Filter which stbs to delete. */ where: Prisma.stbsWhereUniqueInput } /** * stbs deleteMany */ export type stbsDeleteManyArgs = { /** * Filter which stbs to delete */ where?: Prisma.stbsWhereInput /** * Limit how many stbs to delete. */ limit?: number } /** * stbs without action */ export type stbsDefaultArgs = { /** * Select specific fields to fetch from the stbs */ select?: Prisma.stbsSelect | null /** * Omit specific fields from the stbs */ omit?: Prisma.stbsOmit | null }