/* !!! 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" import type * as Prisma from "../internal/prismaNamespace" /** * Model Users * */ export type UsersModel = runtime.Types.Result.DefaultSelection export type AggregateUsers = { _count: UsersCountAggregateOutputType | null _min: UsersMinAggregateOutputType | null _max: UsersMaxAggregateOutputType | null } export type UsersMinAggregateOutputType = { id: string | null first_name: string | null last_name: string | null email: string | null phone_number: string | null residence: string | null role: $Enums.Roles | null } export type UsersMaxAggregateOutputType = { id: string | null first_name: string | null last_name: string | null email: string | null phone_number: string | null residence: string | null role: $Enums.Roles | null } export type UsersCountAggregateOutputType = { id: number first_name: number last_name: number email: number phone_number: number residence: number role: number _all: number } export type UsersMinAggregateInputType = { id?: true first_name?: true last_name?: true email?: true phone_number?: true residence?: true role?: true } export type UsersMaxAggregateInputType = { id?: true first_name?: true last_name?: true email?: true phone_number?: true residence?: true role?: true } export type UsersCountAggregateInputType = { id?: true first_name?: true last_name?: true email?: true phone_number?: true residence?: true role?: true _all?: true } export type UsersAggregateArgs = { /** * 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 = { [P in keyof T & keyof AggregateUsers]: P extends '_count' | 'count' ? T[P] extends true ? number : Prisma.GetScalarType : Prisma.GetScalarType } export type UsersGroupByArgs = { 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 first_name: string last_name: string email: string phone_number: string residence: string | null role: $Enums.Roles _count: UsersCountAggregateOutputType | null _min: UsersMinAggregateOutputType | null _max: UsersMaxAggregateOutputType | null } type GetUsersGroupByPayload = Prisma.PrismaPromise< Array< Prisma.PickEnumerable & { [P in ((keyof T) & (keyof UsersGroupByOutputType))]: P extends '_count' ? T[P] extends boolean ? number : Prisma.GetScalarType : Prisma.GetScalarType } > > export type UsersWhereInput = { AND?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[] OR?: Prisma.UsersWhereInput[] NOT?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[] id?: Prisma.UuidFilter<"Users"> | string first_name?: Prisma.StringFilter<"Users"> | string last_name?: Prisma.StringFilter<"Users"> | string email?: Prisma.StringFilter<"Users"> | string phone_number?: Prisma.StringFilter<"Users"> | string residence?: Prisma.StringNullableFilter<"Users"> | string | null role?: Prisma.EnumRolesFilter<"Users"> | $Enums.Roles employee?: Prisma.XOR | null oauth_sessions?: Prisma.OAuthSessionsListRelationFilter preferences?: Prisma.XOR | null user_module_access?: Prisma.XOR | null } export type UsersOrderByWithRelationInput = { id?: Prisma.SortOrder first_name?: Prisma.SortOrder last_name?: Prisma.SortOrder email?: Prisma.SortOrder phone_number?: Prisma.SortOrder residence?: Prisma.SortOrderInput | Prisma.SortOrder role?: Prisma.SortOrder employee?: Prisma.EmployeesOrderByWithRelationInput oauth_sessions?: Prisma.OAuthSessionsOrderByRelationAggregateInput preferences?: Prisma.PreferencesOrderByWithRelationInput user_module_access?: Prisma.userModuleAccessOrderByWithRelationInput } export type UsersWhereUniqueInput = Prisma.AtLeast<{ id?: string email?: string AND?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[] OR?: Prisma.UsersWhereInput[] NOT?: Prisma.UsersWhereInput | Prisma.UsersWhereInput[] first_name?: Prisma.StringFilter<"Users"> | string last_name?: Prisma.StringFilter<"Users"> | string phone_number?: Prisma.StringFilter<"Users"> | string residence?: Prisma.StringNullableFilter<"Users"> | string | null role?: Prisma.EnumRolesFilter<"Users"> | $Enums.Roles employee?: Prisma.XOR | null oauth_sessions?: Prisma.OAuthSessionsListRelationFilter preferences?: Prisma.XOR | null user_module_access?: Prisma.XOR | null }, "id" | "email"> export type UsersOrderByWithAggregationInput = { id?: Prisma.SortOrder first_name?: Prisma.SortOrder last_name?: Prisma.SortOrder email?: Prisma.SortOrder phone_number?: Prisma.SortOrder residence?: Prisma.SortOrderInput | Prisma.SortOrder role?: 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.UuidWithAggregatesFilter<"Users"> | string first_name?: Prisma.StringWithAggregatesFilter<"Users"> | string last_name?: Prisma.StringWithAggregatesFilter<"Users"> | string email?: Prisma.StringWithAggregatesFilter<"Users"> | string phone_number?: Prisma.StringWithAggregatesFilter<"Users"> | string residence?: Prisma.StringNullableWithAggregatesFilter<"Users"> | string | null role?: Prisma.EnumRolesWithAggregatesFilter<"Users"> | $Enums.Roles } export type UsersCreateInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles employee?: Prisma.EmployeesCreateNestedOneWithoutUserInput oauth_sessions?: Prisma.OAuthSessionsCreateNestedManyWithoutUserInput preferences?: Prisma.PreferencesCreateNestedOneWithoutUserInput user_module_access?: Prisma.userModuleAccessCreateNestedOneWithoutUserInput } export type UsersUncheckedCreateInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles employee?: Prisma.EmployeesUncheckedCreateNestedOneWithoutUserInput oauth_sessions?: Prisma.OAuthSessionsUncheckedCreateNestedManyWithoutUserInput preferences?: Prisma.PreferencesUncheckedCreateNestedOneWithoutUserInput user_module_access?: Prisma.userModuleAccessUncheckedCreateNestedOneWithoutUserInput } export type UsersUpdateInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles employee?: Prisma.EmployeesUpdateOneWithoutUserNestedInput oauth_sessions?: Prisma.OAuthSessionsUpdateManyWithoutUserNestedInput preferences?: Prisma.PreferencesUpdateOneWithoutUserNestedInput user_module_access?: Prisma.userModuleAccessUpdateOneWithoutUserNestedInput } export type UsersUncheckedUpdateInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles employee?: Prisma.EmployeesUncheckedUpdateOneWithoutUserNestedInput oauth_sessions?: Prisma.OAuthSessionsUncheckedUpdateManyWithoutUserNestedInput preferences?: Prisma.PreferencesUncheckedUpdateOneWithoutUserNestedInput user_module_access?: Prisma.userModuleAccessUncheckedUpdateOneWithoutUserNestedInput } export type UsersCreateManyInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles } export type UsersUpdateManyMutationInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles } export type UsersUncheckedUpdateManyInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles } export type UsersCountOrderByAggregateInput = { id?: Prisma.SortOrder first_name?: Prisma.SortOrder last_name?: Prisma.SortOrder email?: Prisma.SortOrder phone_number?: Prisma.SortOrder residence?: Prisma.SortOrder role?: Prisma.SortOrder } export type UsersMaxOrderByAggregateInput = { id?: Prisma.SortOrder first_name?: Prisma.SortOrder last_name?: Prisma.SortOrder email?: Prisma.SortOrder phone_number?: Prisma.SortOrder residence?: Prisma.SortOrder role?: Prisma.SortOrder } export type UsersMinOrderByAggregateInput = { id?: Prisma.SortOrder first_name?: Prisma.SortOrder last_name?: Prisma.SortOrder email?: Prisma.SortOrder phone_number?: Prisma.SortOrder residence?: Prisma.SortOrder role?: Prisma.SortOrder } export type UsersScalarRelationFilter = { is?: Prisma.UsersWhereInput isNot?: Prisma.UsersWhereInput } export type StringFieldUpdateOperationsInput = { set?: string } export type NullableStringFieldUpdateOperationsInput = { set?: string | null } export type EnumRolesFieldUpdateOperationsInput = { set?: $Enums.Roles } export type UsersCreateNestedOneWithoutUser_module_accessInput = { create?: Prisma.XOR connectOrCreate?: Prisma.UsersCreateOrConnectWithoutUser_module_accessInput connect?: Prisma.UsersWhereUniqueInput } export type UsersUpdateOneRequiredWithoutUser_module_accessNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.UsersCreateOrConnectWithoutUser_module_accessInput upsert?: Prisma.UsersUpsertWithoutUser_module_accessInput connect?: Prisma.UsersWhereUniqueInput update?: Prisma.XOR, Prisma.UsersUncheckedUpdateWithoutUser_module_accessInput> } export type UsersCreateNestedOneWithoutEmployeeInput = { create?: Prisma.XOR connectOrCreate?: Prisma.UsersCreateOrConnectWithoutEmployeeInput connect?: Prisma.UsersWhereUniqueInput } export type UsersUpdateOneRequiredWithoutEmployeeNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.UsersCreateOrConnectWithoutEmployeeInput upsert?: Prisma.UsersUpsertWithoutEmployeeInput connect?: Prisma.UsersWhereUniqueInput update?: Prisma.XOR, Prisma.UsersUncheckedUpdateWithoutEmployeeInput> } export type UsersCreateNestedOneWithoutOauth_sessionsInput = { create?: Prisma.XOR connectOrCreate?: Prisma.UsersCreateOrConnectWithoutOauth_sessionsInput connect?: Prisma.UsersWhereUniqueInput } export type UsersUpdateOneRequiredWithoutOauth_sessionsNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.UsersCreateOrConnectWithoutOauth_sessionsInput upsert?: Prisma.UsersUpsertWithoutOauth_sessionsInput connect?: Prisma.UsersWhereUniqueInput update?: Prisma.XOR, Prisma.UsersUncheckedUpdateWithoutOauth_sessionsInput> } export type UsersCreateNestedOneWithoutPreferencesInput = { create?: Prisma.XOR connectOrCreate?: Prisma.UsersCreateOrConnectWithoutPreferencesInput connect?: Prisma.UsersWhereUniqueInput } export type UsersUpdateOneRequiredWithoutPreferencesNestedInput = { create?: Prisma.XOR connectOrCreate?: Prisma.UsersCreateOrConnectWithoutPreferencesInput upsert?: Prisma.UsersUpsertWithoutPreferencesInput connect?: Prisma.UsersWhereUniqueInput update?: Prisma.XOR, Prisma.UsersUncheckedUpdateWithoutPreferencesInput> } export type UsersCreateWithoutUser_module_accessInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles employee?: Prisma.EmployeesCreateNestedOneWithoutUserInput oauth_sessions?: Prisma.OAuthSessionsCreateNestedManyWithoutUserInput preferences?: Prisma.PreferencesCreateNestedOneWithoutUserInput } export type UsersUncheckedCreateWithoutUser_module_accessInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles employee?: Prisma.EmployeesUncheckedCreateNestedOneWithoutUserInput oauth_sessions?: Prisma.OAuthSessionsUncheckedCreateNestedManyWithoutUserInput preferences?: Prisma.PreferencesUncheckedCreateNestedOneWithoutUserInput } export type UsersCreateOrConnectWithoutUser_module_accessInput = { where: Prisma.UsersWhereUniqueInput create: Prisma.XOR } export type UsersUpsertWithoutUser_module_accessInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.UsersWhereInput } export type UsersUpdateToOneWithWhereWithoutUser_module_accessInput = { where?: Prisma.UsersWhereInput data: Prisma.XOR } export type UsersUpdateWithoutUser_module_accessInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles employee?: Prisma.EmployeesUpdateOneWithoutUserNestedInput oauth_sessions?: Prisma.OAuthSessionsUpdateManyWithoutUserNestedInput preferences?: Prisma.PreferencesUpdateOneWithoutUserNestedInput } export type UsersUncheckedUpdateWithoutUser_module_accessInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles employee?: Prisma.EmployeesUncheckedUpdateOneWithoutUserNestedInput oauth_sessions?: Prisma.OAuthSessionsUncheckedUpdateManyWithoutUserNestedInput preferences?: Prisma.PreferencesUncheckedUpdateOneWithoutUserNestedInput } export type UsersCreateWithoutEmployeeInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles oauth_sessions?: Prisma.OAuthSessionsCreateNestedManyWithoutUserInput preferences?: Prisma.PreferencesCreateNestedOneWithoutUserInput user_module_access?: Prisma.userModuleAccessCreateNestedOneWithoutUserInput } export type UsersUncheckedCreateWithoutEmployeeInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles oauth_sessions?: Prisma.OAuthSessionsUncheckedCreateNestedManyWithoutUserInput preferences?: Prisma.PreferencesUncheckedCreateNestedOneWithoutUserInput user_module_access?: Prisma.userModuleAccessUncheckedCreateNestedOneWithoutUserInput } export type UsersCreateOrConnectWithoutEmployeeInput = { where: Prisma.UsersWhereUniqueInput create: Prisma.XOR } export type UsersUpsertWithoutEmployeeInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.UsersWhereInput } export type UsersUpdateToOneWithWhereWithoutEmployeeInput = { where?: Prisma.UsersWhereInput data: Prisma.XOR } export type UsersUpdateWithoutEmployeeInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles oauth_sessions?: Prisma.OAuthSessionsUpdateManyWithoutUserNestedInput preferences?: Prisma.PreferencesUpdateOneWithoutUserNestedInput user_module_access?: Prisma.userModuleAccessUpdateOneWithoutUserNestedInput } export type UsersUncheckedUpdateWithoutEmployeeInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles oauth_sessions?: Prisma.OAuthSessionsUncheckedUpdateManyWithoutUserNestedInput preferences?: Prisma.PreferencesUncheckedUpdateOneWithoutUserNestedInput user_module_access?: Prisma.userModuleAccessUncheckedUpdateOneWithoutUserNestedInput } export type UsersCreateWithoutOauth_sessionsInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles employee?: Prisma.EmployeesCreateNestedOneWithoutUserInput preferences?: Prisma.PreferencesCreateNestedOneWithoutUserInput user_module_access?: Prisma.userModuleAccessCreateNestedOneWithoutUserInput } export type UsersUncheckedCreateWithoutOauth_sessionsInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles employee?: Prisma.EmployeesUncheckedCreateNestedOneWithoutUserInput preferences?: Prisma.PreferencesUncheckedCreateNestedOneWithoutUserInput user_module_access?: Prisma.userModuleAccessUncheckedCreateNestedOneWithoutUserInput } export type UsersCreateOrConnectWithoutOauth_sessionsInput = { where: Prisma.UsersWhereUniqueInput create: Prisma.XOR } export type UsersUpsertWithoutOauth_sessionsInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.UsersWhereInput } export type UsersUpdateToOneWithWhereWithoutOauth_sessionsInput = { where?: Prisma.UsersWhereInput data: Prisma.XOR } export type UsersUpdateWithoutOauth_sessionsInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles employee?: Prisma.EmployeesUpdateOneWithoutUserNestedInput preferences?: Prisma.PreferencesUpdateOneWithoutUserNestedInput user_module_access?: Prisma.userModuleAccessUpdateOneWithoutUserNestedInput } export type UsersUncheckedUpdateWithoutOauth_sessionsInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles employee?: Prisma.EmployeesUncheckedUpdateOneWithoutUserNestedInput preferences?: Prisma.PreferencesUncheckedUpdateOneWithoutUserNestedInput user_module_access?: Prisma.userModuleAccessUncheckedUpdateOneWithoutUserNestedInput } export type UsersCreateWithoutPreferencesInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles employee?: Prisma.EmployeesCreateNestedOneWithoutUserInput oauth_sessions?: Prisma.OAuthSessionsCreateNestedManyWithoutUserInput user_module_access?: Prisma.userModuleAccessCreateNestedOneWithoutUserInput } export type UsersUncheckedCreateWithoutPreferencesInput = { id?: string first_name: string last_name: string email: string phone_number: string residence?: string | null role?: $Enums.Roles employee?: Prisma.EmployeesUncheckedCreateNestedOneWithoutUserInput oauth_sessions?: Prisma.OAuthSessionsUncheckedCreateNestedManyWithoutUserInput user_module_access?: Prisma.userModuleAccessUncheckedCreateNestedOneWithoutUserInput } export type UsersCreateOrConnectWithoutPreferencesInput = { where: Prisma.UsersWhereUniqueInput create: Prisma.XOR } export type UsersUpsertWithoutPreferencesInput = { update: Prisma.XOR create: Prisma.XOR where?: Prisma.UsersWhereInput } export type UsersUpdateToOneWithWhereWithoutPreferencesInput = { where?: Prisma.UsersWhereInput data: Prisma.XOR } export type UsersUpdateWithoutPreferencesInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles employee?: Prisma.EmployeesUpdateOneWithoutUserNestedInput oauth_sessions?: Prisma.OAuthSessionsUpdateManyWithoutUserNestedInput user_module_access?: Prisma.userModuleAccessUpdateOneWithoutUserNestedInput } export type UsersUncheckedUpdateWithoutPreferencesInput = { id?: Prisma.StringFieldUpdateOperationsInput | string first_name?: Prisma.StringFieldUpdateOperationsInput | string last_name?: Prisma.StringFieldUpdateOperationsInput | string email?: Prisma.StringFieldUpdateOperationsInput | string phone_number?: Prisma.StringFieldUpdateOperationsInput | string residence?: Prisma.NullableStringFieldUpdateOperationsInput | string | null role?: Prisma.EnumRolesFieldUpdateOperationsInput | $Enums.Roles employee?: Prisma.EmployeesUncheckedUpdateOneWithoutUserNestedInput oauth_sessions?: Prisma.OAuthSessionsUncheckedUpdateManyWithoutUserNestedInput user_module_access?: Prisma.userModuleAccessUncheckedUpdateOneWithoutUserNestedInput } /** * Count Type UsersCountOutputType */ export type UsersCountOutputType = { oauth_sessions: number } export type UsersCountOutputTypeSelect = { oauth_sessions?: boolean | UsersCountOutputTypeCountOauth_sessionsArgs } /** * UsersCountOutputType without action */ export type UsersCountOutputTypeDefaultArgs = { /** * Select specific fields to fetch from the UsersCountOutputType */ select?: Prisma.UsersCountOutputTypeSelect | null } /** * UsersCountOutputType without action */ export type UsersCountOutputTypeCountOauth_sessionsArgs = { where?: Prisma.OAuthSessionsWhereInput } export type UsersSelect = runtime.Types.Extensions.GetSelect<{ id?: boolean first_name?: boolean last_name?: boolean email?: boolean phone_number?: boolean residence?: boolean role?: boolean employee?: boolean | Prisma.Users$employeeArgs oauth_sessions?: boolean | Prisma.Users$oauth_sessionsArgs preferences?: boolean | Prisma.Users$preferencesArgs user_module_access?: boolean | Prisma.Users$user_module_accessArgs _count?: boolean | Prisma.UsersCountOutputTypeDefaultArgs }, ExtArgs["result"]["users"]> export type UsersSelectCreateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean first_name?: boolean last_name?: boolean email?: boolean phone_number?: boolean residence?: boolean role?: boolean }, ExtArgs["result"]["users"]> export type UsersSelectUpdateManyAndReturn = runtime.Types.Extensions.GetSelect<{ id?: boolean first_name?: boolean last_name?: boolean email?: boolean phone_number?: boolean residence?: boolean role?: boolean }, ExtArgs["result"]["users"]> export type UsersSelectScalar = { id?: boolean first_name?: boolean last_name?: boolean email?: boolean phone_number?: boolean residence?: boolean role?: boolean } export type UsersOmit = runtime.Types.Extensions.GetOmit<"id" | "first_name" | "last_name" | "email" | "phone_number" | "residence" | "role", ExtArgs["result"]["users"]> export type UsersInclude = { employee?: boolean | Prisma.Users$employeeArgs oauth_sessions?: boolean | Prisma.Users$oauth_sessionsArgs preferences?: boolean | Prisma.Users$preferencesArgs user_module_access?: boolean | Prisma.Users$user_module_accessArgs _count?: boolean | Prisma.UsersCountOutputTypeDefaultArgs } export type UsersIncludeCreateManyAndReturn = {} export type UsersIncludeUpdateManyAndReturn = {} export type $UsersPayload = { name: "Users" objects: { employee: Prisma.$EmployeesPayload | null oauth_sessions: Prisma.$OAuthSessionsPayload[] preferences: Prisma.$PreferencesPayload | null user_module_access: Prisma.$userModuleAccessPayload | null } scalars: runtime.Types.Extensions.GetPayloadResult<{ id: string first_name: string last_name: string email: string phone_number: string residence: string | null role: $Enums.Roles }, ExtArgs["result"]["users"]> composites: {} } export type UsersGetPayload = runtime.Types.Result.GetResult export type UsersCountArgs = Omit & { select?: UsersCountAggregateInputType | true } export interface UsersDelegate { [K: symbol]: { types: Prisma.TypeMap['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(args: Prisma.SelectSubset>): Prisma.Prisma__UsersClient, 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(args: Prisma.SelectSubset>): Prisma.Prisma__UsersClient, 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(args?: Prisma.SelectSubset>): Prisma.Prisma__UsersClient, 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(args?: Prisma.SelectSubset>): Prisma.Prisma__UsersClient, 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(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, 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(args: Prisma.SelectSubset>): Prisma.Prisma__UsersClient, 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(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * 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(args?: Prisma.SelectSubset>): Prisma.PrismaPromise, 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(args: Prisma.SelectSubset>): Prisma.Prisma__UsersClient, 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(args: Prisma.SelectSubset>): Prisma.Prisma__UsersClient, 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(args?: Prisma.SelectSubset>): Prisma.PrismaPromise /** * 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(args: Prisma.SelectSubset>): Prisma.PrismaPromise /** * 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(args: Prisma.SelectSubset>): Prisma.PrismaPromise, 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(args: Prisma.SelectSubset>): Prisma.Prisma__UsersClient, 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( 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 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(args: Prisma.Subset): Prisma.PrismaPromise> /** * 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>, Prisma.Extends<'take', Prisma.Keys> >, OrderByArg extends Prisma.True extends HasSelectOrTake ? { orderBy: UsersGroupByArgs['orderBy'] } : { orderBy?: UsersGroupByArgs['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 ? GetUsersGroupByPayload : Prisma.PrismaPromise /** * 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 extends Prisma.PrismaPromise { readonly [Symbol.toStringTag]: "PrismaPromise" employee = {}>(args?: Prisma.Subset>): Prisma.Prisma__EmployeesClient, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> oauth_sessions = {}>(args?: Prisma.Subset>): Prisma.PrismaPromise, T, "findMany", GlobalOmitOptions> | Null> preferences = {}>(args?: Prisma.Subset>): Prisma.Prisma__PreferencesClient, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions> user_module_access = {}>(args?: Prisma.Subset>): Prisma.Prisma__userModuleAccessClient, 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 Users model */ export interface UsersFieldRefs { readonly id: Prisma.FieldRef<"Users", 'String'> readonly first_name: Prisma.FieldRef<"Users", 'String'> readonly last_name: Prisma.FieldRef<"Users", 'String'> readonly email: Prisma.FieldRef<"Users", 'String'> readonly phone_number: Prisma.FieldRef<"Users", 'String'> readonly residence: Prisma.FieldRef<"Users", 'String'> readonly role: Prisma.FieldRef<"Users", 'Roles'> } // Custom InputTypes /** * Users findUnique */ export type UsersFindUniqueArgs = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelect | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.UsersInclude | null /** * Filter, which Users to fetch. */ where: Prisma.UsersWhereUniqueInput } /** * Users findUniqueOrThrow */ export type UsersFindUniqueOrThrowArgs = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelect | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.UsersInclude | null /** * Filter, which Users to fetch. */ where: Prisma.UsersWhereUniqueInput } /** * Users findFirst */ export type UsersFindFirstArgs = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelect | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.UsersInclude | 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 = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelect | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.UsersInclude | 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 = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelect | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.UsersInclude | 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 = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelect | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.UsersInclude | null /** * The data needed to create a Users. */ data: Prisma.XOR } /** * Users createMany */ export type UsersCreateManyArgs = { /** * The data used to create many Users. */ data: Prisma.UsersCreateManyInput | Prisma.UsersCreateManyInput[] skipDuplicates?: boolean } /** * Users createManyAndReturn */ export type UsersCreateManyAndReturnArgs = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelectCreateManyAndReturn | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * The data used to create many Users. */ data: Prisma.UsersCreateManyInput | Prisma.UsersCreateManyInput[] skipDuplicates?: boolean } /** * Users update */ export type UsersUpdateArgs = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelect | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.UsersInclude | null /** * The data needed to update a Users. */ data: Prisma.XOR /** * Choose, which Users to update. */ where: Prisma.UsersWhereUniqueInput } /** * Users updateMany */ export type UsersUpdateManyArgs = { /** * The data used to update Users. */ data: Prisma.XOR /** * Filter which Users to update */ where?: Prisma.UsersWhereInput /** * Limit how many Users to update. */ limit?: number } /** * Users updateManyAndReturn */ export type UsersUpdateManyAndReturnArgs = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelectUpdateManyAndReturn | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * The data used to update Users. */ data: Prisma.XOR /** * Filter which Users to update */ where?: Prisma.UsersWhereInput /** * Limit how many Users to update. */ limit?: number } /** * Users upsert */ export type UsersUpsertArgs = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelect | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.UsersInclude | 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 /** * In case the Users was found with the provided `where` argument, update it with this data. */ update: Prisma.XOR } /** * Users delete */ export type UsersDeleteArgs = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelect | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.UsersInclude | null /** * Filter which Users to delete. */ where: Prisma.UsersWhereUniqueInput } /** * Users deleteMany */ export type UsersDeleteManyArgs = { /** * Filter which Users to delete */ where?: Prisma.UsersWhereInput /** * Limit how many Users to delete. */ limit?: number } /** * Users.employee */ export type Users$employeeArgs = { /** * Select specific fields to fetch from the Employees */ select?: Prisma.EmployeesSelect | null /** * Omit specific fields from the Employees */ omit?: Prisma.EmployeesOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.EmployeesInclude | null where?: Prisma.EmployeesWhereInput } /** * Users.oauth_sessions */ export type Users$oauth_sessionsArgs = { /** * Select specific fields to fetch from the OAuthSessions */ select?: Prisma.OAuthSessionsSelect | null /** * Omit specific fields from the OAuthSessions */ omit?: Prisma.OAuthSessionsOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.OAuthSessionsInclude | null where?: Prisma.OAuthSessionsWhereInput orderBy?: Prisma.OAuthSessionsOrderByWithRelationInput | Prisma.OAuthSessionsOrderByWithRelationInput[] cursor?: Prisma.OAuthSessionsWhereUniqueInput take?: number skip?: number distinct?: Prisma.OAuthSessionsScalarFieldEnum | Prisma.OAuthSessionsScalarFieldEnum[] } /** * Users.preferences */ export type Users$preferencesArgs = { /** * Select specific fields to fetch from the Preferences */ select?: Prisma.PreferencesSelect | null /** * Omit specific fields from the Preferences */ omit?: Prisma.PreferencesOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.PreferencesInclude | null where?: Prisma.PreferencesWhereInput } /** * Users.user_module_access */ export type Users$user_module_accessArgs = { /** * Select specific fields to fetch from the userModuleAccess */ select?: Prisma.userModuleAccessSelect | null /** * Omit specific fields from the userModuleAccess */ omit?: Prisma.userModuleAccessOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.userModuleAccessInclude | null where?: Prisma.userModuleAccessWhereInput } /** * Users without action */ export type UsersDefaultArgs = { /** * Select specific fields to fetch from the Users */ select?: Prisma.UsersSelect | null /** * Omit specific fields from the Users */ omit?: Prisma.UsersOmit | null /** * Choose, which related nodes to fetch as well */ include?: Prisma.UsersInclude | null }