/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `tele_sub_archive` 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 tele_sub_archive * */ export type tele_sub_archiveModel = runtime.Types.Result.DefaultSelection export type AggregateTele_sub_archive = { _count: Tele_sub_archiveCountAggregateOutputType | null _avg: Tele_sub_archiveAvgAggregateOutputType | null _sum: Tele_sub_archiveSumAggregateOutputType | null _min: Tele_sub_archiveMinAggregateOutputType | null _max: Tele_sub_archiveMaxAggregateOutputType | null } export type Tele_sub_archiveAvgAggregateOutputType = { id: number | null } export type Tele_sub_archiveSumAggregateOutputType = { id: number | null } export type Tele_sub_archiveMinAggregateOutputType = { id: number | null date_archive: string | null subs: string | null } export type Tele_sub_archiveMaxAggregateOutputType = { id: number | null date_archive: string | null subs: string | null } export type Tele_sub_archiveCountAggregateOutputType = { id: number date_archive: number subs: number _all: number } export type Tele_sub_archiveAvgAggregateInputType = { id?: true } export type Tele_sub_archiveSumAggregateInputType = { id?: true } export type Tele_sub_archiveMinAggregateInputType = { id?: true date_archive?: true subs?: true } export type Tele_sub_archiveMaxAggregateInputType = { id?: true date_archive?: true subs?: true } export type Tele_sub_archiveCountAggregateInputType = { id?: true date_archive?: true subs?: true _all?: true } export type Tele_sub_archiveAggregateArgs = { /** * Filter which tele_sub_archive to aggregate. */ where?: Prisma.tele_sub_archiveWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tele_sub_archives to fetch. */ orderBy?: Prisma.tele_sub_archiveOrderByWithRelationInput | Prisma.tele_sub_archiveOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.tele_sub_archiveWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tele_sub_archives 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` tele_sub_archives. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned tele_sub_archives **/ _count?: true | Tele_sub_archiveCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to average **/ _avg?: Tele_sub_archiveAvgAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to sum **/ _sum?: Tele_sub_archiveSumAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: Tele_sub_archiveMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: Tele_sub_archiveMaxAggregateInputType } export type GetTele_sub_archiveAggregateType = { [P in keyof T & keyof AggregateTele_sub_archive]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type tele_sub_archiveGroupByArgs = { where?: Prisma.tele_sub_archiveWhereInput orderBy?: Prisma.tele_sub_archiveOrderByWithAggregationInput | Prisma.tele_sub_archiveOrderByWithAggregationInput[] by: Prisma.Tele_sub_archiveScalarFieldEnum[] | Prisma.Tele_sub_archiveScalarFieldEnum having?: Prisma.tele_sub_archiveScalarWhereWithAggregatesInput take?: number skip?: number _count?: Tele_sub_archiveCountAggregateInputType | true _avg?: Tele_sub_archiveAvgAggregateInputType _sum?: Tele_sub_archiveSumAggregateInputType _min?: Tele_sub_archiveMinAggregateInputType _max?: Tele_sub_archiveMaxAggregateInputType } export type Tele_sub_archiveGroupByOutputType = { id: number date_archive: string subs: string _count: Tele_sub_archiveCountAggregateOutputType | null _avg: Tele_sub_archiveAvgAggregateOutputType | null _sum: Tele_sub_archiveSumAggregateOutputType | null _min: Tele_sub_archiveMinAggregateOutputType | null _max: Tele_sub_archiveMaxAggregateOutputType | null } type GetTele_sub_archiveGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof Tele_sub_archiveGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type tele_sub_archiveWhereInput = { AND?: Prisma.tele_sub_archiveWhereInput | Prisma.tele_sub_archiveWhereInput[] OR?: Prisma.tele_sub_archiveWhereInput[] NOT?: Prisma.tele_sub_archiveWhereInput | Prisma.tele_sub_archiveWhereInput[] id?: Prisma.IntFilter<"tele_sub_archive"> | number date_archive?: Prisma.StringFilter<"tele_sub_archive"> | string subs?: Prisma.StringFilter<"tele_sub_archive"> | string } export type tele_sub_archiveOrderByWithRelationInput = { id?: Prisma.SortOrder date_archive?: Prisma.SortOrder subs?: Prisma.SortOrder _relevance?: Prisma.tele_sub_archiveOrderByRelevanceInput } export type tele_sub_archiveWhereUniqueInput = Prisma.AtLeast<{ id?: number AND?: Prisma.tele_sub_archiveWhereInput | Prisma.tele_sub_archiveWhereInput[] OR?: Prisma.tele_sub_archiveWhereInput[] NOT?: Prisma.tele_sub_archiveWhereInput | Prisma.tele_sub_archiveWhereInput[] date_archive?: Prisma.StringFilter<"tele_sub_archive"> | string subs?: Prisma.StringFilter<"tele_sub_archive"> | string }, "id"> export type tele_sub_archiveOrderByWithAggregationInput = { id?: Prisma.SortOrder date_archive?: Prisma.SortOrder subs?: Prisma.SortOrder _count?: Prisma.tele_sub_archiveCountOrderByAggregateInput _avg?: Prisma.tele_sub_archiveAvgOrderByAggregateInput _max?: Prisma.tele_sub_archiveMaxOrderByAggregateInput _min?: Prisma.tele_sub_archiveMinOrderByAggregateInput _sum?: Prisma.tele_sub_archiveSumOrderByAggregateInput } export type tele_sub_archiveScalarWhereWithAggregatesInput = { AND?: Prisma.tele_sub_archiveScalarWhereWithAggregatesInput | Prisma.tele_sub_archiveScalarWhereWithAggregatesInput[] OR?: Prisma.tele_sub_archiveScalarWhereWithAggregatesInput[] NOT?: Prisma.tele_sub_archiveScalarWhereWithAggregatesInput | Prisma.tele_sub_archiveScalarWhereWithAggregatesInput[] id?: Prisma.IntWithAggregatesFilter<"tele_sub_archive"> | number date_archive?: Prisma.StringWithAggregatesFilter<"tele_sub_archive"> | string subs?: Prisma.StringWithAggregatesFilter<"tele_sub_archive"> | string } export type tele_sub_archiveCreateInput = { date_archive: string subs: string } export type tele_sub_archiveUncheckedCreateInput = { id?: number date_archive: string subs: string } export type tele_sub_archiveUpdateInput = { date_archive?: Prisma.StringFieldUpdateOperationsInput | string subs?: Prisma.StringFieldUpdateOperationsInput | string } export type tele_sub_archiveUncheckedUpdateInput = { id?: Prisma.IntFieldUpdateOperationsInput | number date_archive?: Prisma.StringFieldUpdateOperationsInput | string subs?: Prisma.StringFieldUpdateOperationsInput | string } export type tele_sub_archiveCreateManyInput = { id?: number date_archive: string subs: string } export type tele_sub_archiveUpdateManyMutationInput = { date_archive?: Prisma.StringFieldUpdateOperationsInput | string subs?: Prisma.StringFieldUpdateOperationsInput | string } export type tele_sub_archiveUncheckedUpdateManyInput = { id?: Prisma.IntFieldUpdateOperationsInput | number date_archive?: Prisma.StringFieldUpdateOperationsInput | string subs?: Prisma.StringFieldUpdateOperationsInput | string } export type tele_sub_archiveOrderByRelevanceInput = { fields: Prisma.tele_sub_archiveOrderByRelevanceFieldEnum | Prisma.tele_sub_archiveOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type tele_sub_archiveCountOrderByAggregateInput = { id?: Prisma.SortOrder date_archive?: Prisma.SortOrder subs?: Prisma.SortOrder } export type tele_sub_archiveAvgOrderByAggregateInput = { id?: Prisma.SortOrder } export type tele_sub_archiveMaxOrderByAggregateInput = { id?: Prisma.SortOrder date_archive?: Prisma.SortOrder subs?: Prisma.SortOrder } export type tele_sub_archiveMinOrderByAggregateInput = { id?: Prisma.SortOrder date_archive?: Prisma.SortOrder subs?: Prisma.SortOrder } export type tele_sub_archiveSumOrderByAggregateInput = { id?: Prisma.SortOrder } export type tele_sub_archiveSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean date_archive?: boolean subs?: boolean }, ExtArgs["result"]["tele_sub_archive"]> export type tele_sub_archiveSelectScalar = { id?: boolean date_archive?: boolean subs?: boolean } export type tele_sub_archiveOmit = runtime.Types.Extensions.GetOmit<"id" | "date_archive" | "subs", ExtArgs["result"]["tele_sub_archive"]> export type $tele_sub_archivePayload = { name: "tele_sub_archive" objects: {} scalars: runtime.Types.Extensions.GetPayloadResult<{ id: number date_archive: string subs: string }, ExtArgs["result"]["tele_sub_archive"]> composites: {} } export type tele_sub_archiveGetPayload = runtime.Types.Result.GetResult export type tele_sub_archiveCountArgs = Omit & { select?: Tele_sub_archiveCountAggregateInputType | true } export interface tele_sub_archiveDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['tele_sub_archive'], meta: { name: 'tele_sub_archive' } } /** * Find zero or one Tele_sub_archive that matches the filter. * @param {tele_sub_archiveFindUniqueArgs} args - Arguments to find a Tele_sub_archive * @example * // Get one Tele_sub_archive * const tele_sub_archive = await prisma.tele_sub_archive.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__tele_sub_archiveClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Tele_sub_archive that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {tele_sub_archiveFindUniqueOrThrowArgs} args - Arguments to find a Tele_sub_archive * @example * // Get one Tele_sub_archive * const tele_sub_archive = await prisma.tele_sub_archive.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__tele_sub_archiveClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Tele_sub_archive 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 {tele_sub_archiveFindFirstArgs} args - Arguments to find a Tele_sub_archive * @example * // Get one Tele_sub_archive * const tele_sub_archive = await prisma.tele_sub_archive.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__tele_sub_archiveClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Tele_sub_archive 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 {tele_sub_archiveFindFirstOrThrowArgs} args - Arguments to find a Tele_sub_archive * @example * // Get one Tele_sub_archive * const tele_sub_archive = await prisma.tele_sub_archive.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__tele_sub_archiveClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Tele_sub_archives 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 {tele_sub_archiveFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Tele_sub_archives * const tele_sub_archives = await prisma.tele_sub_archive.findMany() * * // Get first 10 Tele_sub_archives * const tele_sub_archives = await prisma.tele_sub_archive.findMany({ take: 10 }) * * // Only select the `id` * const tele_sub_archiveWithIdOnly = await prisma.tele_sub_archive.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Tele_sub_archive. * @param {tele_sub_archiveCreateArgs} args - Arguments to create a Tele_sub_archive. * @example * // Create one Tele_sub_archive * const Tele_sub_archive = await prisma.tele_sub_archive.create({ * data: { * // ... data to create a Tele_sub_archive * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__tele_sub_archiveClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Tele_sub_archives. * @param {tele_sub_archiveCreateManyArgs} args - Arguments to create many Tele_sub_archives. * @example * // Create many Tele_sub_archives * const tele_sub_archive = await prisma.tele_sub_archive.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Tele_sub_archive. * @param {tele_sub_archiveDeleteArgs} args - Arguments to delete one Tele_sub_archive. * @example * // Delete one Tele_sub_archive * const Tele_sub_archive = await prisma.tele_sub_archive.delete({ * where: { * // ... filter to delete one Tele_sub_archive * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__tele_sub_archiveClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Tele_sub_archive. * @param {tele_sub_archiveUpdateArgs} args - Arguments to update one Tele_sub_archive. * @example * // Update one Tele_sub_archive * const tele_sub_archive = await prisma.tele_sub_archive.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__tele_sub_archiveClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Tele_sub_archives. * @param {tele_sub_archiveDeleteManyArgs} args - Arguments to filter Tele_sub_archives to delete. * @example * // Delete a few Tele_sub_archives * const { count } = await prisma.tele_sub_archive.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Tele_sub_archives. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tele_sub_archiveUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Tele_sub_archives * const tele_sub_archive = await prisma.tele_sub_archive.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Tele_sub_archive. * @param {tele_sub_archiveUpsertArgs} args - Arguments to update or create a Tele_sub_archive. * @example * // Update or create a Tele_sub_archive * const tele_sub_archive = await prisma.tele_sub_archive.upsert({ * create: { * // ... data to create a Tele_sub_archive * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Tele_sub_archive we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__tele_sub_archiveClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Tele_sub_archives. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tele_sub_archiveCountArgs} args - Arguments to filter Tele_sub_archives to count. * @example * // Count the number of Tele_sub_archives * const count = await prisma.tele_sub_archive.count({ * where: { * // ... the filter for the Tele_sub_archives 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 Tele_sub_archive. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {Tele_sub_archiveAggregateArgs} 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 Tele_sub_archive. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {tele_sub_archiveGroupByArgs} 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 tele_sub_archiveGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: tele_sub_archiveGroupByArgs['orderBy'] } : { orderBy?: tele_sub_archiveGroupByArgs['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 ? GetTele_sub_archiveGroupByPayload : Prisma.PrismaPromise /** * Fields of the tele_sub_archive model */ readonly fields: tele_sub_archiveFieldRefs; } /** * The delegate class that acts as a "Promise-like" for tele_sub_archive. * 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__tele_sub_archiveClient 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 tele_sub_archive model */ export interface tele_sub_archiveFieldRefs { readonly id: Prisma.FieldRef<"tele_sub_archive", 'Int'> readonly date_archive: Prisma.FieldRef<"tele_sub_archive", 'String'> readonly subs: Prisma.FieldRef<"tele_sub_archive", 'String'> } // Custom InputTypes /** * tele_sub_archive findUnique */ export type tele_sub_archiveFindUniqueArgs = { /** * Select specific fields to fetch from the tele_sub_archive */ select?: Prisma.tele_sub_archiveSelect | null /** * Omit specific fields from the tele_sub_archive */ omit?: Prisma.tele_sub_archiveOmit | null /** * Filter, which tele_sub_archive to fetch. */ where: Prisma.tele_sub_archiveWhereUniqueInput } /** * tele_sub_archive findUniqueOrThrow */ export type tele_sub_archiveFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the tele_sub_archive */ select?: Prisma.tele_sub_archiveSelect | null /** * Omit specific fields from the tele_sub_archive */ omit?: Prisma.tele_sub_archiveOmit | null /** * Filter, which tele_sub_archive to fetch. */ where: Prisma.tele_sub_archiveWhereUniqueInput } /** * tele_sub_archive findFirst */ export type tele_sub_archiveFindFirstArgs = { /** * Select specific fields to fetch from the tele_sub_archive */ select?: Prisma.tele_sub_archiveSelect | null /** * Omit specific fields from the tele_sub_archive */ omit?: Prisma.tele_sub_archiveOmit | null /** * Filter, which tele_sub_archive to fetch. */ where?: Prisma.tele_sub_archiveWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tele_sub_archives to fetch. */ orderBy?: Prisma.tele_sub_archiveOrderByWithRelationInput | Prisma.tele_sub_archiveOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for tele_sub_archives. */ cursor?: Prisma.tele_sub_archiveWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tele_sub_archives 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` tele_sub_archives. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of tele_sub_archives. */ distinct?: Prisma.Tele_sub_archiveScalarFieldEnum | Prisma.Tele_sub_archiveScalarFieldEnum[] } /** * tele_sub_archive findFirstOrThrow */ export type tele_sub_archiveFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the tele_sub_archive */ select?: Prisma.tele_sub_archiveSelect | null /** * Omit specific fields from the tele_sub_archive */ omit?: Prisma.tele_sub_archiveOmit | null /** * Filter, which tele_sub_archive to fetch. */ where?: Prisma.tele_sub_archiveWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tele_sub_archives to fetch. */ orderBy?: Prisma.tele_sub_archiveOrderByWithRelationInput | Prisma.tele_sub_archiveOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for tele_sub_archives. */ cursor?: Prisma.tele_sub_archiveWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tele_sub_archives 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` tele_sub_archives. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of tele_sub_archives. */ distinct?: Prisma.Tele_sub_archiveScalarFieldEnum | Prisma.Tele_sub_archiveScalarFieldEnum[] } /** * tele_sub_archive findMany */ export type tele_sub_archiveFindManyArgs = { /** * Select specific fields to fetch from the tele_sub_archive */ select?: Prisma.tele_sub_archiveSelect | null /** * Omit specific fields from the tele_sub_archive */ omit?: Prisma.tele_sub_archiveOmit | null /** * Filter, which tele_sub_archives to fetch. */ where?: Prisma.tele_sub_archiveWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of tele_sub_archives to fetch. */ orderBy?: Prisma.tele_sub_archiveOrderByWithRelationInput | Prisma.tele_sub_archiveOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing tele_sub_archives. */ cursor?: Prisma.tele_sub_archiveWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` tele_sub_archives 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` tele_sub_archives. */ skip?: number distinct?: Prisma.Tele_sub_archiveScalarFieldEnum | Prisma.Tele_sub_archiveScalarFieldEnum[] } /** * tele_sub_archive create */ export type tele_sub_archiveCreateArgs = { /** * Select specific fields to fetch from the tele_sub_archive */ select?: Prisma.tele_sub_archiveSelect | null /** * Omit specific fields from the tele_sub_archive */ omit?: Prisma.tele_sub_archiveOmit | null /** * The data needed to create a tele_sub_archive. */ data: Prisma.XOR } /** * tele_sub_archive createMany */ export type tele_sub_archiveCreateManyArgs = { /** * The data used to create many tele_sub_archives. */ data: Prisma.tele_sub_archiveCreateManyInput | Prisma.tele_sub_archiveCreateManyInput[] skipDuplicates?: boolean } /** * tele_sub_archive update */ export type tele_sub_archiveUpdateArgs = { /** * Select specific fields to fetch from the tele_sub_archive */ select?: Prisma.tele_sub_archiveSelect | null /** * Omit specific fields from the tele_sub_archive */ omit?: Prisma.tele_sub_archiveOmit | null /** * The data needed to update a tele_sub_archive. */ data: Prisma.XOR /** * Choose, which tele_sub_archive to update. */ where: Prisma.tele_sub_archiveWhereUniqueInput } /** * tele_sub_archive updateMany */ export type tele_sub_archiveUpdateManyArgs = { /** * The data used to update tele_sub_archives. */ data: Prisma.XOR /** * Filter which tele_sub_archives to update */ where?: Prisma.tele_sub_archiveWhereInput /** * Limit how many tele_sub_archives to update. */ limit?: number } /** * tele_sub_archive upsert */ export type tele_sub_archiveUpsertArgs = { /** * Select specific fields to fetch from the tele_sub_archive */ select?: Prisma.tele_sub_archiveSelect | null /** * Omit specific fields from the tele_sub_archive */ omit?: Prisma.tele_sub_archiveOmit | null /** * The filter to search for the tele_sub_archive to update in case it exists. */ where: Prisma.tele_sub_archiveWhereUniqueInput /** * In case the tele_sub_archive found by the `where` argument doesn't exist, create a new tele_sub_archive with this data. */ create: Prisma.XOR /** * In case the tele_sub_archive was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * tele_sub_archive delete */ export type tele_sub_archiveDeleteArgs = { /** * Select specific fields to fetch from the tele_sub_archive */ select?: Prisma.tele_sub_archiveSelect | null /** * Omit specific fields from the tele_sub_archive */ omit?: Prisma.tele_sub_archiveOmit | null /** * Filter which tele_sub_archive to delete. */ where: Prisma.tele_sub_archiveWhereUniqueInput } /** * tele_sub_archive deleteMany */ export type tele_sub_archiveDeleteManyArgs = { /** * Filter which tele_sub_archives to delete */ where?: Prisma.tele_sub_archiveWhereInput /** * Limit how many tele_sub_archives to delete. */ limit?: number } /** * tele_sub_archive without action */ export type tele_sub_archiveDefaultArgs = { /** * Select specific fields to fetch from the tele_sub_archive */ select?: Prisma.tele_sub_archiveSelect | null /** * Omit specific fields from the tele_sub_archive */ omit?: Prisma.tele_sub_archiveOmit | null }