/* !!! This is code generated by Prisma. Do not edit directly. !!! */ /* eslint-disable */ // biome-ignore-all lint: generated file // @ts-nocheck /* * This file exports the `Account` 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 Account * */ export type AccountModel = runtime.Types.Result.DefaultSelection export type AggregateAccount = { _count: AccountCountAggregateOutputType | null _min: AccountMinAggregateOutputType | null _max: AccountMaxAggregateOutputType | null } export type AccountMinAggregateOutputType = { id: string | null accountId: string | null providerId: string | null userId: string | null accessToken: string | null refreshToken: string | null idToken: string | null accessTokenExpiresAt: Date | null refreshTokenExpiresAt: Date | null scope: string | null password: string | null createdAt: Date | null updatedAt: Date | null } export type AccountMaxAggregateOutputType = { id: string | null accountId: string | null providerId: string | null userId: string | null accessToken: string | null refreshToken: string | null idToken: string | null accessTokenExpiresAt: Date | null refreshTokenExpiresAt: Date | null scope: string | null password: string | null createdAt: Date | null updatedAt: Date | null } export type AccountCountAggregateOutputType = { id: number accountId: number providerId: number userId: number accessToken: number refreshToken: number idToken: number accessTokenExpiresAt: number refreshTokenExpiresAt: number scope: number password: number createdAt: number updatedAt: number _all: number } export type AccountMinAggregateInputType = { id?: true accountId?: true providerId?: true userId?: true accessToken?: true refreshToken?: true idToken?: true accessTokenExpiresAt?: true refreshTokenExpiresAt?: true scope?: true password?: true createdAt?: true updatedAt?: true } export type AccountMaxAggregateInputType = { id?: true accountId?: true providerId?: true userId?: true accessToken?: true refreshToken?: true idToken?: true accessTokenExpiresAt?: true refreshTokenExpiresAt?: true scope?: true password?: true createdAt?: true updatedAt?: true } export type AccountCountAggregateInputType = { id?: true accountId?: true providerId?: true userId?: true accessToken?: true refreshToken?: true idToken?: true accessTokenExpiresAt?: true refreshTokenExpiresAt?: true scope?: true password?: true createdAt?: true updatedAt?: true _all?: true } export type AccountAggregateArgs = { /** * Filter which Account to aggregate. */ where?: Prisma.AccountWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Accounts to fetch. */ orderBy?: Prisma.AccountOrderByWithRelationInput | Prisma.AccountOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the start position */ cursor?: Prisma.AccountWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Accounts 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` Accounts. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Count returned Accounts **/ _count?: true | AccountCountAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the minimum value **/ _min?: AccountMinAggregateInputType /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} * * Select which fields to find the maximum value **/ _max?: AccountMaxAggregateInputType } export type GetAccountAggregateType = { [P in keyof T & keyof AggregateAccount]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type AccountGroupByArgs = { where?: Prisma.AccountWhereInput orderBy?: Prisma.AccountOrderByWithAggregationInput | Prisma.AccountOrderByWithAggregationInput[] by: Prisma.AccountScalarFieldEnum[] | Prisma.AccountScalarFieldEnum having?: Prisma.AccountScalarWhereWithAggregatesInput take?: number skip?: number _count?: AccountCountAggregateInputType | true _min?: AccountMinAggregateInputType _max?: AccountMaxAggregateInputType } export type AccountGroupByOutputType = { id: string accountId: string providerId: string userId: string accessToken: string | null refreshToken: string | null idToken: string | null accessTokenExpiresAt: Date | null refreshTokenExpiresAt: Date | null scope: string | null password: string | null createdAt: Date updatedAt: Date _count: AccountCountAggregateOutputType | null _min: AccountMinAggregateOutputType | null _max: AccountMaxAggregateOutputType | null } type GetAccountGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof AccountGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type AccountWhereInput = { AND?: Prisma.AccountWhereInput | Prisma.AccountWhereInput[] OR?: Prisma.AccountWhereInput[] NOT?: Prisma.AccountWhereInput | Prisma.AccountWhereInput[] id?: Prisma.StringFilter<"Account"> | string accountId?: Prisma.StringFilter<"Account"> | string providerId?: Prisma.StringFilter<"Account"> | string userId?: Prisma.StringFilter<"Account"> | string accessToken?: Prisma.StringNullableFilter<"Account"> | string | null refreshToken?: Prisma.StringNullableFilter<"Account"> | string | null idToken?: Prisma.StringNullableFilter<"Account"> | string | null accessTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null refreshTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null scope?: Prisma.StringNullableFilter<"Account"> | string | null password?: Prisma.StringNullableFilter<"Account"> | string | null createdAt?: Prisma.DateTimeFilter<"Account"> | Date | string updatedAt?: Prisma.DateTimeFilter<"Account"> | Date | string user?: Prisma.XOR } export type AccountOrderByWithRelationInput = { id?: Prisma.SortOrder accountId?: Prisma.SortOrder providerId?: Prisma.SortOrder userId?: Prisma.SortOrder accessToken?: Prisma.SortOrderInput | Prisma.SortOrder refreshToken?: Prisma.SortOrderInput | Prisma.SortOrder idToken?: Prisma.SortOrderInput | Prisma.SortOrder accessTokenExpiresAt?: Prisma.SortOrderInput | Prisma.SortOrder refreshTokenExpiresAt?: Prisma.SortOrderInput | Prisma.SortOrder scope?: Prisma.SortOrderInput | Prisma.SortOrder password?: Prisma.SortOrderInput | Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder user?: Prisma.UserOrderByWithRelationInput _relevance?: Prisma.AccountOrderByRelevanceInput } export type AccountWhereUniqueInput = Prisma.AtLeast<{ id?: string AND?: Prisma.AccountWhereInput | Prisma.AccountWhereInput[] OR?: Prisma.AccountWhereInput[] NOT?: Prisma.AccountWhereInput | Prisma.AccountWhereInput[] accountId?: Prisma.StringFilter<"Account"> | string providerId?: Prisma.StringFilter<"Account"> | string userId?: Prisma.StringFilter<"Account"> | string accessToken?: Prisma.StringNullableFilter<"Account"> | string | null refreshToken?: Prisma.StringNullableFilter<"Account"> | string | null idToken?: Prisma.StringNullableFilter<"Account"> | string | null accessTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null refreshTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null scope?: Prisma.StringNullableFilter<"Account"> | string | null password?: Prisma.StringNullableFilter<"Account"> | string | null createdAt?: Prisma.DateTimeFilter<"Account"> | Date | string updatedAt?: Prisma.DateTimeFilter<"Account"> | Date | string user?: Prisma.XOR }, "id"> export type AccountOrderByWithAggregationInput = { id?: Prisma.SortOrder accountId?: Prisma.SortOrder providerId?: Prisma.SortOrder userId?: Prisma.SortOrder accessToken?: Prisma.SortOrderInput | Prisma.SortOrder refreshToken?: Prisma.SortOrderInput | Prisma.SortOrder idToken?: Prisma.SortOrderInput | Prisma.SortOrder accessTokenExpiresAt?: Prisma.SortOrderInput | Prisma.SortOrder refreshTokenExpiresAt?: Prisma.SortOrderInput | Prisma.SortOrder scope?: Prisma.SortOrderInput | Prisma.SortOrder password?: Prisma.SortOrderInput | Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder _count?: Prisma.AccountCountOrderByAggregateInput _max?: Prisma.AccountMaxOrderByAggregateInput _min?: Prisma.AccountMinOrderByAggregateInput } export type AccountScalarWhereWithAggregatesInput = { AND?: Prisma.AccountScalarWhereWithAggregatesInput | Prisma.AccountScalarWhereWithAggregatesInput[] OR?: Prisma.AccountScalarWhereWithAggregatesInput[] NOT?: Prisma.AccountScalarWhereWithAggregatesInput | Prisma.AccountScalarWhereWithAggregatesInput[] id?: Prisma.StringWithAggregatesFilter<"Account"> | string accountId?: Prisma.StringWithAggregatesFilter<"Account"> | string providerId?: Prisma.StringWithAggregatesFilter<"Account"> | string userId?: Prisma.StringWithAggregatesFilter<"Account"> | string accessToken?: Prisma.StringNullableWithAggregatesFilter<"Account"> | string | null refreshToken?: Prisma.StringNullableWithAggregatesFilter<"Account"> | string | null idToken?: Prisma.StringNullableWithAggregatesFilter<"Account"> | string | null accessTokenExpiresAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Account"> | Date | string | null refreshTokenExpiresAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Account"> | Date | string | null scope?: Prisma.StringNullableWithAggregatesFilter<"Account"> | string | null password?: Prisma.StringNullableWithAggregatesFilter<"Account"> | string | null createdAt?: Prisma.DateTimeWithAggregatesFilter<"Account"> | Date | string updatedAt?: Prisma.DateTimeWithAggregatesFilter<"Account"> | Date | string } export type AccountCreateInput = { id: string accountId: string providerId: string accessToken?: string | null refreshToken?: string | null idToken?: string | null accessTokenExpiresAt?: Date | string | null refreshTokenExpiresAt?: Date | string | null scope?: string | null password?: string | null createdAt?: Date | string updatedAt?: Date | string user: Prisma.UserCreateNestedOneWithoutAccountsInput } export type AccountUncheckedCreateInput = { id: string accountId: string providerId: string userId: string accessToken?: string | null refreshToken?: string | null idToken?: string | null accessTokenExpiresAt?: Date | string | null refreshTokenExpiresAt?: Date | string | null scope?: string | null password?: string | null createdAt?: Date | string updatedAt?: Date | string } export type AccountUpdateInput = { id?: Prisma.StringFieldUpdateOperationsInput | string accountId?: Prisma.StringFieldUpdateOperationsInput | string providerId?: Prisma.StringFieldUpdateOperationsInput | string accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string user?: Prisma.UserUpdateOneRequiredWithoutAccountsNestedInput } export type AccountUncheckedUpdateInput = { id?: Prisma.StringFieldUpdateOperationsInput | string accountId?: Prisma.StringFieldUpdateOperationsInput | string providerId?: Prisma.StringFieldUpdateOperationsInput | string userId?: Prisma.StringFieldUpdateOperationsInput | string accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type AccountCreateManyInput = { id: string accountId: string providerId: string userId: string accessToken?: string | null refreshToken?: string | null idToken?: string | null accessTokenExpiresAt?: Date | string | null refreshTokenExpiresAt?: Date | string | null scope?: string | null password?: string | null createdAt?: Date | string updatedAt?: Date | string } export type AccountUpdateManyMutationInput = { id?: Prisma.StringFieldUpdateOperationsInput | string accountId?: Prisma.StringFieldUpdateOperationsInput | string providerId?: Prisma.StringFieldUpdateOperationsInput | string accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type AccountUncheckedUpdateManyInput = { id?: Prisma.StringFieldUpdateOperationsInput | string accountId?: Prisma.StringFieldUpdateOperationsInput | string providerId?: Prisma.StringFieldUpdateOperationsInput | string userId?: Prisma.StringFieldUpdateOperationsInput | string accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type AccountListRelationFilter = { every?: Prisma.AccountWhereInput some?: Prisma.AccountWhereInput none?: Prisma.AccountWhereInput } export type AccountOrderByRelationAggregateInput = { _count?: Prisma.SortOrder } export type AccountOrderByRelevanceInput = { fields: Prisma.AccountOrderByRelevanceFieldEnum | Prisma.AccountOrderByRelevanceFieldEnum[] sort: Prisma.SortOrder search: string } export type AccountCountOrderByAggregateInput = { id?: Prisma.SortOrder accountId?: Prisma.SortOrder providerId?: Prisma.SortOrder userId?: Prisma.SortOrder accessToken?: Prisma.SortOrder refreshToken?: Prisma.SortOrder idToken?: Prisma.SortOrder accessTokenExpiresAt?: Prisma.SortOrder refreshTokenExpiresAt?: Prisma.SortOrder scope?: Prisma.SortOrder password?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder } export type AccountMaxOrderByAggregateInput = { id?: Prisma.SortOrder accountId?: Prisma.SortOrder providerId?: Prisma.SortOrder userId?: Prisma.SortOrder accessToken?: Prisma.SortOrder refreshToken?: Prisma.SortOrder idToken?: Prisma.SortOrder accessTokenExpiresAt?: Prisma.SortOrder refreshTokenExpiresAt?: Prisma.SortOrder scope?: Prisma.SortOrder password?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder } export type AccountMinOrderByAggregateInput = { id?: Prisma.SortOrder accountId?: Prisma.SortOrder providerId?: Prisma.SortOrder userId?: Prisma.SortOrder accessToken?: Prisma.SortOrder refreshToken?: Prisma.SortOrder idToken?: Prisma.SortOrder accessTokenExpiresAt?: Prisma.SortOrder refreshTokenExpiresAt?: Prisma.SortOrder scope?: Prisma.SortOrder password?: Prisma.SortOrder createdAt?: Prisma.SortOrder updatedAt?: Prisma.SortOrder } export type AccountCreateNestedManyWithoutUserInput = { create?: Prisma.XOR | Prisma.AccountCreateWithoutUserInput[] | Prisma.AccountUncheckedCreateWithoutUserInput[] connectOrCreate?: Prisma.AccountCreateOrConnectWithoutUserInput | Prisma.AccountCreateOrConnectWithoutUserInput[] createMany?: Prisma.AccountCreateManyUserInputEnvelope connect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[] } export type AccountUncheckedCreateNestedManyWithoutUserInput = { create?: Prisma.XOR | Prisma.AccountCreateWithoutUserInput[] | Prisma.AccountUncheckedCreateWithoutUserInput[] connectOrCreate?: Prisma.AccountCreateOrConnectWithoutUserInput | Prisma.AccountCreateOrConnectWithoutUserInput[] createMany?: Prisma.AccountCreateManyUserInputEnvelope connect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[] } export type AccountUpdateManyWithoutUserNestedInput = { create?: Prisma.XOR | Prisma.AccountCreateWithoutUserInput[] | Prisma.AccountUncheckedCreateWithoutUserInput[] connectOrCreate?: Prisma.AccountCreateOrConnectWithoutUserInput | Prisma.AccountCreateOrConnectWithoutUserInput[] upsert?: Prisma.AccountUpsertWithWhereUniqueWithoutUserInput | Prisma.AccountUpsertWithWhereUniqueWithoutUserInput[] createMany?: Prisma.AccountCreateManyUserInputEnvelope set?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[] disconnect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[] delete?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[] connect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[] update?: Prisma.AccountUpdateWithWhereUniqueWithoutUserInput | Prisma.AccountUpdateWithWhereUniqueWithoutUserInput[] updateMany?: Prisma.AccountUpdateManyWithWhereWithoutUserInput | Prisma.AccountUpdateManyWithWhereWithoutUserInput[] deleteMany?: Prisma.AccountScalarWhereInput | Prisma.AccountScalarWhereInput[] } export type AccountUncheckedUpdateManyWithoutUserNestedInput = { create?: Prisma.XOR | Prisma.AccountCreateWithoutUserInput[] | Prisma.AccountUncheckedCreateWithoutUserInput[] connectOrCreate?: Prisma.AccountCreateOrConnectWithoutUserInput | Prisma.AccountCreateOrConnectWithoutUserInput[] upsert?: Prisma.AccountUpsertWithWhereUniqueWithoutUserInput | Prisma.AccountUpsertWithWhereUniqueWithoutUserInput[] createMany?: Prisma.AccountCreateManyUserInputEnvelope set?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[] disconnect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[] delete?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[] connect?: Prisma.AccountWhereUniqueInput | Prisma.AccountWhereUniqueInput[] update?: Prisma.AccountUpdateWithWhereUniqueWithoutUserInput | Prisma.AccountUpdateWithWhereUniqueWithoutUserInput[] updateMany?: Prisma.AccountUpdateManyWithWhereWithoutUserInput | Prisma.AccountUpdateManyWithWhereWithoutUserInput[] deleteMany?: Prisma.AccountScalarWhereInput | Prisma.AccountScalarWhereInput[] } export type NullableDateTimeFieldUpdateOperationsInput = { set?: Date | string | null } export type AccountCreateWithoutUserInput = { id: string accountId: string providerId: string accessToken?: string | null refreshToken?: string | null idToken?: string | null accessTokenExpiresAt?: Date | string | null refreshTokenExpiresAt?: Date | string | null scope?: string | null password?: string | null createdAt?: Date | string updatedAt?: Date | string } export type AccountUncheckedCreateWithoutUserInput = { id: string accountId: string providerId: string accessToken?: string | null refreshToken?: string | null idToken?: string | null accessTokenExpiresAt?: Date | string | null refreshTokenExpiresAt?: Date | string | null scope?: string | null password?: string | null createdAt?: Date | string updatedAt?: Date | string } export type AccountCreateOrConnectWithoutUserInput = { where: Prisma.AccountWhereUniqueInput create: Prisma.XOR } export type AccountCreateManyUserInputEnvelope = { data: Prisma.AccountCreateManyUserInput | Prisma.AccountCreateManyUserInput[] skipDuplicates?: boolean } export type AccountUpsertWithWhereUniqueWithoutUserInput = { where: Prisma.AccountWhereUniqueInput update: Prisma.XOR create: Prisma.XOR } export type AccountUpdateWithWhereUniqueWithoutUserInput = { where: Prisma.AccountWhereUniqueInput data: Prisma.XOR } export type AccountUpdateManyWithWhereWithoutUserInput = { where: Prisma.AccountScalarWhereInput data: Prisma.XOR } export type AccountScalarWhereInput = { AND?: Prisma.AccountScalarWhereInput | Prisma.AccountScalarWhereInput[] OR?: Prisma.AccountScalarWhereInput[] NOT?: Prisma.AccountScalarWhereInput | Prisma.AccountScalarWhereInput[] id?: Prisma.StringFilter<"Account"> | string accountId?: Prisma.StringFilter<"Account"> | string providerId?: Prisma.StringFilter<"Account"> | string userId?: Prisma.StringFilter<"Account"> | string accessToken?: Prisma.StringNullableFilter<"Account"> | string | null refreshToken?: Prisma.StringNullableFilter<"Account"> | string | null idToken?: Prisma.StringNullableFilter<"Account"> | string | null accessTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null refreshTokenExpiresAt?: Prisma.DateTimeNullableFilter<"Account"> | Date | string | null scope?: Prisma.StringNullableFilter<"Account"> | string | null password?: Prisma.StringNullableFilter<"Account"> | string | null createdAt?: Prisma.DateTimeFilter<"Account"> | Date | string updatedAt?: Prisma.DateTimeFilter<"Account"> | Date | string } export type AccountCreateManyUserInput = { id: string accountId: string providerId: string accessToken?: string | null refreshToken?: string | null idToken?: string | null accessTokenExpiresAt?: Date | string | null refreshTokenExpiresAt?: Date | string | null scope?: string | null password?: string | null createdAt?: Date | string updatedAt?: Date | string } export type AccountUpdateWithoutUserInput = { id?: Prisma.StringFieldUpdateOperationsInput | string accountId?: Prisma.StringFieldUpdateOperationsInput | string providerId?: Prisma.StringFieldUpdateOperationsInput | string accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type AccountUncheckedUpdateWithoutUserInput = { id?: Prisma.StringFieldUpdateOperationsInput | string accountId?: Prisma.StringFieldUpdateOperationsInput | string providerId?: Prisma.StringFieldUpdateOperationsInput | string accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type AccountUncheckedUpdateManyWithoutUserInput = { id?: Prisma.StringFieldUpdateOperationsInput | string accountId?: Prisma.StringFieldUpdateOperationsInput | string providerId?: Prisma.StringFieldUpdateOperationsInput | string accessToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null refreshToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null idToken?: Prisma.NullableStringFieldUpdateOperationsInput | string | null accessTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null refreshTokenExpiresAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null scope?: Prisma.NullableStringFieldUpdateOperationsInput | string | null password?: Prisma.NullableStringFieldUpdateOperationsInput | string | null createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string } export type AccountSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean accountId?: boolean providerId?: boolean userId?: boolean accessToken?: boolean refreshToken?: boolean idToken?: boolean accessTokenExpiresAt?: boolean refreshTokenExpiresAt?: boolean scope?: boolean password?: boolean createdAt?: boolean updatedAt?: boolean user?: boolean | Prisma.UserDefaultArgs }, ExtArgs["result"]["account"]> export type AccountSelectScalar = { id?: boolean accountId?: boolean providerId?: boolean userId?: boolean accessToken?: boolean refreshToken?: boolean idToken?: boolean accessTokenExpiresAt?: boolean refreshTokenExpiresAt?: boolean scope?: boolean password?: boolean createdAt?: boolean updatedAt?: boolean } export type AccountOmit = runtime.Types.Extensions.GetOmit<"id" | "accountId" | "providerId" | "userId" | "accessToken" | "refreshToken" | "idToken" | "accessTokenExpiresAt" | "refreshTokenExpiresAt" | "scope" | "password" | "createdAt" | "updatedAt", ExtArgs["result"]["account"]> export type AccountInclude = { user?: boolean | Prisma.UserDefaultArgs } export type $AccountPayload = { name: "Account" objects: { user: Prisma.$UserPayload } scalars: runtime.Types.Extensions.GetPayloadResult<{ id: string accountId: string providerId: string userId: string accessToken: string | null refreshToken: string | null idToken: string | null accessTokenExpiresAt: Date | null refreshTokenExpiresAt: Date | null scope: string | null password: string | null createdAt: Date updatedAt: Date }, ExtArgs["result"]["account"]> composites: {} } export type AccountGetPayload = runtime.Types.Result.GetResult export type AccountCountArgs = Omit & { select?: AccountCountAggregateInputType | true } export interface AccountDelegate { [K: symbol]: { types: Prisma.TypeMap['model']['Account'], meta: { name: 'Account' } } /** * Find zero or one Account that matches the filter. * @param {AccountFindUniqueArgs} args - Arguments to find a Account * @example * // Get one Account * const account = await prisma.account.findUnique({ * where: { * // ... provide filter here * } * }) */ findUnique(args: Prisma.SelectSubset>): Prisma.Prisma__AccountClient, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find one Account that matches the filter or throw an error with `error.code='P2025'` * if no matches were found. * @param {AccountFindUniqueOrThrowArgs} args - Arguments to find a Account * @example * // Get one Account * const account = await prisma.account.findUniqueOrThrow({ * where: { * // ... provide filter here * } * }) */ findUniqueOrThrow(args: Prisma.SelectSubset>): Prisma.Prisma__AccountClient, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find the first Account 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 {AccountFindFirstArgs} args - Arguments to find a Account * @example * // Get one Account * const account = await prisma.account.findFirst({ * where: { * // ... provide filter here * } * }) */ findFirst(args?: Prisma.SelectSubset>): Prisma.Prisma__AccountClient, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> /** * Find the first Account 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 {AccountFindFirstOrThrowArgs} args - Arguments to find a Account * @example * // Get one Account * const account = await prisma.account.findFirstOrThrow({ * where: { * // ... provide filter here * } * }) */ findFirstOrThrow(args?: Prisma.SelectSubset>): Prisma.Prisma__AccountClient, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Find zero or more Accounts 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 {AccountFindManyArgs} args - Arguments to filter and select certain fields only. * @example * // Get all Accounts * const accounts = await prisma.account.findMany() * * // Get first 10 Accounts * const accounts = await prisma.account.findMany({ take: 10 }) * * // Only select the `id` * const accountWithIdOnly = await prisma.account.findMany({ select: { id: true } }) * */ findMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions>> /** * Create a Account. * @param {AccountCreateArgs} args - Arguments to create a Account. * @example * // Create one Account * const Account = await prisma.account.create({ * data: { * // ... data to create a Account * } * }) * */ create(args: Prisma.SelectSubset>): Prisma.Prisma__AccountClient, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Create many Accounts. * @param {AccountCreateManyArgs} args - Arguments to create many Accounts. * @example * // Create many Accounts * const account = await prisma.account.createMany({ * data: [ * // ... provide data here * ] * }) * */ createMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Delete a Account. * @param {AccountDeleteArgs} args - Arguments to delete one Account. * @example * // Delete one Account * const Account = await prisma.account.delete({ * where: { * // ... filter to delete one Account * } * }) * */ delete(args: Prisma.SelectSubset>): Prisma.Prisma__AccountClient, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Update one Account. * @param {AccountUpdateArgs} args - Arguments to update one Account. * @example * // Update one Account * const account = await prisma.account.update({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ update(args: Prisma.SelectSubset>): Prisma.Prisma__AccountClient, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Delete zero or more Accounts. * @param {AccountDeleteManyArgs} args - Arguments to filter Accounts to delete. * @example * // Delete a few Accounts * const { count } = await prisma.account.deleteMany({ * where: { * // ... provide filter here * } * }) * */ deleteMany(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Update zero or more Accounts. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {AccountUpdateManyArgs} args - Arguments to update one or more rows. * @example * // Update many Accounts * const account = await prisma.account.updateMany({ * where: { * // ... provide filter here * }, * data: { * // ... provide data here * } * }) * */ updateMany(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * Create or update one Account. * @param {AccountUpsertArgs} args - Arguments to update or create a Account. * @example * // Update or create a Account * const account = await prisma.account.upsert({ * create: { * // ... data to create a Account * }, * update: { * // ... in case it already exists, update * }, * where: { * // ... the filter for the Account we want to update * } * }) */ upsert(args: Prisma.SelectSubset>): Prisma.Prisma__AccountClient, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> /** * Count the number of Accounts. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {AccountCountArgs} args - Arguments to filter Accounts to count. * @example * // Count the number of Accounts * const count = await prisma.account.count({ * where: { * // ... the filter for the Accounts 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 Account. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {AccountAggregateArgs} 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 Account. * Note, that providing `undefined` is treated as the value not being there. * Read more here: https://pris.ly/d/null-undefined * @param {AccountGroupByArgs} 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 AccountGroupByArgs, HasSelectOrTake extends Prisma.Or< Prisma.Extends<'skip', Prisma.Keys>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: AccountGroupByArgs['orderBy'] } : { orderBy?: AccountGroupByArgs['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 ? GetAccountGroupByPayload : Prisma.PrismaPromise /** * Fields of the Account model */ readonly fields: AccountFieldRefs; } /** * The delegate class that acts as a "Promise-like" for Account. * 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__AccountClient extends Prisma.PrismaPromise { readonly [Symbol.toStringTag]: "PrismaPromise" user = {}>(args?: Prisma.Subset>): Prisma.Prisma__UserClient, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions> /** * 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 Account model */ export interface AccountFieldRefs { readonly id: Prisma.FieldRef<"Account", 'String'> readonly accountId: Prisma.FieldRef<"Account", 'String'> readonly providerId: Prisma.FieldRef<"Account", 'String'> readonly userId: Prisma.FieldRef<"Account", 'String'> readonly accessToken: Prisma.FieldRef<"Account", 'String'> readonly refreshToken: Prisma.FieldRef<"Account", 'String'> readonly idToken: Prisma.FieldRef<"Account", 'String'> readonly accessTokenExpiresAt: Prisma.FieldRef<"Account", 'DateTime'> readonly refreshTokenExpiresAt: Prisma.FieldRef<"Account", 'DateTime'> readonly scope: Prisma.FieldRef<"Account", 'String'> readonly password: Prisma.FieldRef<"Account", 'String'> readonly createdAt: Prisma.FieldRef<"Account", 'DateTime'> readonly updatedAt: Prisma.FieldRef<"Account", 'DateTime'> } // Custom InputTypes /** * Account findUnique */ export type AccountFindUniqueArgs = { /** * Select specific fields to fetch from the Account */ select?: Prisma.AccountSelect | null /** * Omit specific fields from the Account */ omit?: Prisma.AccountOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.AccountInclude | null /** * Filter, which Account to fetch. */ where: Prisma.AccountWhereUniqueInput } /** * Account findUniqueOrThrow */ export type AccountFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the Account */ select?: Prisma.AccountSelect | null /** * Omit specific fields from the Account */ omit?: Prisma.AccountOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.AccountInclude | null /** * Filter, which Account to fetch. */ where: Prisma.AccountWhereUniqueInput } /** * Account findFirst */ export type AccountFindFirstArgs = { /** * Select specific fields to fetch from the Account */ select?: Prisma.AccountSelect | null /** * Omit specific fields from the Account */ omit?: Prisma.AccountOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.AccountInclude | null /** * Filter, which Account to fetch. */ where?: Prisma.AccountWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Accounts to fetch. */ orderBy?: Prisma.AccountOrderByWithRelationInput | Prisma.AccountOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for Accounts. */ cursor?: Prisma.AccountWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Accounts 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` Accounts. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of Accounts. */ distinct?: Prisma.AccountScalarFieldEnum | Prisma.AccountScalarFieldEnum[] } /** * Account findFirstOrThrow */ export type AccountFindFirstOrThrowArgs = { /** * Select specific fields to fetch from the Account */ select?: Prisma.AccountSelect | null /** * Omit specific fields from the Account */ omit?: Prisma.AccountOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.AccountInclude | null /** * Filter, which Account to fetch. */ where?: Prisma.AccountWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Accounts to fetch. */ orderBy?: Prisma.AccountOrderByWithRelationInput | Prisma.AccountOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for searching for Accounts. */ cursor?: Prisma.AccountWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Accounts 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` Accounts. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of Accounts. */ distinct?: Prisma.AccountScalarFieldEnum | Prisma.AccountScalarFieldEnum[] } /** * Account findMany */ export type AccountFindManyArgs = { /** * Select specific fields to fetch from the Account */ select?: Prisma.AccountSelect | null /** * Omit specific fields from the Account */ omit?: Prisma.AccountOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.AccountInclude | null /** * Filter, which Accounts to fetch. */ where?: Prisma.AccountWhereInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} * * Determine the order of Accounts to fetch. */ orderBy?: Prisma.AccountOrderByWithRelationInput | Prisma.AccountOrderByWithRelationInput[] /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} * * Sets the position for listing Accounts. */ cursor?: Prisma.AccountWhereUniqueInput /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} * * Take `±n` Accounts 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` Accounts. */ skip?: number /** * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} * * Filter by unique combinations of Accounts. */ distinct?: Prisma.AccountScalarFieldEnum | Prisma.AccountScalarFieldEnum[] } /** * Account create */ export type AccountCreateArgs = { /** * Select specific fields to fetch from the Account */ select?: Prisma.AccountSelect | null /** * Omit specific fields from the Account */ omit?: Prisma.AccountOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.AccountInclude | null /** * The data needed to create a Account. */ data: Prisma.XOR } /** * Account createMany */ export type AccountCreateManyArgs = { /** * The data used to create many Accounts. */ data: Prisma.AccountCreateManyInput | Prisma.AccountCreateManyInput[] skipDuplicates?: boolean } /** * Account update */ export type AccountUpdateArgs = { /** * Select specific fields to fetch from the Account */ select?: Prisma.AccountSelect | null /** * Omit specific fields from the Account */ omit?: Prisma.AccountOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.AccountInclude | null /** * The data needed to update a Account. */ data: Prisma.XOR /** * Choose, which Account to update. */ where: Prisma.AccountWhereUniqueInput } /** * Account updateMany */ export type AccountUpdateManyArgs = { /** * The data used to update Accounts. */ data: Prisma.XOR /** * Filter which Accounts to update */ where?: Prisma.AccountWhereInput /** * Limit how many Accounts to update. */ limit?: number } /** * Account upsert */ export type AccountUpsertArgs = { /** * Select specific fields to fetch from the Account */ select?: Prisma.AccountSelect | null /** * Omit specific fields from the Account */ omit?: Prisma.AccountOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.AccountInclude | null /** * The filter to search for the Account to update in case it exists. */ where: Prisma.AccountWhereUniqueInput /** * In case the Account found by the `where` argument doesn't exist, create a new Account with this data. */ create: Prisma.XOR /** * In case the Account was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * Account delete */ export type AccountDeleteArgs = { /** * Select specific fields to fetch from the Account */ select?: Prisma.AccountSelect | null /** * Omit specific fields from the Account */ omit?: Prisma.AccountOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.AccountInclude | null /** * Filter which Account to delete. */ where: Prisma.AccountWhereUniqueInput } /** * Account deleteMany */ export type AccountDeleteManyArgs = { /** * Filter which Accounts to delete */ where?: Prisma.AccountWhereInput /** * Limit how many Accounts to delete. */ limit?: number } /** * Account without action */ export type AccountDefaultArgs = { /** * Select specific fields to fetch from the Account */ select?: Prisma.AccountSelect | null /** * Omit specific fields from the Account */ omit?: Prisma.AccountOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.AccountInclude | null }