Spaces:
Runtime error
Runtime error
| /* !!! This is code generated by Prisma. Do not edit directly. !!! */ | |
| /* eslint-disable */ | |
| // biome-ignore-all lint: generated file | |
| // @ts-nocheck | |
| /* | |
| * This file exports the `Users` model and its related types. | |
| * | |
| * 🟢 You can import this file directly. | |
| */ | |
| import type * as runtime from "@prisma/client/runtime/client" | |
| import type * as $Enums from "../enums.js" | |
| import type * as Prisma from "../internal/prismaNamespace.js" | |
| /** | |
| * Model Users | |
| * | |
| */ | |
| export type UsersModel = runtime.Types.Result.DefaultSelection<Prisma.$UsersPayload> | |
| export type AggregateUsers = { | |
| _count: UsersCountAggregateOutputType | null | |
| _min: UsersMinAggregateOutputType | null | |
| _max: UsersMaxAggregateOutputType | null | |
| } | |
| export type UsersMinAggregateOutputType = { | |
| id: string | null | |
| name: string | null | |
| email: string | null | |
| emailVerified: boolean | null | |
| image: string | null | |
| createdAt: Date | null | |
| updatedAt: Date | null | |
| role: string | null | |
| phoneNumber: string | null | |
| deletedAt: Date | null | |
| } | |
| export type UsersMaxAggregateOutputType = { | |
| id: string | null | |
| name: string | null | |
| email: string | null | |
| emailVerified: boolean | null | |
| image: string | null | |
| createdAt: Date | null | |
| updatedAt: Date | null | |
| role: string | null | |
| phoneNumber: string | null | |
| deletedAt: Date | null | |
| } | |
| export type UsersCountAggregateOutputType = { | |
| id: number | |
| name: number | |
| email: number | |
| emailVerified: number | |
| image: number | |
| createdAt: number | |
| updatedAt: number | |
| role: number | |
| phoneNumber: number | |
| deletedAt: number | |
| _all: number | |
| } | |
| export type UsersMinAggregateInputType = { | |
| id?: true | |
| name?: true | |
| email?: true | |
| emailVerified?: true | |
| image?: true | |
| createdAt?: true | |
| updatedAt?: true | |
| role?: true | |
| phoneNumber?: true | |
| deletedAt?: true | |
| } | |
| export type UsersMaxAggregateInputType = { | |
| id?: true | |
| name?: true | |
| email?: true | |
| emailVerified?: true | |
| image?: true | |
| createdAt?: true | |
| updatedAt?: true | |
| role?: true | |
| phoneNumber?: true | |
| deletedAt?: true | |
| } | |
| export type UsersCountAggregateInputType = { | |
| id?: true | |
| name?: true | |
| email?: true | |
| emailVerified?: true | |
| image?: true | |
| createdAt?: true | |
| updatedAt?: true | |
| role?: true | |
| phoneNumber?: true | |
| deletedAt?: true | |
| _all?: true | |
| } | |
| export type UsersAggregateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Filter which Users to aggregate. | |
| */ | |
| where?: Prisma.UsersWhereInput | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} | |
| * | |
| * Determine the order of Users to fetch. | |
| */ | |
| orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[] | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} | |
| * | |
| * Sets the start position | |
| */ | |
| cursor?: Prisma.UsersWhereUniqueInput | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} | |
| * | |
| * Take `±n` Users 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` Users. | |
| */ | |
| skip?: number | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} | |
| * | |
| * Count returned Users | |
| **/ | |
| _count?: true | UsersCountAggregateInputType | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} | |
| * | |
| * Select which fields to find the minimum value | |
| **/ | |
| _min?: UsersMinAggregateInputType | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs} | |
| * | |
| * Select which fields to find the maximum value | |
| **/ | |
| _max?: UsersMaxAggregateInputType | |
| } | |
| export type GetUsersAggregateType<T extends UsersAggregateArgs> = { | |
| [P in keyof T & keyof AggregateUsers]: P extends '_count' | 'count' | |
| ? T[P] extends true | |
| ? number | |
| : Prisma.GetScalarType<T[P], AggregateUsers[P]> | |
| : Prisma.GetScalarType<T[P], AggregateUsers[P]> | |
| } | |
| export type UsersGroupByArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| where?: Prisma.UsersWhereInput | |
| orderBy?: Prisma.UsersOrderByWithAggregationInput | Prisma.UsersOrderByWithAggregationInput[] | |
| by: Prisma.UsersScalarFieldEnum[] | Prisma.UsersScalarFieldEnum | |
| having?: Prisma.UsersScalarWhereWithAggregatesInput | |
| take?: number | |
| skip?: number | |
| _count?: UsersCountAggregateInputType | true | |
| _min?: UsersMinAggregateInputType | |
| _max?: UsersMaxAggregateInputType | |
| } | |
| export type UsersGroupByOutputType = { | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified: boolean | |
| image: string | null | |
| createdAt: Date | |
| updatedAt: Date | |
| role: string | |
| phoneNumber: string | null | |
| deletedAt: Date | null | |
| _count: UsersCountAggregateOutputType | null | |
| _min: UsersMinAggregateOutputType | null | |
| _max: UsersMaxAggregateOutputType | null | |
| } | |
| type GetUsersGroupByPayload<T extends UsersGroupByArgs> = Prisma.PrismaPromise< | |
| Array< | |
| Prisma.PickEnumerable<UsersGroupByOutputType, T['by']> & | |
| { | |
| [P in ((keyof T) & (keyof UsersGroupByOutputType))]: P extends '_count' | |
| ? T[P] extends boolean | |
| ? number | |
| : Prisma.GetScalarType<T[P], UsersGroupByOutputType[P]> | |
| : Prisma.GetScalarType<T[P], UsersGroupByOutputType[P]> | |
| } | |
| > | |
| > | |
| export type UsersWhereInput = { | |
| AND?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[] | |
| OR?: Prisma.UsersWhereInput[] | |
| NOT?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[] | |
| id?: Prisma.StringFilter<"Users"> | string | |
| name?: Prisma.StringFilter<"Users"> | string | |
| email?: Prisma.StringFilter<"Users"> | string | |
| emailVerified?: Prisma.BoolFilter<"Users"> | boolean | |
| image?: Prisma.StringNullableFilter<"Users"> | string | null | |
| createdAt?: Prisma.DateTimeFilter<"Users"> | Date | string | |
| updatedAt?: Prisma.DateTimeFilter<"Users"> | Date | string | |
| role?: Prisma.StringFilter<"Users"> | string | |
| phoneNumber?: Prisma.StringNullableFilter<"Users"> | string | null | |
| deletedAt?: Prisma.DateTimeNullableFilter<"Users"> | Date | string | null | |
| sessions?: Prisma.SessionsListRelationFilter | |
| accounts?: Prisma.AccountsListRelationFilter | |
| mentorApplication?: Prisma.XOR<Prisma.MentorApplicationsNullableScalarRelationFilter, Prisma.MentorApplicationsWhereInput> | null | |
| } | |
| export type UsersOrderByWithRelationInput = { | |
| id?: Prisma.SortOrder | |
| name?: Prisma.SortOrder | |
| email?: Prisma.SortOrder | |
| emailVerified?: Prisma.SortOrder | |
| image?: Prisma.SortOrderInput | Prisma.SortOrder | |
| createdAt?: Prisma.SortOrder | |
| updatedAt?: Prisma.SortOrder | |
| role?: Prisma.SortOrder | |
| phoneNumber?: Prisma.SortOrderInput | Prisma.SortOrder | |
| deletedAt?: Prisma.SortOrderInput | Prisma.SortOrder | |
| sessions?: Prisma.SessionsOrderByRelationAggregateInput | |
| accounts?: Prisma.AccountsOrderByRelationAggregateInput | |
| mentorApplication?: Prisma.MentorApplicationsOrderByWithRelationInput | |
| } | |
| export type UsersWhereUniqueInput = Prisma.AtLeast<{ | |
| id?: string | |
| email?: string | |
| AND?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[] | |
| OR?: Prisma.UsersWhereInput[] | |
| NOT?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[] | |
| name?: Prisma.StringFilter<"Users"> | string | |
| emailVerified?: Prisma.BoolFilter<"Users"> | boolean | |
| image?: Prisma.StringNullableFilter<"Users"> | string | null | |
| createdAt?: Prisma.DateTimeFilter<"Users"> | Date | string | |
| updatedAt?: Prisma.DateTimeFilter<"Users"> | Date | string | |
| role?: Prisma.StringFilter<"Users"> | string | |
| phoneNumber?: Prisma.StringNullableFilter<"Users"> | string | null | |
| deletedAt?: Prisma.DateTimeNullableFilter<"Users"> | Date | string | null | |
| sessions?: Prisma.SessionsListRelationFilter | |
| accounts?: Prisma.AccountsListRelationFilter | |
| mentorApplication?: Prisma.XOR<Prisma.MentorApplicationsNullableScalarRelationFilter, Prisma.MentorApplicationsWhereInput> | null | |
| }, "id" | "email"> | |
| export type UsersOrderByWithAggregationInput = { | |
| id?: Prisma.SortOrder | |
| name?: Prisma.SortOrder | |
| email?: Prisma.SortOrder | |
| emailVerified?: Prisma.SortOrder | |
| image?: Prisma.SortOrderInput | Prisma.SortOrder | |
| createdAt?: Prisma.SortOrder | |
| updatedAt?: Prisma.SortOrder | |
| role?: Prisma.SortOrder | |
| phoneNumber?: Prisma.SortOrderInput | Prisma.SortOrder | |
| deletedAt?: Prisma.SortOrderInput | Prisma.SortOrder | |
| _count?: Prisma.UsersCountOrderByAggregateInput | |
| _max?: Prisma.UsersMaxOrderByAggregateInput | |
| _min?: Prisma.UsersMinOrderByAggregateInput | |
| } | |
| export type UsersScalarWhereWithAggregatesInput = { | |
| AND?: Prisma.UsersScalarWhereWithAggregatesInput | Prisma.UsersScalarWhereWithAggregatesInput[] | |
| OR?: Prisma.UsersScalarWhereWithAggregatesInput[] | |
| NOT?: Prisma.UsersScalarWhereWithAggregatesInput | Prisma.UsersScalarWhereWithAggregatesInput[] | |
| id?: Prisma.StringWithAggregatesFilter<"Users"> | string | |
| name?: Prisma.StringWithAggregatesFilter<"Users"> | string | |
| email?: Prisma.StringWithAggregatesFilter<"Users"> | string | |
| emailVerified?: Prisma.BoolWithAggregatesFilter<"Users"> | boolean | |
| image?: Prisma.StringNullableWithAggregatesFilter<"Users"> | string | null | |
| createdAt?: Prisma.DateTimeWithAggregatesFilter<"Users"> | Date | string | |
| updatedAt?: Prisma.DateTimeWithAggregatesFilter<"Users"> | Date | string | |
| role?: Prisma.StringWithAggregatesFilter<"Users"> | string | |
| phoneNumber?: Prisma.StringNullableWithAggregatesFilter<"Users"> | string | null | |
| deletedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"Users"> | Date | string | null | |
| } | |
| export type UsersCreateInput = { | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified?: boolean | |
| image?: string | null | |
| createdAt?: Date | string | |
| updatedAt?: Date | string | |
| role?: string | |
| phoneNumber?: string | null | |
| deletedAt?: Date | string | null | |
| sessions?: Prisma.SessionsCreateNestedManyWithoutUsersInput | |
| accounts?: Prisma.AccountsCreateNestedManyWithoutUsersInput | |
| mentorApplication?: Prisma.MentorApplicationsCreateNestedOneWithoutUserInput | |
| } | |
| export type UsersUncheckedCreateInput = { | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified?: boolean | |
| image?: string | null | |
| createdAt?: Date | string | |
| updatedAt?: Date | string | |
| role?: string | |
| phoneNumber?: string | null | |
| deletedAt?: Date | string | null | |
| sessions?: Prisma.SessionsUncheckedCreateNestedManyWithoutUsersInput | |
| accounts?: Prisma.AccountsUncheckedCreateNestedManyWithoutUsersInput | |
| mentorApplication?: Prisma.MentorApplicationsUncheckedCreateNestedOneWithoutUserInput | |
| } | |
| export type UsersUpdateInput = { | |
| id?: Prisma.StringFieldUpdateOperationsInput | string | |
| name?: Prisma.StringFieldUpdateOperationsInput | string | |
| email?: Prisma.StringFieldUpdateOperationsInput | string | |
| emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean | |
| image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| role?: Prisma.StringFieldUpdateOperationsInput | string | |
| phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null | |
| sessions?: Prisma.SessionsUpdateManyWithoutUsersNestedInput | |
| accounts?: Prisma.AccountsUpdateManyWithoutUsersNestedInput | |
| mentorApplication?: Prisma.MentorApplicationsUpdateOneWithoutUserNestedInput | |
| } | |
| export type UsersUncheckedUpdateInput = { | |
| id?: Prisma.StringFieldUpdateOperationsInput | string | |
| name?: Prisma.StringFieldUpdateOperationsInput | string | |
| email?: Prisma.StringFieldUpdateOperationsInput | string | |
| emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean | |
| image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| role?: Prisma.StringFieldUpdateOperationsInput | string | |
| phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null | |
| sessions?: Prisma.SessionsUncheckedUpdateManyWithoutUsersNestedInput | |
| accounts?: Prisma.AccountsUncheckedUpdateManyWithoutUsersNestedInput | |
| mentorApplication?: Prisma.MentorApplicationsUncheckedUpdateOneWithoutUserNestedInput | |
| } | |
| export type UsersCreateManyInput = { | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified?: boolean | |
| image?: string | null | |
| createdAt?: Date | string | |
| updatedAt?: Date | string | |
| role?: string | |
| phoneNumber?: string | null | |
| deletedAt?: Date | string | null | |
| } | |
| export type UsersUpdateManyMutationInput = { | |
| id?: Prisma.StringFieldUpdateOperationsInput | string | |
| name?: Prisma.StringFieldUpdateOperationsInput | string | |
| email?: Prisma.StringFieldUpdateOperationsInput | string | |
| emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean | |
| image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| role?: Prisma.StringFieldUpdateOperationsInput | string | |
| phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null | |
| } | |
| export type UsersUncheckedUpdateManyInput = { | |
| id?: Prisma.StringFieldUpdateOperationsInput | string | |
| name?: Prisma.StringFieldUpdateOperationsInput | string | |
| email?: Prisma.StringFieldUpdateOperationsInput | string | |
| emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean | |
| image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| role?: Prisma.StringFieldUpdateOperationsInput | string | |
| phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null | |
| } | |
| export type UsersCountOrderByAggregateInput = { | |
| id?: Prisma.SortOrder | |
| name?: Prisma.SortOrder | |
| email?: Prisma.SortOrder | |
| emailVerified?: Prisma.SortOrder | |
| image?: Prisma.SortOrder | |
| createdAt?: Prisma.SortOrder | |
| updatedAt?: Prisma.SortOrder | |
| role?: Prisma.SortOrder | |
| phoneNumber?: Prisma.SortOrder | |
| deletedAt?: Prisma.SortOrder | |
| } | |
| export type UsersMaxOrderByAggregateInput = { | |
| id?: Prisma.SortOrder | |
| name?: Prisma.SortOrder | |
| email?: Prisma.SortOrder | |
| emailVerified?: Prisma.SortOrder | |
| image?: Prisma.SortOrder | |
| createdAt?: Prisma.SortOrder | |
| updatedAt?: Prisma.SortOrder | |
| role?: Prisma.SortOrder | |
| phoneNumber?: Prisma.SortOrder | |
| deletedAt?: Prisma.SortOrder | |
| } | |
| export type UsersMinOrderByAggregateInput = { | |
| id?: Prisma.SortOrder | |
| name?: Prisma.SortOrder | |
| email?: Prisma.SortOrder | |
| emailVerified?: Prisma.SortOrder | |
| image?: Prisma.SortOrder | |
| createdAt?: Prisma.SortOrder | |
| updatedAt?: Prisma.SortOrder | |
| role?: Prisma.SortOrder | |
| phoneNumber?: Prisma.SortOrder | |
| deletedAt?: Prisma.SortOrder | |
| } | |
| export type UsersScalarRelationFilter = { | |
| is?: Prisma.UsersWhereInput | |
| isNot?: Prisma.UsersWhereInput | |
| } | |
| export type StringFieldUpdateOperationsInput = { | |
| set?: string | |
| } | |
| export type BoolFieldUpdateOperationsInput = { | |
| set?: boolean | |
| } | |
| export type NullableStringFieldUpdateOperationsInput = { | |
| set?: string | null | |
| } | |
| export type DateTimeFieldUpdateOperationsInput = { | |
| set?: Date | string | |
| } | |
| export type NullableDateTimeFieldUpdateOperationsInput = { | |
| set?: Date | string | null | |
| } | |
| export type UsersCreateNestedOneWithoutSessionsInput = { | |
| create?: Prisma.XOR<Prisma.UsersCreateWithoutSessionsInput, Prisma.UsersUncheckedCreateWithoutSessionsInput> | |
| connectOrCreate?: Prisma.UsersCreateOrConnectWithoutSessionsInput | |
| connect?: Prisma.UsersWhereUniqueInput | |
| } | |
| export type UsersUpdateOneRequiredWithoutSessionsNestedInput = { | |
| create?: Prisma.XOR<Prisma.UsersCreateWithoutSessionsInput, Prisma.UsersUncheckedCreateWithoutSessionsInput> | |
| connectOrCreate?: Prisma.UsersCreateOrConnectWithoutSessionsInput | |
| upsert?: Prisma.UsersUpsertWithoutSessionsInput | |
| connect?: Prisma.UsersWhereUniqueInput | |
| update?: Prisma.XOR<Prisma.XOR<Prisma.UsersUpdateToOneWithWhereWithoutSessionsInput, Prisma.UsersUpdateWithoutSessionsInput>, Prisma.UsersUncheckedUpdateWithoutSessionsInput> | |
| } | |
| export type UsersCreateNestedOneWithoutAccountsInput = { | |
| create?: Prisma.XOR<Prisma.UsersCreateWithoutAccountsInput, Prisma.UsersUncheckedCreateWithoutAccountsInput> | |
| connectOrCreate?: Prisma.UsersCreateOrConnectWithoutAccountsInput | |
| connect?: Prisma.UsersWhereUniqueInput | |
| } | |
| export type UsersUpdateOneRequiredWithoutAccountsNestedInput = { | |
| create?: Prisma.XOR<Prisma.UsersCreateWithoutAccountsInput, Prisma.UsersUncheckedCreateWithoutAccountsInput> | |
| connectOrCreate?: Prisma.UsersCreateOrConnectWithoutAccountsInput | |
| upsert?: Prisma.UsersUpsertWithoutAccountsInput | |
| connect?: Prisma.UsersWhereUniqueInput | |
| update?: Prisma.XOR<Prisma.XOR<Prisma.UsersUpdateToOneWithWhereWithoutAccountsInput, Prisma.UsersUpdateWithoutAccountsInput>, Prisma.UsersUncheckedUpdateWithoutAccountsInput> | |
| } | |
| export type UsersCreateNestedOneWithoutMentorApplicationInput = { | |
| create?: Prisma.XOR<Prisma.UsersCreateWithoutMentorApplicationInput, Prisma.UsersUncheckedCreateWithoutMentorApplicationInput> | |
| connectOrCreate?: Prisma.UsersCreateOrConnectWithoutMentorApplicationInput | |
| connect?: Prisma.UsersWhereUniqueInput | |
| } | |
| export type UsersUpdateOneRequiredWithoutMentorApplicationNestedInput = { | |
| create?: Prisma.XOR<Prisma.UsersCreateWithoutMentorApplicationInput, Prisma.UsersUncheckedCreateWithoutMentorApplicationInput> | |
| connectOrCreate?: Prisma.UsersCreateOrConnectWithoutMentorApplicationInput | |
| upsert?: Prisma.UsersUpsertWithoutMentorApplicationInput | |
| connect?: Prisma.UsersWhereUniqueInput | |
| update?: Prisma.XOR<Prisma.XOR<Prisma.UsersUpdateToOneWithWhereWithoutMentorApplicationInput, Prisma.UsersUpdateWithoutMentorApplicationInput>, Prisma.UsersUncheckedUpdateWithoutMentorApplicationInput> | |
| } | |
| export type UsersCreateWithoutSessionsInput = { | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified?: boolean | |
| image?: string | null | |
| createdAt?: Date | string | |
| updatedAt?: Date | string | |
| role?: string | |
| phoneNumber?: string | null | |
| deletedAt?: Date | string | null | |
| accounts?: Prisma.AccountsCreateNestedManyWithoutUsersInput | |
| mentorApplication?: Prisma.MentorApplicationsCreateNestedOneWithoutUserInput | |
| } | |
| export type UsersUncheckedCreateWithoutSessionsInput = { | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified?: boolean | |
| image?: string | null | |
| createdAt?: Date | string | |
| updatedAt?: Date | string | |
| role?: string | |
| phoneNumber?: string | null | |
| deletedAt?: Date | string | null | |
| accounts?: Prisma.AccountsUncheckedCreateNestedManyWithoutUsersInput | |
| mentorApplication?: Prisma.MentorApplicationsUncheckedCreateNestedOneWithoutUserInput | |
| } | |
| export type UsersCreateOrConnectWithoutSessionsInput = { | |
| where: Prisma.UsersWhereUniqueInput | |
| create: Prisma.XOR<Prisma.UsersCreateWithoutSessionsInput, Prisma.UsersUncheckedCreateWithoutSessionsInput> | |
| } | |
| export type UsersUpsertWithoutSessionsInput = { | |
| update: Prisma.XOR<Prisma.UsersUpdateWithoutSessionsInput, Prisma.UsersUncheckedUpdateWithoutSessionsInput> | |
| create: Prisma.XOR<Prisma.UsersCreateWithoutSessionsInput, Prisma.UsersUncheckedCreateWithoutSessionsInput> | |
| where?: Prisma.UsersWhereInput | |
| } | |
| export type UsersUpdateToOneWithWhereWithoutSessionsInput = { | |
| where?: Prisma.UsersWhereInput | |
| data: Prisma.XOR<Prisma.UsersUpdateWithoutSessionsInput, Prisma.UsersUncheckedUpdateWithoutSessionsInput> | |
| } | |
| export type UsersUpdateWithoutSessionsInput = { | |
| id?: Prisma.StringFieldUpdateOperationsInput | string | |
| name?: Prisma.StringFieldUpdateOperationsInput | string | |
| email?: Prisma.StringFieldUpdateOperationsInput | string | |
| emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean | |
| image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| role?: Prisma.StringFieldUpdateOperationsInput | string | |
| phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null | |
| accounts?: Prisma.AccountsUpdateManyWithoutUsersNestedInput | |
| mentorApplication?: Prisma.MentorApplicationsUpdateOneWithoutUserNestedInput | |
| } | |
| export type UsersUncheckedUpdateWithoutSessionsInput = { | |
| id?: Prisma.StringFieldUpdateOperationsInput | string | |
| name?: Prisma.StringFieldUpdateOperationsInput | string | |
| email?: Prisma.StringFieldUpdateOperationsInput | string | |
| emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean | |
| image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| role?: Prisma.StringFieldUpdateOperationsInput | string | |
| phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null | |
| accounts?: Prisma.AccountsUncheckedUpdateManyWithoutUsersNestedInput | |
| mentorApplication?: Prisma.MentorApplicationsUncheckedUpdateOneWithoutUserNestedInput | |
| } | |
| export type UsersCreateWithoutAccountsInput = { | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified?: boolean | |
| image?: string | null | |
| createdAt?: Date | string | |
| updatedAt?: Date | string | |
| role?: string | |
| phoneNumber?: string | null | |
| deletedAt?: Date | string | null | |
| sessions?: Prisma.SessionsCreateNestedManyWithoutUsersInput | |
| mentorApplication?: Prisma.MentorApplicationsCreateNestedOneWithoutUserInput | |
| } | |
| export type UsersUncheckedCreateWithoutAccountsInput = { | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified?: boolean | |
| image?: string | null | |
| createdAt?: Date | string | |
| updatedAt?: Date | string | |
| role?: string | |
| phoneNumber?: string | null | |
| deletedAt?: Date | string | null | |
| sessions?: Prisma.SessionsUncheckedCreateNestedManyWithoutUsersInput | |
| mentorApplication?: Prisma.MentorApplicationsUncheckedCreateNestedOneWithoutUserInput | |
| } | |
| export type UsersCreateOrConnectWithoutAccountsInput = { | |
| where: Prisma.UsersWhereUniqueInput | |
| create: Prisma.XOR<Prisma.UsersCreateWithoutAccountsInput, Prisma.UsersUncheckedCreateWithoutAccountsInput> | |
| } | |
| export type UsersUpsertWithoutAccountsInput = { | |
| update: Prisma.XOR<Prisma.UsersUpdateWithoutAccountsInput, Prisma.UsersUncheckedUpdateWithoutAccountsInput> | |
| create: Prisma.XOR<Prisma.UsersCreateWithoutAccountsInput, Prisma.UsersUncheckedCreateWithoutAccountsInput> | |
| where?: Prisma.UsersWhereInput | |
| } | |
| export type UsersUpdateToOneWithWhereWithoutAccountsInput = { | |
| where?: Prisma.UsersWhereInput | |
| data: Prisma.XOR<Prisma.UsersUpdateWithoutAccountsInput, Prisma.UsersUncheckedUpdateWithoutAccountsInput> | |
| } | |
| export type UsersUpdateWithoutAccountsInput = { | |
| id?: Prisma.StringFieldUpdateOperationsInput | string | |
| name?: Prisma.StringFieldUpdateOperationsInput | string | |
| email?: Prisma.StringFieldUpdateOperationsInput | string | |
| emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean | |
| image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| role?: Prisma.StringFieldUpdateOperationsInput | string | |
| phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null | |
| sessions?: Prisma.SessionsUpdateManyWithoutUsersNestedInput | |
| mentorApplication?: Prisma.MentorApplicationsUpdateOneWithoutUserNestedInput | |
| } | |
| export type UsersUncheckedUpdateWithoutAccountsInput = { | |
| id?: Prisma.StringFieldUpdateOperationsInput | string | |
| name?: Prisma.StringFieldUpdateOperationsInput | string | |
| email?: Prisma.StringFieldUpdateOperationsInput | string | |
| emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean | |
| image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| role?: Prisma.StringFieldUpdateOperationsInput | string | |
| phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null | |
| sessions?: Prisma.SessionsUncheckedUpdateManyWithoutUsersNestedInput | |
| mentorApplication?: Prisma.MentorApplicationsUncheckedUpdateOneWithoutUserNestedInput | |
| } | |
| export type UsersCreateWithoutMentorApplicationInput = { | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified?: boolean | |
| image?: string | null | |
| createdAt?: Date | string | |
| updatedAt?: Date | string | |
| role?: string | |
| phoneNumber?: string | null | |
| deletedAt?: Date | string | null | |
| sessions?: Prisma.SessionsCreateNestedManyWithoutUsersInput | |
| accounts?: Prisma.AccountsCreateNestedManyWithoutUsersInput | |
| } | |
| export type UsersUncheckedCreateWithoutMentorApplicationInput = { | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified?: boolean | |
| image?: string | null | |
| createdAt?: Date | string | |
| updatedAt?: Date | string | |
| role?: string | |
| phoneNumber?: string | null | |
| deletedAt?: Date | string | null | |
| sessions?: Prisma.SessionsUncheckedCreateNestedManyWithoutUsersInput | |
| accounts?: Prisma.AccountsUncheckedCreateNestedManyWithoutUsersInput | |
| } | |
| export type UsersCreateOrConnectWithoutMentorApplicationInput = { | |
| where: Prisma.UsersWhereUniqueInput | |
| create: Prisma.XOR<Prisma.UsersCreateWithoutMentorApplicationInput, Prisma.UsersUncheckedCreateWithoutMentorApplicationInput> | |
| } | |
| export type UsersUpsertWithoutMentorApplicationInput = { | |
| update: Prisma.XOR<Prisma.UsersUpdateWithoutMentorApplicationInput, Prisma.UsersUncheckedUpdateWithoutMentorApplicationInput> | |
| create: Prisma.XOR<Prisma.UsersCreateWithoutMentorApplicationInput, Prisma.UsersUncheckedCreateWithoutMentorApplicationInput> | |
| where?: Prisma.UsersWhereInput | |
| } | |
| export type UsersUpdateToOneWithWhereWithoutMentorApplicationInput = { | |
| where?: Prisma.UsersWhereInput | |
| data: Prisma.XOR<Prisma.UsersUpdateWithoutMentorApplicationInput, Prisma.UsersUncheckedUpdateWithoutMentorApplicationInput> | |
| } | |
| export type UsersUpdateWithoutMentorApplicationInput = { | |
| id?: Prisma.StringFieldUpdateOperationsInput | string | |
| name?: Prisma.StringFieldUpdateOperationsInput | string | |
| email?: Prisma.StringFieldUpdateOperationsInput | string | |
| emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean | |
| image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| role?: Prisma.StringFieldUpdateOperationsInput | string | |
| phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null | |
| sessions?: Prisma.SessionsUpdateManyWithoutUsersNestedInput | |
| accounts?: Prisma.AccountsUpdateManyWithoutUsersNestedInput | |
| } | |
| export type UsersUncheckedUpdateWithoutMentorApplicationInput = { | |
| id?: Prisma.StringFieldUpdateOperationsInput | string | |
| name?: Prisma.StringFieldUpdateOperationsInput | string | |
| email?: Prisma.StringFieldUpdateOperationsInput | string | |
| emailVerified?: Prisma.BoolFieldUpdateOperationsInput | boolean | |
| image?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string | |
| role?: Prisma.StringFieldUpdateOperationsInput | string | |
| phoneNumber?: Prisma.NullableStringFieldUpdateOperationsInput | string | null | |
| deletedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null | |
| sessions?: Prisma.SessionsUncheckedUpdateManyWithoutUsersNestedInput | |
| accounts?: Prisma.AccountsUncheckedUpdateManyWithoutUsersNestedInput | |
| } | |
| /** | |
| * Count Type UsersCountOutputType | |
| */ | |
| export type UsersCountOutputType = { | |
| sessions: number | |
| accounts: number | |
| } | |
| export type UsersCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| sessions?: boolean | UsersCountOutputTypeCountSessionsArgs | |
| accounts?: boolean | UsersCountOutputTypeCountAccountsArgs | |
| } | |
| /** | |
| * UsersCountOutputType without action | |
| */ | |
| export type UsersCountOutputTypeDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the UsersCountOutputType | |
| */ | |
| select?: Prisma.UsersCountOutputTypeSelect<ExtArgs> | null | |
| } | |
| /** | |
| * UsersCountOutputType without action | |
| */ | |
| export type UsersCountOutputTypeCountSessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| where?: Prisma.SessionsWhereInput | |
| } | |
| /** | |
| * UsersCountOutputType without action | |
| */ | |
| export type UsersCountOutputTypeCountAccountsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| where?: Prisma.AccountsWhereInput | |
| } | |
| export type UsersSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{ | |
| id?: boolean | |
| name?: boolean | |
| email?: boolean | |
| emailVerified?: boolean | |
| image?: boolean | |
| createdAt?: boolean | |
| updatedAt?: boolean | |
| role?: boolean | |
| phoneNumber?: boolean | |
| deletedAt?: boolean | |
| sessions?: boolean | Prisma.Users$sessionsArgs<ExtArgs> | |
| accounts?: boolean | Prisma.Users$accountsArgs<ExtArgs> | |
| mentorApplication?: boolean | Prisma.Users$mentorApplicationArgs<ExtArgs> | |
| _count?: boolean | Prisma.UsersCountOutputTypeDefaultArgs<ExtArgs> | |
| }, ExtArgs["result"]["users"]> | |
| export type UsersSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{ | |
| id?: boolean | |
| name?: boolean | |
| email?: boolean | |
| emailVerified?: boolean | |
| image?: boolean | |
| createdAt?: boolean | |
| updatedAt?: boolean | |
| role?: boolean | |
| phoneNumber?: boolean | |
| deletedAt?: boolean | |
| }, ExtArgs["result"]["users"]> | |
| export type UsersSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{ | |
| id?: boolean | |
| name?: boolean | |
| email?: boolean | |
| emailVerified?: boolean | |
| image?: boolean | |
| createdAt?: boolean | |
| updatedAt?: boolean | |
| role?: boolean | |
| phoneNumber?: boolean | |
| deletedAt?: boolean | |
| }, ExtArgs["result"]["users"]> | |
| export type UsersSelectScalar = { | |
| id?: boolean | |
| name?: boolean | |
| email?: boolean | |
| emailVerified?: boolean | |
| image?: boolean | |
| createdAt?: boolean | |
| updatedAt?: boolean | |
| role?: boolean | |
| phoneNumber?: boolean | |
| deletedAt?: boolean | |
| } | |
| export type UsersOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "name" | "email" | "emailVerified" | "image" | "createdAt" | "updatedAt" | "role" | "phoneNumber" | "deletedAt", ExtArgs["result"]["users"]> | |
| export type UsersInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| sessions?: boolean | Prisma.Users$sessionsArgs<ExtArgs> | |
| accounts?: boolean | Prisma.Users$accountsArgs<ExtArgs> | |
| mentorApplication?: boolean | Prisma.Users$mentorApplicationArgs<ExtArgs> | |
| _count?: boolean | Prisma.UsersCountOutputTypeDefaultArgs<ExtArgs> | |
| } | |
| export type UsersIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {} | |
| export type UsersIncludeUpdateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {} | |
| export type $UsersPayload<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| name: "Users" | |
| objects: { | |
| sessions: Prisma.$SessionsPayload<ExtArgs>[] | |
| accounts: Prisma.$AccountsPayload<ExtArgs>[] | |
| mentorApplication: Prisma.$MentorApplicationsPayload<ExtArgs> | null | |
| } | |
| scalars: runtime.Types.Extensions.GetPayloadResult<{ | |
| id: string | |
| name: string | |
| email: string | |
| emailVerified: boolean | |
| image: string | null | |
| createdAt: Date | |
| updatedAt: Date | |
| role: string | |
| phoneNumber: string | null | |
| deletedAt: Date | null | |
| }, ExtArgs["result"]["users"]> | |
| composites: {} | |
| } | |
| export type UsersGetPayload<S extends boolean | null | undefined | UsersDefaultArgs> = runtime.Types.Result.GetResult<Prisma.$UsersPayload, S> | |
| export type UsersCountArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = | |
| Omit<UsersFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & { | |
| select?: UsersCountAggregateInputType | true | |
| } | |
| export interface UsersDelegate<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> { | |
| [K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['Users'], meta: { name: 'Users' } } | |
| /** | |
| * Find zero or one Users that matches the filter. | |
| * @param {UsersFindUniqueArgs} args - Arguments to find a Users | |
| * @example | |
| * // Get one Users | |
| * const users = await prisma.users.findUnique({ | |
| * where: { | |
| * // ... provide filter here | |
| * } | |
| * }) | |
| */ | |
| findUnique<T extends UsersFindUniqueArgs>(args: Prisma.SelectSubset<T, UsersFindUniqueArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> | |
| /** | |
| * Find one Users that matches the filter or throw an error with `error.code='P2025'` | |
| * if no matches were found. | |
| * @param {UsersFindUniqueOrThrowArgs} args - Arguments to find a Users | |
| * @example | |
| * // Get one Users | |
| * const users = await prisma.users.findUniqueOrThrow({ | |
| * where: { | |
| * // ... provide filter here | |
| * } | |
| * }) | |
| */ | |
| findUniqueOrThrow<T extends UsersFindUniqueOrThrowArgs>(args: Prisma.SelectSubset<T, UsersFindUniqueOrThrowArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> | |
| /** | |
| * Find the first Users 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 {UsersFindFirstArgs} args - Arguments to find a Users | |
| * @example | |
| * // Get one Users | |
| * const users = await prisma.users.findFirst({ | |
| * where: { | |
| * // ... provide filter here | |
| * } | |
| * }) | |
| */ | |
| findFirst<T extends UsersFindFirstArgs>(args?: Prisma.SelectSubset<T, UsersFindFirstArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> | |
| /** | |
| * Find the first Users 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 {UsersFindFirstOrThrowArgs} args - Arguments to find a Users | |
| * @example | |
| * // Get one Users | |
| * const users = await prisma.users.findFirstOrThrow({ | |
| * where: { | |
| * // ... provide filter here | |
| * } | |
| * }) | |
| */ | |
| findFirstOrThrow<T extends UsersFindFirstOrThrowArgs>(args?: Prisma.SelectSubset<T, UsersFindFirstOrThrowArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> | |
| /** | |
| * Find zero or more Users 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 {UsersFindManyArgs} args - Arguments to filter and select certain fields only. | |
| * @example | |
| * // Get all Users | |
| * const users = await prisma.users.findMany() | |
| * | |
| * // Get first 10 Users | |
| * const users = await prisma.users.findMany({ take: 10 }) | |
| * | |
| * // Only select the `id` | |
| * const usersWithIdOnly = await prisma.users.findMany({ select: { id: true } }) | |
| * | |
| */ | |
| findMany<T extends UsersFindManyArgs>(args?: Prisma.SelectSubset<T, UsersFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>> | |
| /** | |
| * Create a Users. | |
| * @param {UsersCreateArgs} args - Arguments to create a Users. | |
| * @example | |
| * // Create one Users | |
| * const Users = await prisma.users.create({ | |
| * data: { | |
| * // ... data to create a Users | |
| * } | |
| * }) | |
| * | |
| */ | |
| create<T extends UsersCreateArgs>(args: Prisma.SelectSubset<T, UsersCreateArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> | |
| /** | |
| * Create many Users. | |
| * @param {UsersCreateManyArgs} args - Arguments to create many Users. | |
| * @example | |
| * // Create many Users | |
| * const users = await prisma.users.createMany({ | |
| * data: [ | |
| * // ... provide data here | |
| * ] | |
| * }) | |
| * | |
| */ | |
| createMany<T extends UsersCreateManyArgs>(args?: Prisma.SelectSubset<T, UsersCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload> | |
| /** | |
| * Create many Users and returns the data saved in the database. | |
| * @param {UsersCreateManyAndReturnArgs} args - Arguments to create many Users. | |
| * @example | |
| * // Create many Users | |
| * const users = await prisma.users.createManyAndReturn({ | |
| * data: [ | |
| * // ... provide data here | |
| * ] | |
| * }) | |
| * | |
| * // Create many Users and only return the `id` | |
| * const usersWithIdOnly = await prisma.users.createManyAndReturn({ | |
| * select: { id: true }, | |
| * data: [ | |
| * // ... provide data here | |
| * ] | |
| * }) | |
| * Note, that providing `undefined` is treated as the value not being there. | |
| * Read more here: https://pris.ly/d/null-undefined | |
| * | |
| */ | |
| createManyAndReturn<T extends UsersCreateManyAndReturnArgs>(args?: Prisma.SelectSubset<T, UsersCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>> | |
| /** | |
| * Delete a Users. | |
| * @param {UsersDeleteArgs} args - Arguments to delete one Users. | |
| * @example | |
| * // Delete one Users | |
| * const Users = await prisma.users.delete({ | |
| * where: { | |
| * // ... filter to delete one Users | |
| * } | |
| * }) | |
| * | |
| */ | |
| delete<T extends UsersDeleteArgs>(args: Prisma.SelectSubset<T, UsersDeleteArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> | |
| /** | |
| * Update one Users. | |
| * @param {UsersUpdateArgs} args - Arguments to update one Users. | |
| * @example | |
| * // Update one Users | |
| * const users = await prisma.users.update({ | |
| * where: { | |
| * // ... provide filter here | |
| * }, | |
| * data: { | |
| * // ... provide data here | |
| * } | |
| * }) | |
| * | |
| */ | |
| update<T extends UsersUpdateArgs>(args: Prisma.SelectSubset<T, UsersUpdateArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> | |
| /** | |
| * Delete zero or more Users. | |
| * @param {UsersDeleteManyArgs} args - Arguments to filter Users to delete. | |
| * @example | |
| * // Delete a few Users | |
| * const { count } = await prisma.users.deleteMany({ | |
| * where: { | |
| * // ... provide filter here | |
| * } | |
| * }) | |
| * | |
| */ | |
| deleteMany<T extends UsersDeleteManyArgs>(args?: Prisma.SelectSubset<T, UsersDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload> | |
| /** | |
| * Update zero or more Users. | |
| * Note, that providing `undefined` is treated as the value not being there. | |
| * Read more here: https://pris.ly/d/null-undefined | |
| * @param {UsersUpdateManyArgs} args - Arguments to update one or more rows. | |
| * @example | |
| * // Update many Users | |
| * const users = await prisma.users.updateMany({ | |
| * where: { | |
| * // ... provide filter here | |
| * }, | |
| * data: { | |
| * // ... provide data here | |
| * } | |
| * }) | |
| * | |
| */ | |
| updateMany<T extends UsersUpdateManyArgs>(args: Prisma.SelectSubset<T, UsersUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<Prisma.BatchPayload> | |
| /** | |
| * Update zero or more Users and returns the data updated in the database. | |
| * @param {UsersUpdateManyAndReturnArgs} args - Arguments to update many Users. | |
| * @example | |
| * // Update many Users | |
| * const users = await prisma.users.updateManyAndReturn({ | |
| * where: { | |
| * // ... provide filter here | |
| * }, | |
| * data: [ | |
| * // ... provide data here | |
| * ] | |
| * }) | |
| * | |
| * // Update zero or more Users and only return the `id` | |
| * const usersWithIdOnly = await prisma.users.updateManyAndReturn({ | |
| * select: { id: true }, | |
| * where: { | |
| * // ... provide filter here | |
| * }, | |
| * data: [ | |
| * // ... provide data here | |
| * ] | |
| * }) | |
| * Note, that providing `undefined` is treated as the value not being there. | |
| * Read more here: https://pris.ly/d/null-undefined | |
| * | |
| */ | |
| updateManyAndReturn<T extends UsersUpdateManyAndReturnArgs>(args: Prisma.SelectSubset<T, UsersUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>> | |
| /** | |
| * Create or update one Users. | |
| * @param {UsersUpsertArgs} args - Arguments to update or create a Users. | |
| * @example | |
| * // Update or create a Users | |
| * const users = await prisma.users.upsert({ | |
| * create: { | |
| * // ... data to create a Users | |
| * }, | |
| * update: { | |
| * // ... in case it already exists, update | |
| * }, | |
| * where: { | |
| * // ... the filter for the Users we want to update | |
| * } | |
| * }) | |
| */ | |
| upsert<T extends UsersUpsertArgs>(args: Prisma.SelectSubset<T, UsersUpsertArgs<ExtArgs>>): Prisma.Prisma__UsersClient<runtime.Types.Result.GetResult<Prisma.$UsersPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions> | |
| /** | |
| * Count the number of Users. | |
| * Note, that providing `undefined` is treated as the value not being there. | |
| * Read more here: https://pris.ly/d/null-undefined | |
| * @param {UsersCountArgs} args - Arguments to filter Users to count. | |
| * @example | |
| * // Count the number of Users | |
| * const count = await prisma.users.count({ | |
| * where: { | |
| * // ... the filter for the Users we want to count | |
| * } | |
| * }) | |
| **/ | |
| count<T extends UsersCountArgs>( | |
| args?: Prisma.Subset<T, UsersCountArgs>, | |
| ): Prisma.PrismaPromise< | |
| T extends runtime.Types.Utils.Record<'select', any> | |
| ? T['select'] extends true | |
| ? number | |
| : Prisma.GetScalarType<T['select'], UsersCountAggregateOutputType> | |
| : number | |
| > | |
| /** | |
| * Allows you to perform aggregations operations on a Users. | |
| * Note, that providing `undefined` is treated as the value not being there. | |
| * Read more here: https://pris.ly/d/null-undefined | |
| * @param {UsersAggregateArgs} 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<T extends UsersAggregateArgs>(args: Prisma.Subset<T, UsersAggregateArgs>): Prisma.PrismaPromise<GetUsersAggregateType<T>> | |
| /** | |
| * Group by Users. | |
| * Note, that providing `undefined` is treated as the value not being there. | |
| * Read more here: https://pris.ly/d/null-undefined | |
| * @param {UsersGroupByArgs} 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 UsersGroupByArgs, | |
| HasSelectOrTake extends Prisma.Or< | |
| Prisma.Extends<'skip', Prisma.Keys<T>>, | |
| Prisma.Extends<'take', Prisma.Keys<T>> | |
| >, | |
| OrderByArg extends Prisma.True extends HasSelectOrTake | |
| ? { orderBy: UsersGroupByArgs['orderBy'] } | |
| : { orderBy?: UsersGroupByArgs['orderBy'] }, | |
| OrderFields extends Prisma.ExcludeUnderscoreKeys<Prisma.Keys<Prisma.MaybeTupleToUnion<T['orderBy']>>>, | |
| ByFields extends Prisma.MaybeTupleToUnion<T['by']>, | |
| ByValid extends Prisma.Has<ByFields, OrderFields>, | |
| HavingFields extends Prisma.GetHavingFields<T['having']>, | |
| HavingValid extends Prisma.Has<ByFields, HavingFields>, | |
| 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<T> | |
| ? 'orderBy' extends Prisma.Keys<T> | |
| ? 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<T> | |
| ? 'orderBy' extends Prisma.Keys<T> | |
| ? 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<T, UsersGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetUsersGroupByPayload<T> : Prisma.PrismaPromise<InputErrors> | |
| /** | |
| * Fields of the Users model | |
| */ | |
| readonly fields: UsersFieldRefs; | |
| } | |
| /** | |
| * The delegate class that acts as a "Promise-like" for Users. | |
| * 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__UsersClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> { | |
| readonly [Symbol.toStringTag]: "PrismaPromise" | |
| sessions<T extends Prisma.Users$sessionsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Users$sessionsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SessionsPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null> | |
| accounts<T extends Prisma.Users$accountsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Users$accountsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$AccountsPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null> | |
| mentorApplication<T extends Prisma.Users$mentorApplicationArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.Users$mentorApplicationArgs<ExtArgs>>): Prisma.Prisma__MentorApplicationsClient<runtime.Types.Result.GetResult<Prisma.$MentorApplicationsPayload<ExtArgs>, 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<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): runtime.Types.Utils.JsPromise<TResult1 | TResult2> | |
| /** | |
| * 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<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): runtime.Types.Utils.JsPromise<T | TResult> | |
| /** | |
| * 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<T> | |
| } | |
| /** | |
| * Fields of the Users model | |
| */ | |
| export interface UsersFieldRefs { | |
| readonly id: Prisma.FieldRef<"Users", 'String'> | |
| readonly name: Prisma.FieldRef<"Users", 'String'> | |
| readonly email: Prisma.FieldRef<"Users", 'String'> | |
| readonly emailVerified: Prisma.FieldRef<"Users", 'Boolean'> | |
| readonly image: Prisma.FieldRef<"Users", 'String'> | |
| readonly createdAt: Prisma.FieldRef<"Users", 'DateTime'> | |
| readonly updatedAt: Prisma.FieldRef<"Users", 'DateTime'> | |
| readonly role: Prisma.FieldRef<"Users", 'String'> | |
| readonly phoneNumber: Prisma.FieldRef<"Users", 'String'> | |
| readonly deletedAt: Prisma.FieldRef<"Users", 'DateTime'> | |
| } | |
| // Custom InputTypes | |
| /** | |
| * Users findUnique | |
| */ | |
| export type UsersFindUniqueArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.UsersInclude<ExtArgs> | null | |
| /** | |
| * Filter, which Users to fetch. | |
| */ | |
| where: Prisma.UsersWhereUniqueInput | |
| } | |
| /** | |
| * Users findUniqueOrThrow | |
| */ | |
| export type UsersFindUniqueOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.UsersInclude<ExtArgs> | null | |
| /** | |
| * Filter, which Users to fetch. | |
| */ | |
| where: Prisma.UsersWhereUniqueInput | |
| } | |
| /** | |
| * Users findFirst | |
| */ | |
| export type UsersFindFirstArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.UsersInclude<ExtArgs> | null | |
| /** | |
| * Filter, which Users to fetch. | |
| */ | |
| where?: Prisma.UsersWhereInput | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} | |
| * | |
| * Determine the order of Users to fetch. | |
| */ | |
| orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[] | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} | |
| * | |
| * Sets the position for searching for Users. | |
| */ | |
| cursor?: Prisma.UsersWhereUniqueInput | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} | |
| * | |
| * Take `±n` Users 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` Users. | |
| */ | |
| skip?: number | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} | |
| * | |
| * Filter by unique combinations of Users. | |
| */ | |
| distinct?: Prisma.UsersScalarFieldEnum | Prisma.UsersScalarFieldEnum[] | |
| } | |
| /** | |
| * Users findFirstOrThrow | |
| */ | |
| export type UsersFindFirstOrThrowArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.UsersInclude<ExtArgs> | null | |
| /** | |
| * Filter, which Users to fetch. | |
| */ | |
| where?: Prisma.UsersWhereInput | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} | |
| * | |
| * Determine the order of Users to fetch. | |
| */ | |
| orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[] | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} | |
| * | |
| * Sets the position for searching for Users. | |
| */ | |
| cursor?: Prisma.UsersWhereUniqueInput | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} | |
| * | |
| * Take `±n` Users 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` Users. | |
| */ | |
| skip?: number | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs} | |
| * | |
| * Filter by unique combinations of Users. | |
| */ | |
| distinct?: Prisma.UsersScalarFieldEnum | Prisma.UsersScalarFieldEnum[] | |
| } | |
| /** | |
| * Users findMany | |
| */ | |
| export type UsersFindManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.UsersInclude<ExtArgs> | null | |
| /** | |
| * Filter, which Users to fetch. | |
| */ | |
| where?: Prisma.UsersWhereInput | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs} | |
| * | |
| * Determine the order of Users to fetch. | |
| */ | |
| orderBy?: Prisma.UsersOrderByWithRelationInput | Prisma.UsersOrderByWithRelationInput[] | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs} | |
| * | |
| * Sets the position for listing Users. | |
| */ | |
| cursor?: Prisma.UsersWhereUniqueInput | |
| /** | |
| * {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs} | |
| * | |
| * Take `±n` Users 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` Users. | |
| */ | |
| skip?: number | |
| distinct?: Prisma.UsersScalarFieldEnum | Prisma.UsersScalarFieldEnum[] | |
| } | |
| /** | |
| * Users create | |
| */ | |
| export type UsersCreateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.UsersInclude<ExtArgs> | null | |
| /** | |
| * The data needed to create a Users. | |
| */ | |
| data: Prisma.XOR<Prisma.UsersCreateInput, Prisma.UsersUncheckedCreateInput> | |
| } | |
| /** | |
| * Users createMany | |
| */ | |
| export type UsersCreateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * The data used to create many Users. | |
| */ | |
| data: Prisma.UsersCreateManyInput | Prisma.UsersCreateManyInput[] | |
| skipDuplicates?: boolean | |
| } | |
| /** | |
| * Users createManyAndReturn | |
| */ | |
| export type UsersCreateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelectCreateManyAndReturn<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * The data used to create many Users. | |
| */ | |
| data: Prisma.UsersCreateManyInput | Prisma.UsersCreateManyInput[] | |
| skipDuplicates?: boolean | |
| } | |
| /** | |
| * Users update | |
| */ | |
| export type UsersUpdateArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.UsersInclude<ExtArgs> | null | |
| /** | |
| * The data needed to update a Users. | |
| */ | |
| data: Prisma.XOR<Prisma.UsersUpdateInput, Prisma.UsersUncheckedUpdateInput> | |
| /** | |
| * Choose, which Users to update. | |
| */ | |
| where: Prisma.UsersWhereUniqueInput | |
| } | |
| /** | |
| * Users updateMany | |
| */ | |
| export type UsersUpdateManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * The data used to update Users. | |
| */ | |
| data: Prisma.XOR<Prisma.UsersUpdateManyMutationInput, Prisma.UsersUncheckedUpdateManyInput> | |
| /** | |
| * Filter which Users to update | |
| */ | |
| where?: Prisma.UsersWhereInput | |
| /** | |
| * Limit how many Users to update. | |
| */ | |
| limit?: number | |
| } | |
| /** | |
| * Users updateManyAndReturn | |
| */ | |
| export type UsersUpdateManyAndReturnArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelectUpdateManyAndReturn<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * The data used to update Users. | |
| */ | |
| data: Prisma.XOR<Prisma.UsersUpdateManyMutationInput, Prisma.UsersUncheckedUpdateManyInput> | |
| /** | |
| * Filter which Users to update | |
| */ | |
| where?: Prisma.UsersWhereInput | |
| /** | |
| * Limit how many Users to update. | |
| */ | |
| limit?: number | |
| } | |
| /** | |
| * Users upsert | |
| */ | |
| export type UsersUpsertArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.UsersInclude<ExtArgs> | null | |
| /** | |
| * The filter to search for the Users to update in case it exists. | |
| */ | |
| where: Prisma.UsersWhereUniqueInput | |
| /** | |
| * In case the Users found by the `where` argument doesn't exist, create a new Users with this data. | |
| */ | |
| create: Prisma.XOR<Prisma.UsersCreateInput, Prisma.UsersUncheckedCreateInput> | |
| /** | |
| * In case the Users was found with the provided `where` argument, update it with this data. | |
| */ | |
| update: Prisma.XOR<Prisma.UsersUpdateInput, Prisma.UsersUncheckedUpdateInput> | |
| } | |
| /** | |
| * Users delete | |
| */ | |
| export type UsersDeleteArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.UsersInclude<ExtArgs> | null | |
| /** | |
| * Filter which Users to delete. | |
| */ | |
| where: Prisma.UsersWhereUniqueInput | |
| } | |
| /** | |
| * Users deleteMany | |
| */ | |
| export type UsersDeleteManyArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Filter which Users to delete | |
| */ | |
| where?: Prisma.UsersWhereInput | |
| /** | |
| * Limit how many Users to delete. | |
| */ | |
| limit?: number | |
| } | |
| /** | |
| * Users.sessions | |
| */ | |
| export type Users$sessionsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Sessions | |
| */ | |
| select?: Prisma.SessionsSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Sessions | |
| */ | |
| omit?: Prisma.SessionsOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.SessionsInclude<ExtArgs> | null | |
| where?: Prisma.SessionsWhereInput | |
| orderBy?: Prisma.SessionsOrderByWithRelationInput | Prisma.SessionsOrderByWithRelationInput[] | |
| cursor?: Prisma.SessionsWhereUniqueInput | |
| take?: number | |
| skip?: number | |
| distinct?: Prisma.SessionsScalarFieldEnum | Prisma.SessionsScalarFieldEnum[] | |
| } | |
| /** | |
| * Users.accounts | |
| */ | |
| export type Users$accountsArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Accounts | |
| */ | |
| select?: Prisma.AccountsSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Accounts | |
| */ | |
| omit?: Prisma.AccountsOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.AccountsInclude<ExtArgs> | null | |
| where?: Prisma.AccountsWhereInput | |
| orderBy?: Prisma.AccountsOrderByWithRelationInput | Prisma.AccountsOrderByWithRelationInput[] | |
| cursor?: Prisma.AccountsWhereUniqueInput | |
| take?: number | |
| skip?: number | |
| distinct?: Prisma.AccountsScalarFieldEnum | Prisma.AccountsScalarFieldEnum[] | |
| } | |
| /** | |
| * Users.mentorApplication | |
| */ | |
| export type Users$mentorApplicationArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the MentorApplications | |
| */ | |
| select?: Prisma.MentorApplicationsSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the MentorApplications | |
| */ | |
| omit?: Prisma.MentorApplicationsOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.MentorApplicationsInclude<ExtArgs> | null | |
| where?: Prisma.MentorApplicationsWhereInput | |
| } | |
| /** | |
| * Users without action | |
| */ | |
| export type UsersDefaultArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = { | |
| /** | |
| * Select specific fields to fetch from the Users | |
| */ | |
| select?: Prisma.UsersSelect<ExtArgs> | null | |
| /** | |
| * Omit specific fields from the Users | |
| */ | |
| omit?: Prisma.UsersOmit<ExtArgs> | null | |
| /** | |
| * Choose, which related nodes to fetch as well | |
| */ | |
| include?: Prisma.UsersInclude<ExtArgs> | null | |
| } | |